
:root{
  --ink:#0d1833;
  --muted:#5f6f86;
  --bg:#f8fbff;
  --panel:#ffffff;
  --line:#dde8f6;
  --navy:#102a56;
  --blue:#2f80ff;
  --teal:#13c8b8;
  --orange:#ff7a59;
  --sun:#ffbf47;
  --success:#18b272;
  --shadow:0 8px 30px rgba(16,42,86,.08);
  --radius:20px;
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'DM Sans',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background:var(--bg);
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(calc(100% - 32px), var(--max));margin:0 auto}
.section{padding:82px 0}
.section-tight{padding:60px 0}
.skip-link{
  position:absolute;left:16px;top:-48px;background:#fff;color:var(--ink);padding:10px 14px;
  border-radius:12px;border:1px solid var(--line);z-index:1000
}
.skip-link:focus{top:16px}
:focus-visible{outline:3px solid rgba(47,128,255,.45);outline-offset:3px}
.topbar{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.84);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(16,42,86,.06);
}
.nav{min-height:84px;display:flex;align-items:center;justify-content:space-between;gap:18px}
.brand img{width:220px;height:auto}
.navlinks{display:flex;align-items:center;gap:28px;color:var(--muted);font-weight:700;font-size:1rem}
.navlinks a:hover,.navlinks a[aria-current="page"]{color:var(--ink)}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  min-height:52px;padding:0 24px;border-radius:16px;font-weight:800;
  transition:.2s ease;border:1px solid transparent;cursor:pointer
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  background:linear-gradient(135deg,var(--orange),#ff946b);
  color:#fff;
  box-shadow:0 14px 26px rgba(255,122,89,.24)
}
.btn-primary:hover{filter:brightness(1.03)}
.btn-secondary{
  background:rgba(255,255,255,.08);
  color:#fff;
  border:1px solid rgba(255,255,255,.22)
}
.btn-outline{
  background:#fff;
  color:var(--navy);
  border:1.5px solid rgba(47,128,255,.2)
}
.btn-outline:hover{border-color:rgba(47,128,255,.45)}
.tag{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 14px;border-radius:999px;
  background:rgba(47,128,255,.08);color:var(--blue);
  font-size:.78rem;font-weight:900;letter-spacing:.12em;text-transform:uppercase
}
.tag.dark{background:rgba(255,255,255,.12);color:#9cd3ff}
h1,h2,h3,h4{
  font-family:'Space Grotesk',system-ui,sans-serif;
  margin:0 0 16px;
  color:var(--ink);
}
h1{font-size:clamp(2.5rem,5vw,5rem);line-height:.98;letter-spacing:-.055em}
h2{font-size:clamp(2rem,3.2vw,3.25rem);line-height:1.04;letter-spacing:-.045em}
h3{font-size:1.1rem;line-height:1.15;letter-spacing:-.02em}
p{margin:0 0 16px;color:var(--muted);font-size:1rem;line-height:1.7}
.page-title,.kicker h2,.hero-title{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  overflow:hidden;
  -webkit-line-clamp:2;
  text-wrap:balance;
}
.hero{
  position:relative;
  color:#fff;
  overflow:hidden;
  min-height:90vh;
  background:
    radial-gradient(circle at 15% 20%, rgba(19,200,184,.22), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(255,191,71,.18), transparent 18%),
    radial-gradient(circle at 68% 72%, rgba(255,122,89,.2), transparent 22%),
    linear-gradient(135deg,#071427 0%, #0d2150 45%, #14356d 100%);
}
.hero::before{
  content:"";
  position:absolute;inset:0;
  background:
    linear-gradient(90deg, rgba(7,20,39,.84) 0%, rgba(7,20,39,.66) 42%, rgba(7,20,39,.22) 100%),
    url('hero-bg-v105.jpg') center/cover no-repeat;
  mix-blend-mode:screen;
  opacity:.46;
}
.hero-inner{
  position:relative;z-index:2;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:32px;
  align-items:center;
  padding:72px 0 54px;
}
.hero-badge{
  display:inline-flex;align-items:center;
  padding:12px 18px;border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  color:#a8d0ff;font-size:.82rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;
  margin-bottom:24px
}
.hero-title{
  max-width:720px;
  color:#fff;
}
.hero-copy{
  max-width:760px;
  color:rgba(255,255,255,.86);
  font-size:1.06rem;
  line-height:1.76;
  margin-bottom:28px;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-bottom:26px}
.hero-micro{
  display:flex;flex-wrap:wrap;gap:12px;
  margin-bottom:22px;
}
.micro-chip{
  display:inline-flex;align-items:center;gap:8px;
  min-height:40px;padding:0 14px;border-radius:999px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;font-size:.92rem;font-weight:700
}
.hero-panel{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(14px);
  border-radius:28px;
  padding:28px;
  box-shadow:0 24px 60px rgba(2,8,20,.35)
}
.hero-panel h3{color:#fff;font-size:1.25rem}
.hero-panel p{color:rgba(255,255,255,.78)}
.launch-list{display:grid;gap:14px;margin-top:18px}
.launch-list div{
  display:flex;gap:12px;align-items:flex-start;
  padding:14px 14px;border-radius:16px;
  background:rgba(255,255,255,.06)
}
.launch-list div::before{
  content:"✓";color:#7ff3d8;font-weight:900
}
.section-white{background:#ffffff}
.section-soft-blue{
  background:
    linear-gradient(180deg,#fbfdff 0%, #f1f7ff 100%);
  border-top:1px solid rgba(16,42,86,.04);
  border-bottom:1px solid rgba(16,42,86,.04)
}
.section-soft-warm{
  background:
    linear-gradient(180deg,#fffaf7 0%, #fff2ec 100%);
  border-top:1px solid rgba(16,42,86,.04);
  border-bottom:1px solid rgba(16,42,86,.04)
}
.section-dark{
  background:linear-gradient(180deg,#0c2250 0%, #102a56 100%);
  color:#fff
}
.section-dark h2,.section-dark h3{color:#fff}
.section-dark p{color:rgba(255,255,255,.78)}
.kicker{max-width:1020px;margin:0 auto 40px;text-align:center}
.kicker p{max-width:760px;margin:0 auto}
.grid-2,.grid-3,.grid-4{display:grid;gap:20px}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}
.card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow);
}
.card:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 36px rgba(16,42,86,.10);
  transition:.2s ease
}
.badge-box{
  width:46px;height:46px;border-radius:14px;
  display:grid;place-items:center;
  background:linear-gradient(135deg, rgba(47,128,255,.12), rgba(19,200,184,.12));
  color:var(--blue);
  font-weight:900;
  font-size:.9rem;
  flex:0 0 auto
}
.card-head{
  display:flex;align-items:flex-start;gap:14px;margin-bottom:14px;min-height:58px
}
.card-head h3{
  display:-webkit-box;-webkit-box-orient:vertical;overflow:hidden;
  -webkit-line-clamp:2;text-wrap:balance;
}
.card p:last-child{margin-bottom:0}
.services-mini .card{
  min-height:200px;
}
.services-full{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px
}
.services-full .card{
  min-height:208px;
}
.services-full .card-head{
  min-height:66px;
}
.comparison{
  display:grid;grid-template-columns:1fr 1fr;gap:22px
}
.compare-old,.compare-new{
  padding:28px;border-radius:24px
}
.compare-old{
  background:#fff;border:1px solid var(--line)
}
.compare-new{
  background:linear-gradient(180deg,#102a56 0%, #16356b 100%);
  color:#fff;
  border:1px solid rgba(255,255,255,.08)
}
.compare-new h3,.compare-new p{color:#fff}
.list{display:grid;gap:10px}
.list div{display:flex;gap:10px;align-items:flex-start}
.list div::before{content:"•";font-weight:900}
.compare-old .list div::before{color:var(--orange)}
.compare-new .list div::before{color:#7ff3d8}
.flow-carousel,.work-carousel{
  display:grid;
  grid-template-columns:54px 1fr 54px;
  gap:18px;align-items:center
}
.flow-track,.work-track{
  display:grid;
  grid-template-columns:1fr 2fr 1fr;
  gap:18px;align-items:stretch
}
.flow-card,.work-card{
  border-radius:24px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow);
  padding:24px;
  min-height:300px;
  cursor:pointer;
  transition:.25s ease;
}
.flow-card.side,.work-card.side{
  opacity:.84;
  transform:scale(.92);
  text-align:center;
}
.flow-card.active,.work-card.active{
  transform:scale(1);
  box-shadow:0 20px 40px rgba(16,42,86,.12)
}
.flow-head,.work-head{
  display:flex;align-items:center;justify-content:center;gap:14px;margin-bottom:16px;min-height:72px
}
.flow-card.side .flow-head,.work-card.side .work-head{
  flex-direction:column;
}
.flow-badge,.work-badge{
  width:56px;height:56px;border-radius:16px;
  display:grid;place-items:center;
  background:linear-gradient(135deg, rgba(47,128,255,.12), rgba(19,200,184,.12));
  color:var(--blue);font-weight:900;font-size:1.45rem;flex:0 0 auto
}
.flow-card h3,.work-card h3{
  display:-webkit-box;-webkit-box-orient:vertical;overflow:hidden;-webkit-line-clamp:2;
  text-wrap:balance
}
.flow-card.active h3,.work-card.active h3{
  font-size:clamp(1.12rem,1.45vw,1.55rem);text-align:center
}
.flow-card.side h3,.work-card.side h3{
  font-size:1rem;text-align:center;max-width:190px
}
.flow-card p,.work-card p{margin:0}
.flow-card.active p,.work-card.active p{
  font-size:1rem;line-height:1.68;text-align:justify;color:var(--muted)
}
.flow-card.side p,.work-card.side p{
  color:var(--blue);font-weight:800;text-align:center
}
.flow-arrow,.work-arrow{
  width:54px;height:54px;border-radius:999px;border:1px solid var(--line);
  background:#fff;color:var(--navy);font-size:2rem;box-shadow:var(--shadow)
}
.flow-dots,.work-dots{
  display:flex;justify-content:center;gap:10px;margin-top:22px
}
.flow-dot,.work-dot{
  width:12px;height:12px;border-radius:999px;border:0;background:rgba(47,128,255,.18);cursor:pointer
}
.flow-dot.active,.work-dot.active{background:var(--orange)}
.benefit-grid .card{
  min-height:220px
}
.proof-quote{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:24px;
  padding:28px;
  margin-top:22px
}
.proof-quote p{
  color:#fff;
  font-size:1.06rem;
  line-height:1.72
}
.faq{display:grid;gap:14px;max-width:880px;margin:0 auto}
details{
  background:#fff;border:1px solid var(--line);border-radius:18px;padding:16px 18px;box-shadow:var(--shadow)
}
summary{
  cursor:pointer;font-family:'Space Grotesk',system-ui,sans-serif;font-weight:800;list-style:none
}
summary::-webkit-details-marker{display:none}
details p{margin-top:12px}
.page-hero{
  background:
    radial-gradient(circle at 10% 20%, rgba(19,200,184,.14), transparent 18%),
    radial-gradient(circle at 90% 10%, rgba(255,122,89,.14), transparent 18%),
    linear-gradient(180deg,#ffffff 0%, #f7fbff 100%);
  border-bottom:1px solid rgba(16,42,86,.06);
  padding:64px 0 32px
}
.page-title{
  font-size:clamp(2rem,3.8vw,3.2rem);
  line-height:1.06;
  max-width:840px;
}
.breadcrumb{font-size:.9rem;color:var(--muted);margin-bottom:12px}
.breadcrumb a:hover{text-decoration:underline}
.page-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:26px}
.partner-layout{display:grid;grid-template-columns:1.5fr .9fr;gap:24px}
.partner-side .card{position:sticky;top:96px}
.form-grid{display:grid;gap:14px}
.input, .textarea, .select{
  width:100%;
  min-height:52px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  color:var(--ink);
  padding:0 14px;
  font:inherit
}
.textarea{min-height:130px;padding:14px;resize:vertical}
.notice{
  padding:18px 20px;border-radius:18px;
  background:linear-gradient(180deg,#edf9f5 0%, #f6fcf9 100%);
  border:1px solid rgba(24,178,114,.12)
}
.notice p{margin:0;color:#2f5f49}
.cta-final{
  background:
    radial-gradient(circle at 15% 15%, rgba(19,200,184,.22), transparent 18%),
    radial-gradient(circle at 85% 20%, rgba(255,191,71,.18), transparent 15%),
    linear-gradient(135deg,#102652 0%, #14356d 55%, #1c4487 100%);
  color:#fff
}
.cta-final h2{color:#fff;font-size:clamp(2rem,3.5vw,3.2rem);line-height:1.04;max-width:980px;margin:0 auto 16px}
.cta-final p{max-width:880px;margin:0 auto 34px;color:rgba(255,255,255,.86);font-size:1.06rem;text-align:center}
.footer-wrap{border-top:1px solid rgba(255,255,255,.14);padding:30px 0 18px}
.footer-grid{display:grid;grid-template-columns:1.3fr 1fr 1.2fr;gap:34px;color:rgba(255,255,255,.78)}
.footer-grid p,.footer-grid a,.footer-grid div{color:rgba(255,255,255,.78)}
.footer-grid a:hover{text-decoration:underline}
.footer-title{font-weight:900;letter-spacing:.06em;text-transform:uppercase;color:rgba(255,255,255,.56);margin-bottom:18px}
.wa{
  position:fixed;right:18px;bottom:18px;z-index:70;
  width:68px;height:68px;border-radius:50%;
  display:grid;place-items:center;background:linear-gradient(135deg,var(--teal),#1bd4c4);
  color:#fff;font-size:1.7rem;box-shadow:0 16px 30px rgba(19,200,184,.28)
}
.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}
@media (max-width:1080px){
  .hero-inner,.grid-4,.grid-3,.grid-2,.comparison,.services-full,.partner-layout,.footer-grid{grid-template-columns:1fr}
  .navlinks{display:none}
}
@media (max-width:980px){
  .flow-track,.work-track{grid-template-columns:1fr}
  .flow-card.side,.work-card.side{display:none}
  .flow-carousel,.work-carousel{grid-template-columns:46px 1fr 46px}
  .services-full{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:760px){
  .section{padding:60px 0}
  .section-tight{padding:44px 0}
  .nav{min-height:76px}
  .brand img{width:190px}
  .hero{min-height:auto}
  .hero-inner{grid-template-columns:1fr;padding:42px 0 34px}
  .hero-title{max-width:100%;font-size:clamp(2.05rem,10vw,3rem)}
  .hero-copy{font-size:.98rem;line-height:1.72}
  .hero-actions,.page-actions{gap:12px}
  .hero-actions .btn,.btn{width:100%;min-height:56px}
  .hero-panel{order:-1}
  .kicker h2{max-width:100%;font-size:clamp(1.7rem,7vw,2.25rem)}
  .page-title{max-width:100%;font-size:clamp(1.8rem,8vw,2.4rem)}
  .hero-meta{gap:12px}
  .hero-meta span{width:100%}
  .services-full{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .partner-side .card{position:static}
}


/* v103 hero dynamic width + full title */
.hero .container{
  width:min(calc(100% - 64px), 1380px);
}
.hero-inner{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(680px, 1fr) minmax(420px, 500px);
  gap:clamp(36px, 4vw, 72px);
  align-items:center;
  max-width:none;
  margin:0 auto;
  padding:84px 0 64px;
}
.hero-badge{
  margin-bottom:24px;
}
.hero-title{
  max-width:760px;
  margin-bottom:24px;
  font-size:clamp(2.8rem, 5.2vw, 5.2rem);
  line-height:.98;
  -webkit-line-clamp:3;
}
.hero-copy{
  max-width:700px;
  margin-bottom:32px;
}
.hero-panel{
  max-width:500px;
  justify-self:end;
}
.kicker h2{
  margin-bottom:22px;
}
.kicker p{
  margin-top:0;
}
.page-title + p{
  margin-top:18px;
}
@media (min-width: 1440px){
  .hero .container{
    width:min(calc(100% - 80px), 1480px);
  }
  .hero-inner{
    grid-template-columns:minmax(760px, 1fr) 500px;
    gap:72px;
  }
  .hero-title{
    max-width:820px;
  }
}
@media (max-width: 1080px){
  .hero .container{
    width:min(calc(100% - 32px), var(--max));
  }
  .hero-inner{
    grid-template-columns:1fr;
    gap:28px;
    padding:52px 0 40px;
  }
  .hero-panel{
    max-width:none;
    justify-self:stretch;
  }
}
@media (max-width: 760px){
  .hero .container{
    width:min(calc(100% - 24px), var(--max));
  }
  .hero-title{
    max-width:100%;
    font-size:clamp(2.05rem, 10vw, 3.05rem);
    -webkit-line-clamp:3;
  }
  .hero-copy{
    max-width:100%;
  }
}


/* v104 below-hero refinements */
.section-title-launch{
  max-width: 1080px;
  margin: 0 auto 22px;
  font-size: clamp(2.15rem, 4.4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-align: center;
  text-wrap: balance;
}
.section-copy-launch{
  max-width: 860px !important;
  margin: 0 auto 0;
  font-size: 1.02rem;
  line-height: 1.78;
}
.card-head{
  align-items:center;
  min-height:auto;
}
.card-head .badge-box{
  align-self:center;
}
.compare-old h3,
.compare-new h3{
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.8vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.benefit-title-launch{
  max-width: 980px;
  margin: 0 auto 22px;
  font-size: clamp(2rem, 3.9vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  text-align: center;
  text-wrap: balance;
}
.section-copy-gap .kicker p{
  margin-top: 12px;
}
@media (max-width: 760px){
  .section-title-launch{
    font-size: clamp(1.75rem, 8.2vw, 2.5rem);
    line-height: 1.06;
  }
  .compare-old h3,
  .compare-new h3,
  .benefit-title-launch{
    font-size: clamp(1.72rem, 7.6vw, 2.4rem);
    line-height: 1.08;
  }
}


/* v105 mobile hero order fix */
@media (max-width: 760px){
  .hero-panel{
    order: 0 !important;
  }
}
