@font-face{font-family:'Bebas Neue';font-style:normal;font-weight:400;font-display:swap;src:url(/assets/fonts/bebas-neue-400.woff2) format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(/assets/fonts/inter-400.woff2) format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(/assets/fonts/inter-500.woff2) format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:600;font-display:swap;src:url(/assets/fonts/inter-600.woff2) format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:700;font-display:swap;src:url(/assets/fonts/inter-700.woff2) format('woff2');}
@font-face{font-family:'JetBrains Mono';font-style:normal;font-weight:400;font-display:swap;src:url(/assets/fonts/jetbrains-mono-400.woff2) format('woff2');}
@font-face{font-family:'JetBrains Mono';font-style:normal;font-weight:500;font-display:swap;src:url(/assets/fonts/jetbrains-mono-500.woff2) format('woff2');}

:root{
  color-scheme:light;
  --bg:#f8fafc; --world:#e9f1f5; --card:#ffffff; --border:#e2e8f0; --border-soft:#eef2f6;
  --ink:#0f172a; --ink-2:#1e293b; --muted:#64748b; --muted-2:#475569; --muted-3:#94a3b8;
  --teal:#056187; --teal-deep:#03476a; --teal-tint:#e8f1f5; --cyan:#00a3e0; --paid:#0a7580;
  --bebas:'Bebas Neue', 'Arial Narrow', sans-serif;
  --inter:'Inter', system-ui, -apple-system, sans-serif;
  --mono:'JetBrains Mono', ui-monospace, monospace;
}
html{scroll-padding-top:84px; background:var(--bg)}
html,body{margin:0; padding:0}
body{
  background:var(--bg) !important; color:var(--ink);
  font-family:var(--inter); font-size:16px; line-height:1.55;
  -webkit-font-smoothing:antialiased; overflow-x:hidden;
}
*,*::before,*::after{box-sizing:border-box}
img,svg{max-width:100%}
a{color:var(--teal)}
:focus-visible{outline:3px solid rgba(5,97,135,.4); outline-offset:2px; border-radius:6px}
::selection{background:rgba(0,163,224,.22)}

/* ---------- nav ---------- */
.nav{
  position:fixed; inset:0 0 auto 0; z-index:60; height:68px;
  display:flex; align-items:center; gap:28px; padding:0 clamp(16px,3.5vw,44px);
  background:rgba(248,250,252,.78); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(226,232,240,.7);
}
.nav .logo{
  font-family:var(--bebas); font-size:27px; letter-spacing:.06em; color:var(--teal);
  text-decoration:none; line-height:1; margin-right:auto; display:flex; align-items:center; gap:10px;
}
.nav .logo .mark{width:25px;height:22px;flex:none}
.nav .nav-link{
  font:500 13.5px/1 var(--inter); letter-spacing:.02em; color:var(--muted-2);
  text-decoration:none; padding:10px 2px;
}
.nav .nav-link:hover{color:var(--ink)}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  background:var(--teal); color:#fff; border:0; border-radius:999px;
  font:600 15px/1 var(--inter); padding:15px 28px; text-decoration:none; cursor:pointer;
  transition:background .18s ease, transform .18s ease;
}
.btn:hover{background:var(--teal-deep); transform:translateY(-1px)}
.btn.small{font-size:13.5px; padding:11px 20px}
.btn.ghost{background:transparent; color:var(--ink-2); border:1px solid var(--border)}
.btn.ghost:hover{background:#fff; border-color:var(--muted-3); color:var(--ink)}
@media (max-width:760px){ .nav{height:60px; gap:16px} .nav .nav-link{display:none} }

/* ---------- hero / pinned world ---------- */
.hero{position:relative; height:100vh; min-height:640px; overflow:hidden; background:var(--world)}
.world{position:absolute; inset:0}
.world .poster{position:absolute; inset:0; opacity:1; transition:opacity .9s ease}
.world .poster svg{width:100%; height:100%; display:block}
.world canvas{position:absolute; inset:0; width:100%; height:100%; display:block; opacity:0; transition:opacity .9s ease}
.hero.glon .world canvas{opacity:1}
.hero.glon .world .poster{opacity:0}

.hero-copy{
  position:absolute; z-index:5; left:50%; top:11vh; transform:translateX(-50%);
  width:min(920px, calc(100% - 32px)); text-align:center; pointer-events:none;
}
.hero-copy h1{
  font-family:var(--bebas); font-weight:400; margin:0;
  font-size:clamp(52px, 7.2vw, 104px); line-height:.95; letter-spacing:.012em; color:var(--ink);
}
.hero-copy h1 .l2{display:block; color:var(--teal)}
.hero-copy .sub{
  margin:22px auto 0; max-width:600px; color:var(--muted-2);
  font-size:clamp(15px,1.35vw,17.5px); line-height:1.6;
}
.scroll-hint{
  position:absolute; z-index:5; left:50%; bottom:26px; transform:translateX(-50%);
  font:500 13px/1 var(--inter); letter-spacing:.01em; color:var(--muted-2);
  padding-bottom:9px; border-bottom:1.5px solid var(--ink); white-space:nowrap;
  transition:opacity .4s ease;
}

/* step list, persistent 01-04 */
.steps{
  position:absolute; z-index:6; left:clamp(16px,3.5vw,52px); bottom:34px;
  width:min(520px, calc(100% - 32px));
  list-style:none; margin:0; padding:0;
  opacity:0; transform:translateY(14px); transition:opacity .5s ease, transform .5s ease;
  pointer-events:none;
}
.hero.steps-on .steps{opacity:1; transform:none; pointer-events:auto}
.step{margin:0}
.step + .step{margin-top:2px}
.step button{
  all:unset; display:grid; grid-template-columns:46px 1fr; align-items:center; column-gap:20px;
  cursor:pointer; padding:7px 0; width:100%;
}
.step .num{
  font:600 12.5px/1 var(--inter); color:var(--ink); text-align:center;
  padding:9px 0; border-radius:12px; transition:background .35s ease, box-shadow .35s ease;
}
.step .label{
  font-family:var(--bebas); font-weight:400; font-size:19px; letter-spacing:.035em;
  color:var(--ink); transition:font-size .35s ease; line-height:1;
}
.step.active .num{background:#fff; box-shadow:0 6px 18px rgba(15,23,42,.10)}
.step.active .label{font-size:clamp(27px,2.6vw,34px); color:var(--ink)}
.step .body{
  grid-column:2; overflow:hidden; max-height:0; opacity:0;
  transition:max-height .45s ease, opacity .45s ease, padding .45s ease;
  padding:0;
}
.step.active .body{max-height:220px; opacity:1; margin-top:10px; margin-bottom:6px}
.step .body p{margin:0; font-size:14.5px; line-height:1.6; color:var(--muted-2); max-width:44ch}
.step.s4 .label em{font-style:normal; color:var(--teal)}

/* capture chips, what the voice note carries (beat 1) */
.chips{position:absolute; inset:0; z-index:4; pointer-events:none; overflow:hidden}
.chip{
  position:absolute; left:0; top:0; opacity:0; white-space:nowrap;
  display:inline-flex; align-items:center; gap:7px;
  background:#fff; border:1px solid var(--border); border-radius:999px;
  padding:7px 13px 7px 10px; box-shadow:0 8px 22px rgba(15,23,42,.10);
  font:500 12px/1 var(--inter); color:var(--ink-2);
  will-change:transform,opacity;
}
.chip svg{width:13px; height:13px; stroke:var(--teal); flex:none}

/* destination labels, where the pieces route (beat 3) */
.dlabels{position:absolute; inset:0; z-index:4; pointer-events:none; overflow:hidden}
.dlab{
  position:absolute; left:0; top:0; opacity:0; white-space:nowrap;
  display:inline-flex; align-items:center; gap:8px;
  background:#fff; border:1px solid var(--border); border-radius:999px;
  padding:8px 14px 8px 11px; box-shadow:0 10px 26px rgba(15,23,42,.13);
  font:500 12.5px/1 var(--inter); color:var(--ink);
  will-change:transform,opacity;
}
.dlab svg{width:14px; height:14px; stroke:var(--teal); flex:none}
@media (max-width:760px){
  .dlab{padding:6px 10px 6px 8px; font-size:11px; gap:6px}
  .dlab svg{width:12px; height:12px}
  .chip{padding:6px 10px 6px 8px; font-size:11px}
  .chip svg{width:11px; height:11px}
}

/* the brand lockup, resolves over the hub as the report arrives */
.brandlock{
  position:absolute; left:50%; top:42%; z-index:5; pointer-events:none;
  display:inline-flex; align-items:center; gap:16px; white-space:nowrap;
  color:var(--teal); --mark-hole:#e9f1f5;
  opacity:0; transform:translate(-50%,-50%) scale(.95);
  transition:opacity .4s ease-out, transform .4s ease-out;
  will-change:transform,opacity;
}
.brandlock svg{width:88px; height:77px; flex:none}
.brandlock .wm{font-family:var(--bebas); font-weight:400; font-size:62px; letter-spacing:.06em; line-height:1}
.hero.brand-on .brandlock{opacity:1; transform:translate(-50%,-50%) scale(1)}
@media (max-width:760px){
  .brandlock{gap:11px}
  .brandlock svg{width:58px; height:51px}
  .brandlock .wm{font-size:42px}
}
html.rm .brandlock{display:none}

/* the conversation, a plain question and a plain answer */
.convo{width:min(376px, 100%)}
.convo .cv-q{display:flex; justify-content:flex-end; margin-bottom:12px}
.convo .cv-q .bub{
  background:var(--teal); color:#fff; border-radius:16px 16px 4px 16px;
  padding:11px 16px; font-size:14.5px; font-weight:500; line-height:1.45;
  box-shadow:0 12px 28px -14px rgba(3,71,106,.5);
}
.convo .cv-a{display:flex; gap:10px; align-items:flex-end}
.convo .ava{
  width:30px; height:30px; border-radius:50%; background:var(--teal); flex:none;
  display:flex; align-items:center; justify-content:center;
}
.convo .ava svg{width:16px; height:14px; color:#fff; --mark-hole:var(--teal)}
.convo .card{
  flex:1; background:var(--card); border:1px solid var(--border);
  border-radius:16px 16px 16px 4px; padding:16px 18px;
  box-shadow:0 20px 44px -22px rgba(15,23,42,.22);
  display:flex; flex-direction:column; gap:12px;
}
.convo .row{display:flex; gap:11px; align-items:flex-start}
.convo .row svg{width:16px; height:16px; stroke:var(--teal); flex:none; margin-top:1px}
.convo .row p{margin:0; font-size:13.5px; line-height:1.5; color:var(--ink-2)}

/* the finale panel over the world */
.ai{
  position:absolute; z-index:6; right:clamp(14px,5.5vw,92px); top:13%;
  width:min(376px, calc(100% - 28px));
  opacity:0; transform:translateY(20px) scale(.97);
  transition:opacity .45s ease, transform .55s cubic-bezier(.23,1,.32,1);
  pointer-events:none;
}
.ai.on{opacity:1; transform:none}
.ai .cv-q{opacity:0; transform:translateY(8px); transition:opacity .4s ease, transform .4s cubic-bezier(.23,1,.32,1)}
.ai.ask .cv-q{opacity:1; transform:none}
.ai .row{opacity:0; transform:translateY(7px); transition:opacity .4s ease, transform .4s cubic-bezier(.23,1,.32,1)}
.ai.ans .row{opacity:1; transform:none}
.ai.ans .row:nth-child(2){transition-delay:.07s}
.ai.ans .row:nth-child(3){transition-delay:.14s}
.ai.ans .row:nth-child(4){transition-delay:.21s}

@media (max-width:760px){
  .hero{min-height:560px}
  .hero-copy{top:12vh}
  .hero-copy h1{font-size:clamp(42px,12.5vw,58px)}
  .steps{
    left:0; bottom:0; width:100%; padding:56px 18px 18px;
    background:linear-gradient(to top, rgba(233,241,245,.97) 55%, rgba(233,241,245,0));
  }
  .step .label{font-size:17px}
  .step.active .label{font-size:25px}
  .step .body p{font-size:13.5px}
  .step button{grid-template-columns:40px 1fr; column-gap:14px}
  .ai{right:12px; top:9%; width:calc(100% - 24px)}
  .convo .cv-q .bub{font-size:13.5px}
  .convo .row p{font-size:12.5px}
  .scroll-hint{display:none}
}

/* ---------- shared section furniture ---------- */
main{position:relative; z-index:2; background:var(--bg)}
.sec{padding:clamp(72px,9vw,120px) clamp(18px,4vw,48px)}
.wrap{max-width:1120px; margin:0 auto}
.display{font-family:var(--bebas); font-weight:400; line-height:.98; letter-spacing:.012em; margin:0; color:var(--ink); text-transform:uppercase}

/* ---------- problem ---------- */
.problem{border-bottom:1px solid var(--border)}
.problem .display{font-size:clamp(40px,5.6vw,76px); max-width:16ch}
.problem .display .hurt{color:var(--muted-3)}
.plines{list-style:none; margin:36px 0 0; padding:0; display:flex; flex-direction:column; gap:12px}
.plines li{font-size:clamp(16.5px,1.6vw,18.5px); line-height:1.65; color:var(--muted-2); max-width:34em}
.turn{margin-top:clamp(72px,9vw,110px); text-align:center}
.turn p{font-family:var(--bebas); text-transform:uppercase; font-size:clamp(30px,3.8vw,50px); line-height:1.04; max-width:22em; margin:0 auto; color:var(--ink)}
.turn p .k{color:var(--teal)}

/* ---------- features ---------- */
.feat{border-bottom:1px solid var(--border)}
.feat.alt{background:#fff}
.feat-split{display:grid; grid-template-columns:1fr 1fr; gap:clamp(40px,5vw,72px); align-items:center}
.fico{
  width:44px; height:44px; border-radius:12px; background:var(--teal-tint);
  display:flex; align-items:center; justify-content:center; margin-bottom:22px;
}
.fico svg{width:20px; height:20px; stroke:var(--teal)}
.feat h2{font-family:var(--bebas); text-transform:uppercase; font-weight:400; font-size:clamp(38px,4.2vw,58px); line-height:.96; margin:0; color:var(--ink)}
.feat h2 .k{color:var(--teal)}
.feat .body{margin:18px 0 0; color:var(--muted); font-size:17px; line-height:1.65; max-width:28em}
.feat-split .convo{margin:0 auto}
@media (max-width:980px){
  .feat-split{grid-template-columns:1fr}
  .feat .body{max-width:none}
  .feat-split .dest{order:2}
}

/* voice card mock (feature: talk) */
.vc{
  background:#fff; border:1px solid var(--border); border-radius:22px; padding:30px 24px 24px;
  box-shadow:0 24px 48px -20px rgba(15,23,42,.18); max-width:420px; margin:0 auto; width:100%;
}
.vc-mid{display:flex; flex-direction:column; align-items:center; padding:2px 0 4px}
.vc-fab{width:76px; height:76px; border-radius:50%; background:var(--teal); display:flex; align-items:center; justify-content:center;
  box-shadow:0 0 0 10px rgba(5,97,135,.08), 0 0 0 22px rgba(5,97,135,.04), 0 10px 24px rgba(5,97,135,.32)}
.vc-fab svg{width:28px; height:28px; stroke:#fff}
.vc-wave{display:flex; align-items:center; gap:3px; height:24px; margin-top:20px}
.vc-wave i{width:3px; border-radius:2px; background:var(--teal); opacity:.7; height:30%}
.vc-wave i:nth-child(2n){height:75%}.vc-wave i:nth-child(3n){height:50%}.vc-wave i:nth-child(7n){height:95%}
.vc-script{margin-top:20px; background:var(--bg); border:1px solid var(--border-soft); border-radius:14px; padding:14px 16px;
  font-size:13.5px; line-height:1.6; color:var(--ink-2)}
.vc-tags{display:flex; flex-wrap:wrap; justify-content:center; gap:8px; margin-top:16px}
.tago{display:inline-flex; align-items:center; gap:7px; background:var(--bg); border:1px solid var(--border);
  border-radius:999px; padding:7px 13px 7px 10px; font:500 12.5px/1 var(--inter); color:var(--ink-2)}
.tago svg{width:13px; height:13px; stroke:var(--teal); flex:none}

/* destination card (feature: route) */
.dest{
  background:#fff; border:1px solid var(--border); border-radius:22px; padding:6px 24px 8px;
  box-shadow:0 24px 48px -20px rgba(15,23,42,.18); max-width:380px; margin:0 auto; width:100%;
}
.dest-src{display:flex; align-items:center; gap:13px; padding:16px 0; border-bottom:1px solid var(--border);
  font:600 14.5px/1.3 var(--inter); color:var(--ink)}
.dest-src .mic{width:36px; height:36px; border-radius:50%; background:var(--teal); flex:none;
  display:flex; align-items:center; justify-content:center}
.dest-src .mic svg{width:16px; height:16px; stroke:#fff}
.drow{display:flex; align-items:center; gap:13px; padding:12px 0 12px 5px; border-bottom:1px solid var(--border-soft);
  font:500 14px/1.3 var(--inter); color:var(--ink-2)}
.drow:last-child{border-bottom:0}
.drow svg{width:17px; height:17px; stroke:var(--teal); flex:none}

/* quiet supporting row */
.quiet{border-bottom:1px solid var(--border)}
.quiet-in{max-width:1120px; margin:0 auto; padding:36px 24px; display:flex; gap:16px 52px; flex-wrap:wrap; justify-content:center}
.quiet-in span{display:flex; align-items:center; gap:10px; font:500 14px/1.4 var(--inter); color:var(--muted-2)}
.quiet-in svg{width:17px; height:17px; stroke:var(--teal); flex:none}

/* ---------- who ---------- */
.who{background:#fff; border-bottom:1px solid var(--border)}
.who-in{max-width:860px; margin:0 auto; text-align:center}
.who .display{font-size:clamp(36px,4.4vw,58px)}
.who .display .k{color:var(--teal)}
.trades{margin:32px auto 0; display:flex; flex-wrap:wrap; justify-content:center; gap:10px}
.trades span{font:500 14.5px/1 var(--inter); color:var(--ink-2); background:var(--bg);
  border:1px solid var(--border); border-radius:999px; padding:11px 20px}

/* ---------- proof ---------- */
.proof{border-bottom:1px solid var(--border)}
.proof-in{max-width:680px; margin:0 auto}
.quote-card{background:#fff; border:1px solid var(--border); border-radius:20px; padding:clamp(28px,4vw,42px); margin:0}
.quote-card blockquote{margin:0; font-size:clamp(18px,2vw,21px); line-height:1.6; color:var(--ink); font-weight:500}
.quote-attr{margin-top:26px; display:flex; align-items:center; gap:14px; flex-wrap:wrap}
.quote-attr .av{width:44px; height:44px; border-radius:50%; background:var(--teal-tint); display:flex; align-items:center; justify-content:center; flex:none}
.quote-attr .av svg{width:20px; height:20px; stroke:var(--teal)}
.quote-attr .nm{font-weight:600; font-size:14px; color:var(--ink)}
.quote-attr .rl{font-size:12.5px; color:var(--muted)}
.ph-tag{margin-left:auto; font:500 11px/1 var(--inter); color:var(--muted); border:1px dashed var(--muted-3); border-radius:6px; padding:5px 9px}

/* ---------- FAQ ---------- */
.faq{background:#fff; border-bottom:1px solid var(--border)}
.faq-grid{display:grid; grid-template-columns:.9fr 1.4fr; gap:clamp(36px,5vw,64px); align-items:start}
@media (max-width:900px){ .faq-grid{grid-template-columns:1fr} }
.faq .display{font-size:clamp(38px,4.4vw,54px)}
.faq .lede{margin:16px 0 0; color:var(--muted); font-size:16px; max-width:24em}
.faq .lede a{font-weight:600}
.faq-list{display:flex; flex-direction:column; gap:12px}
.faq-item{background:var(--bg); border:1px solid var(--border); border-radius:14px; overflow:hidden}
.faq-item[open]{border-color:#cfe0e9; background:#fff; box-shadow:0 6px 18px -8px rgba(5,97,135,.14)}
.faq-item summary{list-style:none; cursor:pointer; display:flex; align-items:center; gap:14px; padding:18px 22px; font-weight:600; font-size:15.5px; color:var(--ink)}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary .pm{margin-left:auto; flex:none; width:26px; height:26px; border-radius:50%; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; color:var(--teal); transition:transform .2s}
.faq-item[open] summary .pm{transform:rotate(45deg); background:var(--teal); border-color:var(--teal); color:#fff}
.faq-item .a{padding:0 22px 20px; color:var(--muted); font-size:14.5px; line-height:1.65; max-width:42em}
.faq-item .a strong{color:var(--ink-2)}

/* ---------- final CTA ---------- */
.final{background:var(--teal); color:#fff; position:relative; overflow:hidden}
.final::before{content:""; position:absolute; inset:0;
  background-image:linear-gradient(to right,rgba(255,255,255,.06) 1px,transparent 1px),linear-gradient(to bottom,rgba(255,255,255,.06) 1px,transparent 1px);
  background-size:44px 44px; pointer-events:none}
.final-in{position:relative; max-width:1120px; margin:0 auto; padding:clamp(72px,9vw,110px) 24px; text-align:center}
.final .fmark{margin:0 auto 22px; width:56px; height:49px; color:#fff; --mark-hole:var(--teal)}
.final h2{margin:0; font-family:var(--bebas); text-transform:uppercase; font-weight:400; font-size:clamp(42px,5.4vw,74px); line-height:.94}
.final .sub{margin:18px auto 0; font-size:17px; color:rgba(255,255,255,.85); max-width:34em; line-height:1.6}
.final-ctas{margin-top:34px; display:flex; gap:14px; justify-content:center; flex-wrap:wrap}
.btn-white{background:#fff; color:var(--teal)}
.btn-white:hover{background:#eef6fa; color:var(--teal-deep)}
.btn-outline-w{background:transparent; color:#fff; border:1px solid rgba(255,255,255,.45)}
.btn-outline-w:hover{background:rgba(255,255,255,.08); border-color:#fff}
.final-meta{margin-top:26px; font:500 13.5px/1.6 var(--inter); color:rgba(255,255,255,.78); display:flex; gap:10px; justify-content:center; flex-wrap:wrap; align-items:center}
.final-meta .sep{opacity:.5}

/* ---------- footer ---------- */
footer{background:#fff}
.foot-in{max-width:1120px; margin:0 auto; padding:64px 24px 0}
.foot-grid{display:grid; grid-template-columns:1.6fr 1fr 1fr; gap:40px; padding-bottom:52px}
@media (max-width:760px){ .foot-grid{grid-template-columns:1fr} }
.foot-brand .fl{font-family:var(--bebas); font-size:28px; letter-spacing:.06em; color:var(--teal); line-height:1; display:flex; align-items:center; gap:10px; text-decoration:none}
.foot-brand .fl .mark{width:25px; height:22px}
.foot-brand p{margin:14px 0 0; color:var(--muted); font-size:13.5px; max-width:24em; line-height:1.6}
footer ul{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:11px}
footer ul a{color:var(--ink-2); text-decoration:none; font-size:14px}
footer ul a:hover{color:var(--teal)}
footer ul .tbd{color:var(--muted); font:400 14px/1.5 var(--inter)}
.title-block{border-top:2px solid var(--ink); display:grid; grid-template-columns:2fr 1fr 1fr 1fr;
  font:500 10.5px/1.5 var(--mono); letter-spacing:.05em; color:var(--muted); text-transform:uppercase}
.tb-cell{padding:14px 16px 18px; border-right:1px solid var(--border)}
.tb-cell:first-child{padding-left:0}
.tb-cell:last-child{border-right:0; text-align:right; padding-right:0}
.tb-cell .k{display:block; font-size:9px; color:var(--muted-3); margin-bottom:4px}
.tb-cell .v{color:var(--ink-2)}
@media (max-width:760px){
  .title-block{grid-template-columns:1fr 1fr}
  .tb-cell:nth-child(2){border-right:0; text-align:right; padding-right:0}
  .tb-cell:nth-child(3){padding-left:0; border-top:1px solid var(--border)}
  .tb-cell:nth-child(4){border-top:1px solid var(--border)}
}

/* ---------- driveable excavator, desktop easter egg ---------- */
/* These elements are created by script only when the feature is available
   (fine pointer + WebGL), so none of this touches the fallbacks. */
.dg-chip{
  position:absolute; left:0; top:0; z-index:7; pointer-events:none; white-space:nowrap;
  display:inline-flex; align-items:center; gap:7px;
  background:#fff; border:1px solid var(--border); border-radius:999px;
  padding:8px 13px 8px 11px; box-shadow:0 8px 22px rgba(15,23,42,.12);
  font:600 12.5px/1 var(--inter); color:var(--ink);
  opacity:0; transform:translate(-50%,-130%) translateY(5px) scale(.97);
  transition:opacity .18s cubic-bezier(.23,1,.32,1), transform .22s cubic-bezier(.23,1,.32,1);
  will-change:transform,opacity;
}
.dg-chip.on{opacity:1; transform:translate(-50%,-130%) translateY(0) scale(1)}
.dg-chip svg{width:14px; height:14px; stroke:var(--teal); fill:none; flex:none}
.dg-hint{
  position:absolute; left:50%; bottom:30px; z-index:8; pointer-events:none; white-space:nowrap;
  display:inline-flex; align-items:center; gap:9px;
  background:#fff; border:1px solid var(--border); border-radius:12px; padding:11px 16px;
  box-shadow:0 14px 34px -12px rgba(15,23,42,.24);
  font:500 13px/1 var(--inter); color:var(--muted-2);
  opacity:0; transform:translateX(-50%) translateY(8px);
  transition:opacity .3s cubic-bezier(.23,1,.32,1), transform .35s cubic-bezier(.23,1,.32,1);
}
.dg-hint.on{opacity:1; transform:translateX(-50%) translateY(0)}
.dg-hint .ks{display:inline-flex; gap:4px}
.dg-hint .k{
  display:inline-flex; align-items:center; justify-content:center; min-width:20px; height:20px;
  padding:0 5px; border:1px solid var(--border); border-bottom-width:2px; border-radius:5px;
  background:var(--bg); font:600 11px/1 var(--inter); color:var(--ink);
}
.dg-hint .sep{color:var(--muted-3)}
.dg-exit{
  position:absolute; top:82px; right:18px; z-index:8; width:36px; height:36px;
  display:flex; align-items:center; justify-content:center; padding:0;
  background:#fff; border:1px solid var(--border); border-radius:50%; cursor:pointer;
  box-shadow:0 8px 20px rgba(15,23,42,.12); color:var(--muted-2);
  opacity:0; pointer-events:none; transform:scale(.97);
  transition:opacity .2s cubic-bezier(.23,1,.32,1), transform .16s cubic-bezier(.23,1,.32,1), color .15s ease, border-color .15s ease;
}
.hero.dg-driving .dg-exit{opacity:1; pointer-events:auto; transform:scale(1)}
.dg-exit:hover{color:var(--ink); border-color:var(--muted-3)}
.dg-exit:active{transform:scale(.94)}
.dg-exit svg{width:15px; height:15px; stroke:currentColor; fill:none}
.dg-reset{
  position:absolute; top:85px; right:64px; z-index:8;
  display:inline-flex; align-items:center;
  background:rgba(255,255,255,.94); border:1px solid var(--border); border-radius:999px;
  padding:9px 15px; cursor:pointer;
  font:500 12.5px/1 var(--inter); color:var(--muted-2); white-space:nowrap;
  opacity:0; pointer-events:none; transform:translateY(-4px);
  transition:opacity .22s cubic-bezier(.23,1,.32,1), transform .25s cubic-bezier(.23,1,.32,1), color .15s ease, border-color .15s ease;
}
.hero.dg-driving.dg-dirty .dg-reset{opacity:1; pointer-events:auto; transform:translateY(0)}
.dg-reset:hover{color:var(--ink); border-color:var(--muted-3)}
.dg-reset:active{transform:scale(.97)}
.hero.dg-driving .scroll-hint{opacity:0 !important}

/* ---------- reduced-motion / static fallback ---------- */
html.rm .hero{height:auto; min-height:0; overflow:visible; background:var(--bg); padding:118px 18px 8px; display:flex; flex-direction:column}
html.rm .hero-copy{position:static; transform:none; margin:0 auto; pointer-events:auto; order:1}
html.rm .world{order:2; position:relative; inset:auto; width:min(100%,1120px); align-self:center;
  margin:44px auto 0; max-width:1120px; aspect-ratio:16/9.2; border-radius:20px; overflow:hidden; border:1px solid var(--border)}
html.rm .world canvas, html.rm .steps, html.rm .scroll-hint, html.rm .chips, html.rm .dlabels, html.rm .brandlock{display:none}
html.rm .world .poster{opacity:1 !important}
html.rm .ai{position:static; order:3; opacity:1; transform:none; pointer-events:auto;
  margin:28px auto 24px; width:min(400px,100%)}
html.rm .ai .cv-q, html.rm .ai .row{opacity:1; transform:none}
@media (prefers-reduced-motion: reduce){
  .hero{height:auto; min-height:0; overflow:visible; background:var(--bg); padding:118px 18px 8px; display:flex; flex-direction:column}
  .hero-copy{position:static; transform:none; margin:0 auto; pointer-events:auto; order:1}
  .world{order:2; position:relative; inset:auto; width:min(100%,1120px); align-self:center;
    margin:44px auto 0; max-width:1120px; aspect-ratio:16/9.2; border-radius:20px; overflow:hidden; border:1px solid var(--border)}
  .world canvas, .steps, .scroll-hint, .chips, .dlabels, .brandlock{display:none}
  .world .poster{opacity:1 !important}
  .ai{position:static; order:3; opacity:1; transform:none; pointer-events:auto;
    margin:28px auto 24px; width:min(400px,100%)}
  .ai .cv-q, .ai .row{opacity:1; transform:none}
  *{scroll-behavior:auto !important}
}
/* WebGL missing is promoted to the same static treatment by script (html.rm). */

/* real brand wordmark (apps/landing/brand/diggit-wordmark.svg) */
.nav .logo .wm,.foot-brand .fl .wm{height:18px;width:137px;flex:none}
.brandlock .wm{height:40px;width:304px}
@media (max-width:760px){ .brandlock .wm{height:28px;width:213px} }

/* ---------- pricing (apps/landing/partials/pricing.css) ----------
   The designer's dg-pricing-styles, appended to site.css by the importer.
   Colour and font tokens point at the site's own values (see :root);
   the "site fit" block at the end aligns the section with its neighbours. */
.dg-pricing {
  --dg-blue: #056187; /* site --teal */
  --dg-blue-dark: #03476a; /* site --teal-deep */
  --dg-tint: #e8f1f5; /* site --teal-tint */
  --dg-teal: #2dd4bf;
  --dg-ink: #1f2937;
  --dg-muted: #5b6470;
  --dg-line: #e3e7eb;
  --dg-paper: #ffffff;
  --dg-off: #f7f9fa;

  /* same families the site self-hosts (@font-face at the top of site.css) */
  --dg-font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --dg-font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --dg-radius-card: 16px;
  --dg-gap: 24px;

  box-sizing: border-box;
  font-family: var(--dg-font-body);
  color: var(--dg-ink);
  background: var(--dg-paper);
  padding: 72px 24px 88px;
  position: relative;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}
.dg-pricing *,
.dg-pricing *::before,
.dg-pricing *::after {
  box-sizing: border-box;
}

.dg-pricing__inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* --- Radar-arc brand motif, bottom right. Decorative only. ------------ */
.dg-pricing__arc {
  position: absolute;
  border: 1px solid var(--dg-blue);
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
}
.dg-pricing__arc--1 {
  width: 560px;
  height: 560px;
  right: -280px;
  bottom: -300px;
}
.dg-pricing__arc--2 {
  width: 400px;
  height: 400px;
  right: -200px;
  bottom: -220px;
}
.dg-pricing__arc--3 {
  width: 250px;
  height: 250px;
  right: -125px;
  bottom: -145px;
}

/* --- Header ----------------------------------------------------------- */
.dg-pricing__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.dg-pricing__title {
  font-family: var(--dg-font-display);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0;
  color: var(--dg-ink);
}
.dg-pricing__title em {
  font-style: normal;
  color: var(--dg-blue);
}

.dg-pricing__rule {
  width: 56px;
  height: 4px;
  background: var(--dg-blue);
  margin: 14px 0 16px;
}

.dg-pricing__lede {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--dg-muted);
  max-width: 34em;
}

/* --- Monthly / annual toggle ------------------------------------------ */
.dg-toggle {
  display: inline-flex;
  background: var(--dg-off);
  border: 1px solid var(--dg-line);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 4px;
}
.dg-toggle__btn {
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--dg-muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 18px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}
.dg-toggle__btn:hover {
  color: var(--dg-ink);
}
.dg-toggle__btn[aria-pressed='true'] {
  background: var(--dg-paper);
  color: var(--dg-ink);
  border-color: var(--dg-line);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
.dg-toggle__btn:focus-visible {
  outline: 2px solid var(--dg-blue);
  outline-offset: 2px;
}
.dg-toggle__save {
  color: var(--dg-blue);
  font-weight: 600;
  margin-left: 6px;
}

/* --- Card grid -------------------------------------------------------- */
.dg-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--dg-gap);
  margin-top: 48px;
  align-items: stretch;
}

.dg-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--dg-paper);
  border: 1px solid var(--dg-line);
  border-radius: var(--dg-radius-card);
  padding: 30px 30px 32px;
}

/* Featured card. The gradient is the brand tint fading to white. */
.dg-plan--featured {
  border: 1.5px solid var(--dg-blue);
  background: linear-gradient(180deg, var(--dg-tint) 0%, var(--dg-paper) 62%);
}

.dg-plan__flag {
  position: absolute;
  top: -13px;
  left: 30px;
  background: var(--dg-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.dg-plan__name {
  font-family: var(--dg-font-display);
  font-weight: 400;
  font-size: 38px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
  color: var(--dg-ink);
}

.dg-plan__who {
  font-size: 14px;
  line-height: 1.5;
  color: var(--dg-muted);
  margin: 10px 0 0;
}

.dg-plan__pricing {
  margin-top: 24px;
}

.dg-plan__price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: wrap;
}
.dg-plan__from {
  font-size: 22px;
  font-weight: 500;
  color: var(--dg-ink);
  margin-right: 2px;
}
.dg-plan__amount {
  font-family: var(--dg-font-display);
  font-size: 56px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--dg-ink);
}
.dg-plan__period {
  font-size: 15px;
  font-weight: 500;
  color: var(--dg-muted);
}
.dg-plan__note {
  font-size: 13px;
  line-height: 1.45;
  color: var(--dg-muted);
  margin: 8px 0 0;
}

/* --- Form-count select ------------------------------------------------ */
.dg-plan__select-wrap {
  margin-top: 18px;
}
.dg-plan__select {
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--dg-ink);
  width: 100%;
  height: 46px;
  padding: 0 40px 0 14px;
  background-color: var(--dg-paper);
  border: 1px solid var(--dg-line);
  border-radius: 10px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  /* chevron */
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%235B6470' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
}
.dg-plan__select:focus-visible {
  outline: 2px solid var(--dg-blue);
  outline-offset: 2px;
}
/* Invisible spacer so the Free and Scale buttons line up with Build's.
   Hidden from screen readers and dropped on narrow screens. */
.dg-plan__select-wrap--spacer {
  visibility: hidden;
}
/* was an inline style on the label in the handoff */
.dg-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* --- Buttons ---------------------------------------------------------- */
.dg-btn {
  display: block;
  width: 100%;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid var(--dg-ink);
  background: var(--dg-paper);
  color: var(--dg-ink);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}
.dg-btn:hover {
  background: var(--dg-ink);
  color: #fff;
}
.dg-btn:focus-visible {
  outline: 2px solid var(--dg-blue);
  outline-offset: 2px;
}

.dg-btn--primary {
  background: var(--dg-blue);
  border-color: var(--dg-blue);
  color: #fff;
}
.dg-btn--primary:hover {
  background: var(--dg-blue-dark);
  border-color: var(--dg-blue-dark);
  color: #fff;
}

/* --- Feature list ----------------------------------------------------- */
.dg-plan__includes {
  font-size: 13px;
  color: var(--dg-muted);
  margin: 26px 0 12px;
}
.dg-plan__features {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dg-plan__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--dg-ink);
  margin-bottom: 11px;
}
.dg-plan__features svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  margin-top: 2px;
  color: var(--dg-blue);
}

/* --- Footnote --------------------------------------------------------- */
.dg-pricing__foot {
  margin: 40px 0 0;
  font-size: 14px;
  color: var(--dg-muted);
  text-align: center;
}
.dg-pricing__foot a {
  color: var(--dg-blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--dg-teal);
  text-underline-offset: 3px;
}
.dg-pricing__foot a:hover {
  text-decoration-color: var(--dg-blue);
}

/* --- Responsive ------------------------------------------------------- */
@media (max-width: 960px) {
  .dg-plans {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .dg-plan__select-wrap--spacer {
    display: none;
  } /* no alignment to keep */
  .dg-plan--featured {
    order: -1;
  } /* Build first on mobile */
  .dg-pricing__head {
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .dg-pricing {
    padding: 48px 18px 64px;
  }
  .dg-plan {
    padding: 26px 22px 28px;
  }
  .dg-plans {
    margin-top: 36px;
  }
  .dg-pricing__arc {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dg-pricing * {
    transition: none !important;
  }
}

/* --- Site fit --------------------------------------------------------- */
/* Same rhythm, column and section rule as the neighbouring .sec blocks,
   so the pricing edge lines up with the FAQ below it. */
.dg-pricing {
  padding: clamp(72px, 9vw, 120px) clamp(18px, 4vw, 48px);
  border-bottom: 1px solid var(--border, #e2e8f0);
}
.dg-pricing__inner {
  max-width: 1120px;
}
/* html.rm is the page's static mode (reduced motion, or no WebGL). */
html.rm .dg-pricing * {
  transition: none !important;
}
