/* ═══════════════════════════════════════════════════════════
   Surfacer — Globe + Scroll Zoom Landing
   ═══════════════════════════════════════════════════════════ */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
  --bg:#f5f3ed;--bg2:#ece0ce;--bg3:#e0d2bf;--surface:#fff;
  --text:#1a1714;--text2:#4a4540;--text3:#8a827a;
  --accent:#c97a2a;--accent-l:#d4874a;--accent-bg:rgba(184,101,42,.08);
  --border:#d6d3cc;--border-s:#e8e3dc;
  --serif:'Fraunces',Georgia,serif;--sans:'DM Sans',-apple-system,sans-serif;
  --mono:'SF Mono','Fira Code',Menlo,monospace;
  --r:4px;--r-lg:10px;--r-xl:16px;
  --shadow:0 4px 16px rgba(26,23,20,.07),0 2px 4px rgba(26,23,20,.04);
  --max:1280px;--gut:clamp(20px,5vw,56px);--sec:clamp(80px,12vw,160px);
}
::selection{background:rgba(184,101,42,.18)}
html{font-size:16px;scroll-behavior:smooth}
body{font-family:var(--sans);background:var(--bg);color:var(--text);line-height:1.6;-webkit-font-smoothing:antialiased;overflow-x:hidden;overflow-x:clip}
a{color:inherit;text-decoration:none}

/* Grain */
.grain{position:fixed;inset:0;z-index:9999;pointer-events:none;opacity:.18;mix-blend-mode:overlay;
  background:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E") repeat;background-size:180px}

/* Reveal */
.anim-up{opacity:0;transform:translateY(28px);transition:opacity .8s cubic-bezier(.16,1,.3,1),transform .8s cubic-bezier(.16,1,.3,1)}
.anim-up.in{opacity:1;transform:none}
.d1{transition-delay:.14s}.d2{transition-delay:.28s}

/* Button */
.btn{display:inline-flex;font-family:var(--sans);font-size:14px;font-weight:600;
  padding:14px 32px;background:var(--text);color:var(--bg);border-radius:var(--r);transition:transform .2s cubic-bezier(.25,.46,.45,.94),opacity .2s}
.btn:hover{opacity:.9;transform:scale(1.022)}
.btn:active{transform:scale(0.978)}

/* ═══ NAV ═══ */
.nav{position:fixed;top:0;left:0;right:0;z-index:200;display:flex;align-items:center;justify-content:space-between;
  padding:0 var(--gut);height:54px;background:rgba(245,243,237,.8);
  backdrop-filter:blur(16px) saturate(160%);-webkit-backdrop-filter:blur(16px) saturate(160%);border-bottom:1px solid var(--border-s)}
.nav-left{display:flex;align-items:baseline;gap:0}
.nav-wordmark{font-family:var(--sans);font-size:16px;font-weight:600;color:var(--text);letter-spacing:.06em;text-transform:uppercase}
.nav-sep{font-family:var(--sans);font-size:32px;font-weight:600;color:var(--accent);margin-left:0;display:inline-block;animation:dotIn .6s .3s cubic-bezier(.16,1,.3,1) both}
/* Right-side cluster: language toggle + primary CTA */
.nav-right{display:flex;align-items:center;gap:14px}
/* Language toggle — matches page bg instead of standing out as a pill.
   Sits transparently right of the CTA so users can't miss it. */
.nav-lang{
  display:inline-flex;align-items:center;gap:5px;
  padding:5px 8px;
  font-family:var(--sans);font-size:11px;font-weight:600;letter-spacing:.08em;
  color:var(--text3);text-transform:uppercase;
  background:transparent;border:none;border-radius:99px;
  transition:color .15s;
}
.nav-lang:hover{color:var(--text)}
.nav-lang svg{flex-shrink:0;opacity:.7}
@keyframes dotIn{from{opacity:0;transform:scale(0)}to{opacity:.7;transform:scale(1)}}
.nav-pricing{font-family:var(--sans);font-size:11px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--text);padding:8px 6px;transition:opacity .15s ease}
.nav-pricing:hover{opacity:.65;color:var(--text)}
.nav-cta{font-size:11px;font-weight:600;letter-spacing:.05em;text-transform:uppercase;padding:8px 18px;background:var(--text);color:var(--bg);border-radius:var(--r);transition:transform .2s cubic-bezier(.25,.46,.45,.94)}
.nav-cta:hover{transform:scale(1.022);color:var(--bg)}
.nav-cta:active{transform:scale(0.978)}

/* ═══ GLOBE SCROLL CONTAINER ═══
   Total height = 200vh (100vh hero + 100vh zoom section)
   Canvas is sticky so it persists visually across both
   ═══════════════════════════════ */
.globe-wrap{
  position:relative;
  background:var(--bg);
  z-index:1;
}
.globe-spacer{
  height:140vh; /* scroll distance for Germany zoom after first 100vh */
}
/* Globe config popup */
.globe-config-toggle{
  position:fixed;top:64px;right:var(--gut);z-index:150;
  width:36px;height:36px;border-radius:50%;border:1px solid var(--border-s);
  background:var(--surface);box-shadow:var(--shadow);cursor:pointer;
  display:flex;align-items:center;justify-content:center;color:var(--text3);
  opacity:0;transition:opacity .3s,background .2s;
}
.globe-config-toggle:hover{background:var(--bg2);color:var(--text)}
.globe-config-toggle svg{width:16px;height:16px}
.globe-config{
  position:fixed;top:108px;right:var(--gut);z-index:150;
  width:280px;max-height:calc(100vh - 128px);overflow-y:auto;
  background:var(--surface);border:1px solid var(--border-s);
  border-radius:var(--r-lg);padding:20px;box-shadow:var(--shadow);
  opacity:0;pointer-events:none;transform:translateY(-8px);
  transition:opacity .2s,transform .2s;
}
.globe-config.open{opacity:1;pointer-events:auto;transform:none}
.globe-config h4{font-family:var(--sans);font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.1em;color:var(--text3);margin-bottom:16px}
.gc-field{margin-bottom:14px}
.gc-field:last-child{margin-bottom:0}
.gc-field label{display:flex;align-items:center;justify-content:space-between;font-size:12px;color:var(--text2);margin-bottom:6px}
.gc-field label span{font-family:var(--mono);font-size:11px;color:var(--accent);min-width:36px;text-align:right}
.gc-field input[type=range]{
  width:100%;height:4px;-webkit-appearance:none;appearance:none;
  background:var(--border-s);border-radius:2px;outline:none;
}
.gc-field input[type=range]::-webkit-slider-thumb{
  -webkit-appearance:none;width:14px;height:14px;border-radius:50%;
  background:var(--accent);cursor:pointer;border:2px solid var(--surface);
  box-shadow:0 1px 4px rgba(0,0,0,.15);
}

#globe{
  position:sticky;
  top:0;
  width:100%;
  height:100vh;
  z-index:1;
}

/* Hero overlay — absolutely positioned in the first 100vh.
   Sits over the upper-middle of the globe so the text overlaps the
   sphere itself (gives the heading more visual weight against the
   line-art globe), while still leaving clearance above the orange
   Germany marker that renders near the equator. */
.hero-overlay{
  position:fixed;top:0;left:0;right:0;height:100vh;z-index:10;
  display:flex;flex-direction:column;align-items:center;justify-content:flex-start;
  text-align:center;pointer-events:none;padding:clamp(180px,24vh,320px) var(--gut) 0;
  transition:opacity .05s linear;
}
.hero-overlay>*{pointer-events:auto}
/* Eyebrow: uniform across hero / value / workflow / use-case.
   12px sans, weight 600, .14em uppercase spacing, accent color. */
.hero-eyebrow{font-family:var(--sans);font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:.14em;color:var(--accent);margin-bottom:16px}
.hero-overlay h1{
  font-family:var(--serif);font-size:clamp(40px,6.5vw,76px);font-weight:300;
  line-height:1.04;letter-spacing:-.035em;margin-bottom:24px;
  text-shadow:0 0 80px var(--bg),0 0 160px var(--bg);
}
.hero-overlay h1 em{font-style:italic;color:var(--accent)}
/* Sub-text: uniform clamp across hero / brand / value / use-case sections. */
.hero-sub{font-family:var(--sans);font-size:clamp(15px,1.35vw,17px);color:var(--text2);line-height:1.65;max-width:460px;margin-bottom:28px;
  text-shadow:0 0 40px var(--bg),0 0 80px var(--bg)}

/* Hero card */
.hero-card{
  position:fixed;bottom:clamp(64px,9vh,110px);left:50%;transform:translateX(-50%);z-index:10;
  width:min(440px,88vw);background:rgba(255,255,255,.88);backdrop-filter:blur(14px);
  border:1px solid var(--border-s);border-radius:var(--r-lg);padding:20px 24px 16px;box-shadow:var(--shadow);
  transition:opacity .05s linear;
}
.hc-region{font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.1em;color:var(--text3);display:block;margin-bottom:6px}
.hc-quote{font-family:var(--serif);font-size:17px;font-weight:400;line-height:1.45;letter-spacing:-.01em;display:inline}
.hc-cursor{font-weight:300;color:var(--accent);animation:blink .9s step-end infinite;margin-left:1px}
@keyframes blink{50%{opacity:0}}
.hc-meta{display:block;font-size:11px;color:var(--text3);margin-top:8px}
.hc-dots{display:flex;gap:6px;margin-top:10px}
.hc-dot{width:6px;height:6px;border-radius:50%;background:var(--border);transition:background .3s}
.hc-dot.on{background:var(--accent)}

/* Scroll hint */
.scroll-hint{position:fixed;bottom:18px;left:50%;transform:translateX(-50%);z-index:10;color:var(--text3);animation:bob 2.4s ease-in-out infinite}
.scroll-line{animation:sdash 2.4s ease-in-out infinite}
@keyframes bob{0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(5px)}}
@keyframes sdash{0%,100%{opacity:1}50%{opacity:.3}}

/* ═══ GERMANY FOCUS CONTENT ═══
   Appears on the left as globe zooms right
   ═══════════════════════════════ */
.germany-content{
  position:fixed;top:0;left:0;width:55%;height:100vh;z-index:10;
  display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;
  transition:opacity .05s linear;
}
.germany-content::before{
  content:'';position:absolute;inset:0;z-index:-1;
  background:linear-gradient(to right, var(--bg) 50%, rgba(245,243,237,0.85) 75%, rgba(245,243,237,0) 100%);
}
.gc-inner{
  padding:0 var(--gut) 0 clamp(40px,6vw,80px);
  max-width:520px;
}
.gc-eyebrow{
  font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.12em;
  color:var(--accent);display:block;margin-bottom:14px;
}
.gc-inner h2{
  font-family:var(--serif);font-size:clamp(28px,3.5vw,42px);font-weight:300;
  line-height:1.12;letter-spacing:-.025em;margin-bottom:16px;
}
.gc-sub{
  font-size:15px;color:var(--text2);line-height:1.7;margin-bottom:32px;
}

/* ═══ Meet SURFACER brand statement (Hyros-style) inside germany-content ═══ */
.gc-inner-brand{display:flex;flex-direction:column}
.gc-meet{
  display:block;font-family:var(--serif);font-size:clamp(26px,2.8vw,42px);
  font-weight:300;font-style:italic;color:var(--text2);letter-spacing:-.015em;
  line-height:1;margin-bottom:4px;
}
.gc-brand{
  font-family:var(--serif);font-size:clamp(68px,10vw,132px);font-weight:400;
  letter-spacing:-.04em;line-height:.88;color:var(--text);
  margin:0 0 22px 0;
}
.gc-brand-sub{
  font-family:var(--sans);font-size:clamp(15px,1.35vw,17px);color:var(--text2);line-height:1.65;
  margin-bottom:22px;max-width:460px;
}
/* US-vs-DACH differentiator body — supports the brand statement with
   the concrete delta vs Apollo/ZoomInfo. */
.gc-diff{
  font-family:var(--sans);font-size:clamp(15px,1.35vw,17px);color:var(--text2);line-height:1.65;
  margin:0 0 18px 0;max-width:520px;
}
.gc-diff-lead{
  display:block;color:var(--text);font-weight:600;letter-spacing:-.005em;margin-bottom:4px;
}
/* Closing trust line — smaller, lower contrast, italic-feel via serif. */
.gc-closing{
  font-family:var(--serif);font-style:italic;font-size:clamp(14px,1.2vw,16px);
  color:var(--text3);line-height:1.5;margin:0 0 28px 0;
}
.gc-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:4px}
.btn-pill{border-radius:99px;padding:13px 28px}
.btn-outline{
  background:transparent;color:var(--text);border:1px solid var(--border);
}
.btn-outline:hover{border-color:var(--text);opacity:1}

/* Tighten on shorter viewports so everything fits inside germany-content fade area */
@media(max-height:760px){
  .gc-brand{font-size:clamp(56px,8vw,110px)}
  .gc-meet{font-size:clamp(22px,2.4vw,36px)}
  .gc-brand-sub{margin-bottom:16px}
  .gc-diff{margin-bottom:14px}
  .gc-closing{margin-bottom:20px}
}
@media(max-width:900px){
  .gc-brand{font-size:clamp(52px,11vw,88px)}
  .gc-brand-sub{font-size:14px}
  .btn-pill{padding:12px 22px;font-size:13px}
}
.gc-sources{display:flex;flex-direction:column;gap:16px}
.gc-source{
  display:flex;flex-direction:column;gap:2px;
  padding-left:16px;border-left:2px solid var(--border);
  transition:border-color .3s;
}
.gc-source:hover{border-color:var(--accent)}
.gc-source b{font-size:14px;font-weight:600;letter-spacing:-.01em}
.gc-source span{font-size:12px;color:var(--text3);line-height:1.5}

/* ═══ SHARED SECTION UTILITIES ═══ */
.section-inner{max-width:var(--max);margin:0 auto;padding:clamp(100px,14vw,200px) var(--gut)}
.section-alt{background:rgb(21,20,18);color:#f5f1e8}
.section-alt h2{color:#f5f1e8}
.section-alt p{color:rgba(255,255,255,.55)}
.section-alt .eyebrow{color:var(--accent)}
.eyebrow{font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.12em;color:var(--accent);display:block;margin-bottom:16px}
.d3{transition-delay:.42s}.d4{transition-delay:.56s}
.anim-fade{opacity:0;transition:opacity 1s cubic-bezier(.16,1,.3,1)}.anim-fade.in{opacity:1}

/* ═══ SECTION 1 — PROBLEM STATEMENT ═══ */
.s-problem{background:var(--bg);position:relative;z-index:2}
.s-problem .section-inner{display:grid;grid-template-columns:1.2fr 1fr;gap:clamp(40px,6vw,80px);align-items:start;padding-bottom:clamp(70px,10vw,140px)}
.s-problem h2{
  font-family:var(--serif);font-size:clamp(32px,4.5vw,58px);font-weight:300;
  line-height:1.08;letter-spacing:-.035em;
}
.s-problem h2 .uline{
  /* Em-relative offset + thickness so the line scales with font-size
     instead of crashing into descenders on larger clamp()ed headings.
     skip-ink makes the underline break around glyph descenders (g/y/p)
     — some contexts override Chrome/Safari's default, so we set it
     explicitly here. */
  text-decoration:underline;text-decoration-color:rgb(21,20,18);
  text-underline-offset:0.18em;text-decoration-thickness:0.04em;
  text-decoration-skip-ink:auto;
}
.s-problem .problem-body{padding-top:clamp(8px,2vw,24px)}
.s-problem .problem-body p{font-size:clamp(15px,1.4vw,18px);color:var(--text2);line-height:1.75;max-width:420px}
.stat-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:48px}
/* Grid stretches siblings to the tallest card, so min-height instead of
   a fixed height lets longer translations (German compound words!) grow
   the block without clipping descriptions. */
.stat-card{
  background:rgb(21,20,18);color:#f5f3ed;border:1px solid rgba(255,255,255,.06);border-radius:var(--r-lg);
  padding:clamp(24px,3vw,36px) clamp(28px,3.5vw,36px);
  display:flex;flex-direction:column;min-height:280px;
}
.stat-card .stat-label{font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.08em;color:rgba(255,255,255,.4);margin-bottom:16px}
/* Number sits at a fixed offset from the top of the card (not flex-end of
   remaining space). Desc is pushed to the card's bottom via margin-top:auto.
   Combined: all numbers across all cards land at the same y-coordinate
   regardless of how long each description runs. */
.stat-card .stat-num{
  font-family:var(--serif);font-size:clamp(40px,5vw,64px);font-weight:300;
  color:#f5f3ed;letter-spacing:-.03em;line-height:1;
  min-width:3ch;margin-top:8px;
}
.stat-card .stat-desc{font-size:14px;color:rgba(255,255,255,.55);line-height:1.55;padding-top:20px;margin-top:20px;border-top:1px solid rgba(255,255,255,.08);min-height:4.5em}
.stat-sources{font-size:11px;color:var(--text3);margin-top:14px;line-height:1.6}
.stat-sources sup{font-size:9px;margin-right:1px}

/* ═══ VALUE SECTION (replaces problem, Hyros-inspired split layout) ═══ */
.s-value{background:var(--bg);position:relative;z-index:2;overflow:hidden}
.s-value .section-inner{position:relative;z-index:1;max-width:var(--max);margin:0 auto;padding-top:clamp(90px,11vw,160px);padding-bottom:clamp(90px,11vw,160px);padding-left:var(--gut);padding-right:var(--gut)}
.s-value-map{
  /* The canvas extends up into the tail of globe-wrap, so the decorative
     strokes start behind where the globe's last visible strokes end.
     A long top fade blends them into the page background gradually. */
  position:absolute;left:0;right:0;top:0;height:100%;
  z-index:0;pointer-events:none;opacity:.9;
  -webkit-mask-image:linear-gradient(to bottom,
    transparent 0%,
    rgba(0,0,0,.08) 8%,
    rgba(0,0,0,.28) 16%,
    rgba(0,0,0,.6) 26%,
    #000 38%,
    #000 76%,
    rgba(0,0,0,.4) 90%,
    transparent 100%);
          mask-image:linear-gradient(to bottom,
    transparent 0%,
    rgba(0,0,0,.08) 8%,
    rgba(0,0,0,.28) 16%,
    rgba(0,0,0,.6) 26%,
    #000 38%,
    #000 76%,
    rgba(0,0,0,.4) 90%,
    transparent 100%);
}
.val-grid{display:grid;grid-template-columns:1fr 1.15fr;gap:clamp(40px,6vw,96px);align-items:center}
.val-left{max-width:480px}
.val-title{
  font-family:var(--serif);font-size:clamp(36px,4.8vw,60px);font-weight:300;
  line-height:1.04;letter-spacing:-.035em;color:var(--text);margin-bottom:22px;
}
.val-sub{font-family:var(--sans);font-size:clamp(15px,1.35vw,17px);color:var(--text2);line-height:1.65;margin-bottom:32px}
.val-cta{align-self:flex-start}
.val-right{position:relative}
.val-card{
  position:relative;background:var(--bg);
  border:1px solid var(--border-s);border-radius:20px;
  padding:clamp(28px,3.5vw,44px);
}

.val-bullets{list-style:none;display:flex;flex-direction:column;gap:18px}
.val-bullets li{display:flex;align-items:flex-start;gap:14px}
.val-icon{
  flex-shrink:0;width:32px;height:32px;display:flex;align-items:center;justify-content:center;
  background:var(--accent-bg);color:var(--accent);border-radius:8px;
}
.val-icon svg{width:17px;height:17px}
.val-text{
  font-size:15px;font-weight:500;color:var(--text);
  line-height:1.45;padding-top:5px;letter-spacing:-.005em;
}
.val-divider{height:1px;background:var(--border-s);margin:clamp(22px,2.8vw,34px) 0}
.val-highlight{display:flex;align-items:center;gap:16px}
.val-highlight-icon{
  flex-shrink:0;width:52px;height:52px;
  background:var(--bg);border:1px solid var(--border-s);border-radius:10px;
  display:flex;align-items:center;justify-content:center;color:var(--text);
}
.val-highlight-icon svg{width:22px;height:22px}
.val-highlight-text{
  font-size:14px;color:var(--text2);line-height:1.55;
}
.val-highlight-text strong{color:var(--text);font-weight:600}
@media(max-width:900px){
  .val-grid{grid-template-columns:1fr;gap:36px}
  .val-title{font-size:clamp(32px,7vw,42px)}
}

/* ═══ INLINE CTA (reused across mid-page CTAs) ═══ */
.inline-cta{
  display:inline-flex;align-items:center;gap:6px;
  margin-top:36px;font-family:var(--sans);font-size:14px;font-weight:600;
  color:var(--accent);letter-spacing:-.005em;
  transition:gap .2s ease;
}
.inline-cta svg{transition:transform .2s ease}
.inline-cta:hover{gap:10px}
.inline-cta:hover svg{transform:translateX(2px)}
.s-problem .inline-cta{margin-top:32px}
.section-alt .inline-cta{color:var(--accent-l)}

/* ═══ USE-CASE MATRIX — Hyros-style 2x2 asymmetric grid ═══
   Row 1 = [wide | small], Row 2 = [small | wide]; mirrors the rhythm of
   Hyros "Used by the best" without borrowing its rainbow gradient. */
.s-usecase{background:var(--bg);position:relative;z-index:2}
.s-usecase .section-inner{max-width:var(--max);margin:0 auto;padding-top:clamp(80px,10vw,140px);padding-bottom:clamp(80px,10vw,140px);padding-left:var(--gut);padding-right:var(--gut)}

.uc-header{
  display:grid;grid-template-columns:1fr 1fr;gap:clamp(24px,4vw,72px);
  align-items:end;margin-bottom:clamp(40px,5vw,64px);
}
.uc-head-left{display:flex;flex-direction:column;gap:12px}
.uc-eyebrow{
  font-family:var(--sans);font-size:12px;font-weight:600;
  letter-spacing:.14em;text-transform:uppercase;color:var(--accent);
}
.uc-title{
  font-family:var(--serif);font-size:clamp(36px,4.8vw,60px);font-weight:300;
  line-height:1.04;letter-spacing:-.035em;color:var(--text);margin:0;
  max-width:640px;
}
.uc-sub{
  font-family:var(--sans);font-size:clamp(15px,1.35vw,17px);color:var(--text2);line-height:1.65;
  max-width:440px;margin:0;justify-self:end;
}

/* Hyros-style asymmetric grid: 3 cols, cards span 1 or 2. */
.uc-hy-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:clamp(16px,1.8vw,22px);
}
.uc-hy-wide{grid-column:span 2}
.uc-hy-small{grid-column:span 1}

.uc-hy-card{
  position:relative;display:flex;flex-direction:column;justify-content:space-between;
  gap:24px;padding:clamp(24px,2.5vw,32px);
  background:var(--surface);border:1px solid var(--border-s);
  border-radius:16px;color:var(--text);min-height:240px;
  transition:transform .3s cubic-bezier(.16,1,.3,1),border-color .3s,box-shadow .3s;
}
.uc-hy-card:hover{
  transform:translateY(-3px);
  border-color:rgba(201,122,42,.3);
  box-shadow:0 14px 34px -14px rgba(26,23,20,.14);
}

/* Body wrapper (everything above the attribution row) */
.uc-hy-body{flex:1;display:flex;flex-direction:column;gap:18px}

/* Stat block — big serif number + label */
.uc-hy-stat{display:flex;flex-direction:column;gap:4px}
.uc-hy-stat-num{
  font-family:var(--serif);font-size:clamp(46px,5vw,68px);font-weight:300;
  line-height:0.95;letter-spacing:-.04em;color:var(--text);
}
.uc-hy-stat-label{
  font-family:var(--sans);font-size:13px;font-weight:500;
  color:var(--text3);letter-spacing:-.005em;
}

/* Headline (wide card variant) — serif, generous scale */
.uc-hy-headline{
  font-family:var(--serif);font-size:clamp(30px,3.4vw,46px);font-weight:300;
  line-height:1.05;letter-spacing:-.028em;color:var(--text);margin:0;
}
.uc-hy-headline em{font-style:italic;color:var(--accent)}

/* Quote / body copy (shared by small cards & under stats/headlines) */
.uc-hy-quote{
  font-family:var(--sans);font-size:14px;
  color:var(--text2);line-height:1.6;margin:0;
}

/* Attribution row at card bottom */
.uc-hy-attr{
  display:flex;align-items:center;gap:12px;
  padding-top:18px;border-top:1px solid var(--border-s);
}
.uc-hy-avatar{
  width:40px;height:40px;flex-shrink:0;
  background:var(--bg);border:1px solid var(--border-s);border-radius:10px;
  display:flex;align-items:center;justify-content:center;color:var(--accent);
}
.uc-hy-avatar svg{width:18px;height:18px}
.uc-hy-attr-text{display:flex;flex-direction:column;gap:2px;min-width:0}
.uc-hy-name{
  font-family:var(--sans);font-size:14px;font-weight:600;
  color:var(--text);letter-spacing:-.005em;
}
.uc-hy-url{
  font-family:var(--sans);font-size:12px;font-weight:500;color:var(--text3);
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}

@media (max-width:960px){
  .uc-hy-grid{grid-template-columns:1fr}
  .uc-hy-wide,.uc-hy-small{grid-column:auto}
  .uc-hy-card{min-height:0}
}
@media (max-width:640px){
  .uc-header{grid-template-columns:1fr;gap:18px;align-items:start}
  .uc-sub{justify-self:start;max-width:100%}
}

/* ═══ PRICING SNAPSHOT ═══ */
.s-pricing{background:var(--bg);position:relative;z-index:2;border-top:1px solid var(--border-s)}
.s-pricing .section-inner{
  padding-top:clamp(70px,9vw,120px);padding-bottom:clamp(70px,9vw,120px);
  max-width:720px;text-align:center;
}
.pricing-title{
  font-family:var(--serif);font-size:clamp(32px,4.2vw,52px);font-weight:300;
  line-height:1.1;letter-spacing:-.03em;color:var(--text);margin-bottom:clamp(24px,3vw,36px);
}
.pricing-bullets{
  list-style:none;display:flex;flex-wrap:wrap;justify-content:center;
  gap:clamp(16px,2.5vw,32px);margin-bottom:clamp(32px,4vw,48px);
  font-size:14px;color:var(--text2);
}
.pricing-bullets li{
  display:inline-flex;align-items:center;gap:6px;
}
.pricing-bullets li svg{color:var(--accent);flex-shrink:0}
.pricing-actions{
  display:flex;flex-wrap:wrap;justify-content:center;align-items:center;
  gap:clamp(16px,2.5vw,28px);
}
.pricing-actions .inline-cta{margin-top:0}
@media (max-width: 560px){
  .pricing-bullets{flex-direction:column;gap:12px}
  .pricing-actions{flex-direction:column;gap:16px}
}

/* ═══ SIGNAL SCANNER — slim dark bar ═══ */
.s-scanner{position:relative;z-index:2;padding:0 var(--gut);margin:-40px auto 0;max-width:var(--max)}
.scanner-bar{
  display:flex;align-items:center;justify-content:space-between;gap:clamp(24px,4vw,48px);
  background:rgb(21,20,18);border-radius:var(--r-xl);
  padding:clamp(28px,4vw,44px) clamp(32px,4vw,48px);
  border:1px solid rgba(255,255,255,.06);
}
.scanner-label{
  font-family:var(--serif);font-size:clamp(18px,2.5vw,28px);font-weight:300;
  color:#f5f1e8;white-space:nowrap;flex-shrink:0;
}
/* Scanner command bar (dark section) */
.scanner-cmd{
  display:flex;align-items:center;gap:0.5rem;flex:1;max-width:460px;
  padding:0.4rem 0.4rem 0.4rem 1.1rem;
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.06);
  border-radius:var(--r-lg);transition:border-color .2s ease;
}
.scanner-cmd:focus-within{border-color:rgba(255,255,255,.15)}
.scanner-cmd-input{
  flex:1;border:none;background:none;color:#f5f1e8;
  font-family:var(--sans);font-size:15px;padding:0.45rem 0;outline:none;min-width:0;
}
.scanner-cmd-input::placeholder{color:rgba(255,255,255,.35)}
.scanner-cmd-btn{
  display:inline-flex;align-items:center;justify-content:center;
  width:2.4rem;height:2.4rem;padding:0;flex-shrink:0;
  background:var(--accent);color:#fff;border:none;border-radius:var(--r);
  cursor:pointer;transition:transform .2s cubic-bezier(.25,.46,.45,.94);
}
.scanner-cmd-btn:hover{transform:scale(1.06)}
.scanner-cmd-btn:active{transform:scale(0.94)}
.scanner-cmd-btn:disabled{opacity:.5;cursor:default}
.scanner-cmd-btn svg{width:1.1rem;height:1.1rem}
/* Results */
.scanner-results{margin-top:20px;text-align:left;padding:0}
.scanner-empty{text-align:center;color:var(--text3);font-size:14px;padding:24px 0}
.scanner-card{
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:var(--r-lg);
  padding:28px 32px;margin-bottom:16px;color:#f5f1e8;
  animation:scannerIn .4s ease both;
}
@keyframes scannerIn{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:none}}
.scanner-card-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px}
.scanner-company{font-family:var(--serif);font-size:20px;font-weight:500}
.scanner-domain{font-size:12px;color:var(--text3)}
.scanner-meta{display:flex;gap:16px;font-size:12px;color:var(--text3);margin-bottom:20px;flex-wrap:wrap}
.scanner-meta span{display:flex;align-items:center;gap:4px}
.scanner-signals{display:flex;flex-direction:column;gap:12px}
.scanner-signal{
  display:flex;align-items:flex-start;gap:12px;padding:12px 16px;
  background:var(--bg);border-radius:var(--r);border-left:3px solid var(--accent);
}
.scanner-signal-type{
  font-size:9px;font-weight:600;text-transform:uppercase;letter-spacing:.08em;
  color:var(--accent);padding:2px 8px;background:var(--accent-bg);border-radius:10px;
  white-space:nowrap;flex-shrink:0;margin-top:2px;
}
.scanner-signal-text{font-size:14px;color:var(--text);line-height:1.4}
.scanner-signal-detail{font-size:12px;color:var(--text3);margin-top:2px}
.scanner-jobs{margin-top:16px;padding-top:16px;border-top:1px solid var(--border-s)}
.scanner-jobs-title{font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.08em;color:var(--text3);margin-bottom:10px}
.scanner-job{display:flex;justify-content:space-between;align-items:center;padding:6px 0;font-size:13px}
.scanner-job-title{font-weight:500}
.scanner-job-meta{color:var(--text3);font-size:11px}
.scanner-cta{text-align:center;margin-top:24px;font-size:13px;color:var(--text3)}
.scanner-cta a{color:var(--accent);font-weight:600}

/* ═══ SECTION 2 — WORKFLOW (5-tab Hyros-style explainer) ═══
   Scroll-expand: starts inset with rounded corners, expands to full-bleed
   as the section enters the viewport. JS (updateWorkflowExpand) tweens
   the margin/radius inline so the animation stays in sync with scroll. */
.s-workflow{
  background:rgb(21,20,18);color:#f5f1e8;position:relative;z-index:2;
  margin:0 clamp(24px,8vw,160px);border-radius:24px;
  transition:margin .05s linear,border-radius .05s linear;
  /* Section is now a regular-height block — no scrolljack pin. The active
     step still cycles through the 5 states as the section passes through
     the viewport, driven by JS based on section.getBoundingClientRect().
     Removed the prior `min-height:calc(6 * 100vh)` so users no longer feel
     the page "lock" when the section enters. */
}
.wf-sticky{
  display:block;
}
.s-workflow .section-inner{padding-top:clamp(32px,5vw,72px);padding-bottom:clamp(32px,5vw,72px);width:100%}
@media(prefers-reduced-motion:reduce){
  .s-workflow{margin:0;border-radius:0;transition:none}
  .wf-sticky{display:block}
}
.wf-grid{display:grid;grid-template-columns:minmax(340px,0.85fr) 1.15fr;gap:clamp(40px,6vw,96px);align-items:start}
.wf-left{display:flex;flex-direction:column}
/* Unified eyebrow — matches .hero-eyebrow and .uc-eyebrow for
   consistent section-label voice across the whole page. */
.s-workflow .eyebrow{font-family:var(--sans);font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:.14em;color:var(--accent);margin-bottom:14px}
.wf-title{
  font-family:var(--serif);font-size:clamp(36px,4.8vw,60px);font-weight:300;
  line-height:1.04;letter-spacing:-.035em;color:#f5f1e8;margin-bottom:clamp(32px,4vw,48px);
}

/* Tab list */
.wf-tabs{display:flex;flex-direction:column;gap:6px;margin-bottom:32px}
.wf-tab{
  position:relative;display:block;width:100%;text-align:left;
  padding:18px 0 18px 22px;background:transparent;border:none;cursor:pointer;
  font-family:var(--sans);color:rgba(245,241,232,.5);
  transition:color .25s ease;
}
.wf-tab-bar{
  position:absolute;left:0;top:16px;bottom:16px;width:2px;
  background:rgba(245,241,232,.15);border-radius:2px;overflow:hidden;
  transition:width .25s;
}
.wf-tab-bar::after{
  content:'';position:absolute;left:0;right:0;top:0;
  height:calc(var(--p, 0) * 100%);
  background:#f5f1e8;border-radius:2px;
}
.wf-tab-label{
  display:block;font-family:var(--serif);font-size:20px;font-weight:400;
  letter-spacing:-.01em;line-height:1.2;color:rgba(245,241,232,.55);
  transition:color .25s ease;
}
/* Description: animate from 0 to natural height using the
   grid-template-rows: 0fr → 1fr trick. This avoids the layout
   "jump" that max-height-based animations produce when the
   description's actual content height differs across tabs. */
.wf-tab-desc{
  display:grid;grid-template-rows:0fr;opacity:0;max-width:420px;
  transition:grid-template-rows .35s ease,opacity .25s ease,margin .25s ease;
}
.wf-tab-desc-text{
  min-height:0;overflow:hidden;
  font-size:14px;line-height:1.55;color:rgba(245,241,232,.55);
}
.wf-tab.is-active .wf-tab-bar{width:3px}
.wf-tab.is-active .wf-tab-label{color:#f5f1e8}
.wf-tab.is-active .wf-tab-desc{grid-template-rows:1fr;opacity:1;margin-top:10px}
.wf-tab:focus-visible{outline:2px solid var(--accent);outline-offset:3px;border-radius:var(--r)}

/* Foot (CTA + asterisk) */
.wf-foot{display:flex;flex-direction:column;gap:16px;margin-top:8px}
.wf-cta{
  display:inline-flex;align-items:center;gap:8px;align-self:flex-start;
  padding:12px 22px;border-radius:99px;background:#f5f1e8;color:rgb(21,20,18);
  font-family:var(--sans);font-size:14px;font-weight:600;
  transition:transform .2s cubic-bezier(.25,.46,.45,.94);
}
.wf-cta:hover{transform:scale(1.03);color:rgb(21,20,18)}
.wf-cta svg{transition:transform .2s}
.wf-cta:hover svg{transform:translateX(2px)}
.wf-footnote{font-size:12px;color:rgba(245,241,232,.4);line-height:1.55;max-width:360px}

/* Right-side panel with screenshots */
.wf-right{position:relative}
/* Panel is now a transparent container — no frame, no background, no shadow.
   The shot images themselves carry the visual weight with rounded corners. */
.wf-panel{
  position:relative;aspect-ratio:4/5;min-height:420px;
  background:transparent;border:none;
  overflow:visible;padding:0;
  box-shadow:none;
}
/* Desktop: cap panel height so the whole row fits inside the sticky viewport. */
@media (min-width: 901px){
  .wf-panel{max-height:calc(100vh - 160px);min-height:min(560px,calc(100vh - 200px))}
}
.wf-shot{
  /* Each shot fills the panel and is rounded into a clean card on the dark
     section background. All workflow images are captured on the Surfacer
     cream UI bg (~#EAE7E1 ≈ var(--bg)); we paint the same cream as the
     <img> element's own background so object-fit:contain's letterbox area
     matches the image content seamlessly — rounded corners then clip a
     uniform cream rectangle, not half-transparent letterbox. */
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:contain;object-position:center;
  background-color:var(--bg);
  border-radius:20px;
  overflow:hidden;
  opacity:0;pointer-events:none;transition:opacity .45s ease;
}
.wf-shot.is-active{opacity:1;pointer-events:auto}

/* Reduced motion — no fade, instant swap */
@media (prefers-reduced-motion: reduce){
  .wf-shot{transition:none}
  .wf-tab-desc{transition:none}
  .wf-tab-bar{transition:none}
}

/* ═══ Mobile workflow (≤1023px) — swipe-carousel of screenshots ═══
   Desktop layout (scroll-driven sticky pin, absolute stacked shots) is
   unusable on phones where each tab-slot would need a full viewport of
   scroll. On mobile we flatten the section and turn the .wf-panel into a
   horizontal scroll-snap carousel so the user can swipe through all 5
   shots smoothly. Tap a tab-label → existing JS scrolls the carousel to
   that shot. Swipe → JS updates the active tab (debounced 90ms). */
@media (max-width: 1023px){
  /* Unpin the sticky scroll-track — section flows normally. */
  .s-workflow{min-height:0 !important;margin:0 !important;border-radius:0 !important}
  .wf-sticky{position:static !important;min-height:0 !important;display:block !important}
  .s-workflow .section-inner{padding-top:clamp(60px,10vw,100px);padding-bottom:clamp(60px,10vw,100px)}
  .wf-grid{grid-template-columns:1fr;gap:32px;align-items:stretch}
  .wf-title{font-size:clamp(30px,7vw,42px);margin-bottom:24px}
  .wf-tab-desc{font-size:13px;line-height:1.5}
  /* Panel becomes a horizontal flex carousel with scroll-snap. */
  .wf-panel{
    position:relative;
    aspect-ratio:auto;min-height:0;max-height:none;height:auto;
    padding:0;overflow:visible;
    background:transparent;border:none;box-shadow:none;
    display:flex;flex-direction:row;
    overflow-x:auto;overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
    scrollbar-width:none;
    gap:12px;
  }
  .wf-panel::-webkit-scrollbar{display:none}
  .wf-shot{
    position:relative;
    flex:0 0 100%;
    inset:auto;
    width:100%;max-width:100%;height:auto;
    aspect-ratio:4/3;
    object-fit:contain;object-position:center;
    background-color:var(--bg);
    border-radius:20px;overflow:hidden;
    opacity:1 !important;pointer-events:auto;transition:none;
    scroll-snap-align:start;
  }
  /* .wf-right needs to not clip so the carousel can have edge peek */
  .wf-right{overflow:visible}
}

/* ═══ SECTION 3 — TABBED PRODUCT DEMO (legacy, kept for reference) ═══ */
.s-demo{background:rgb(21,20,18);color:#f5f1e8;position:relative;z-index:2}
.s-demo .section-inner{text-align:center}
.s-demo h2{
  font-family:var(--serif);font-size:clamp(28px,3.5vw,44px);font-weight:300;
  line-height:1.1;letter-spacing:-.025em;margin-bottom:12px;
}
.s-demo h2{color:#f5f1e8}
.s-demo>p,.s-demo .section-inner>p{font-size:clamp(14px,1.3vw,16px);color:rgba(255,255,255,.55);line-height:1.7;max-width:520px;margin:0 auto 40px}
.demo-wrap{position:relative;max-width:1100px;margin:0 auto}
/* Tab bar */
.demo-tabs{
  display:inline-flex;gap:4px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);
  border-radius:var(--r);padding:4px;margin-bottom:32px;
}
.demo-tab{
  font-family:var(--sans);font-size:13px;font-weight:500;
  padding:8px 20px;border:none;border-radius:3px;cursor:pointer;
  background:transparent;color:var(--text3);transition:all .2s;
}
.demo-tab.active{background:#f5f1e8;color:rgb(21,20,18)}
.demo-tab:hover:not(.active){background:rgba(255,255,255,.08);color:rgba(255,255,255,.7)}
/* Main card */
.demo-main{
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:var(--r-xl);
  overflow:hidden;text-align:left;
}
.demo-header{
  display:flex;align-items:center;justify-content:space-between;
  padding:20px 28px;border-bottom:1px solid rgba(255,255,255,.08);
}
.demo-date{font-size:14px;font-weight:500}
.demo-count{font-size:13px;color:var(--accent);font-weight:600}
/* Signal rows */
.demo-rows{padding:0}
.demo-row{
  display:grid;grid-template-columns:44px 1fr auto auto;gap:16px;align-items:center;
  padding:16px 28px;border-bottom:1px solid rgba(255,255,255,.06);
  transition:all .25s;cursor:default;
}
.demo-row:last-child{border-bottom:none}
.demo-row:hover{background:var(--accent-bg);padding-left:32px}
.demo-row:hover .row-score{transform:scale(1.1)}
.row-score{
  width:38px;height:38px;border-radius:50%;
  background:var(--accent);color:var(--surface);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--serif);font-size:14px;font-weight:500;
  transition:transform .2s;
}
.row-company{font-size:14px;font-weight:600;letter-spacing:-.01em}
.row-city{font-size:12px;color:var(--text3);margin-top:1px}
.row-signal{font-size:13px;color:var(--text2);line-height:1.5;grid-column:2}
.row-meta{display:flex;flex-direction:column;align-items:flex-end;gap:4px;white-space:nowrap}
.row-pill{
  font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.06em;
  padding:3px 10px;border-radius:12px;background:var(--accent-bg);color:var(--accent);
}
.row-time{font-size:11px;color:var(--text3)}
.demo-row.hidden{display:none}
/* Floating companion cards */
.demo-float{position:absolute;z-index:3}
.demo-float-left{
  top:80px;left:-60px;width:240px;transform:rotate(-1.5deg);
}
.demo-float-right{
  bottom:60px;right:-56px;width:220px;transform:rotate(1.5deg);
}
.float-card{
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);border-radius:var(--r-lg);
  padding:18px 20px;color:#f5f1e8;
}
.float-card-title{
  display:flex;align-items:center;gap:6px;
  font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.08em;
  color:rgba(255,255,255,.4);margin-bottom:10px;
}
.float-card-title svg{width:14px;height:14px;color:var(--accent)}
.float-card p{font-size:12px;color:var(--text2);line-height:1.6}
.float-card .fc-company{font-family:var(--serif);font-size:14px;font-weight:500;color:var(--text);margin-bottom:4px}
.float-card .fc-action{font-size:12px;color:var(--accent);font-weight:500;margin-top:8px}

/* ═══ SECTION 4 — DATA SOURCES (dark band) ═══ */
.s-network{background:rgb(21,20,18);color:#f5f1e8;position:relative;z-index:2}
/* Tighter inner padding than the default .section-inner (100-200px) so
   the dark band doesn't add excessive space before the CTA. */
.s-network .section-inner{padding-top:clamp(72px,9vw,120px);padding-bottom:clamp(72px,8vw,100px)}
.s-network .section-inner{display:flex;flex-direction:column}
.s-network-header{display:grid;grid-template-columns:1fr 1fr;gap:clamp(40px,5vw,80px);align-items:start;margin-bottom:clamp(48px,6vw,72px)}
.s-network .eyebrow{color:var(--accent)}
.s-network h2{
  font-family:var(--serif);font-size:clamp(32px,4.5vw,58px);font-weight:300;
  line-height:1.08;letter-spacing:-.035em;color:#f5f1e8;
}
.s-network h2 .uline{
  text-decoration:underline;text-decoration-color:#f5f1e8;
  text-underline-offset:0.18em;text-decoration-thickness:0.04em;
  text-decoration-skip-ink:auto;
}
.s-network .net-footer{margin-top:clamp(32px,4vw,48px)}
.s-network .net-footer .inline-cta{color:var(--accent-l);margin-top:0}
.s-network .net-footer .inline-cta:hover{color:var(--accent)}
.s-network .net-body{font-size:clamp(15px,1.4vw,18px);color:rgba(245,241,232,.68);line-height:1.75;padding-top:clamp(8px,2vw,24px)}
/* Source cards grid — cream cards float on the dark section band,
   picking up the same page-bg cream that the rest of the site uses. */
.source-cards{display:grid;grid-template-columns:repeat(5,1fr);gap:16px;margin-bottom:0}
.source-card{
  background:var(--bg);color:var(--text);
  border:1px solid transparent;border-radius:var(--r-lg);
  padding:22px 20px 24px;display:flex;flex-direction:column;min-height:200px;
  transition:transform .25s cubic-bezier(.16,1,.3,1),box-shadow .25s ease;
}
.source-card:hover{transform:translateY(-3px);box-shadow:0 8px 24px rgba(0,0,0,.25)}
.source-card .src-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.source-card .src-icon{
  width:38px;height:38px;border-radius:10px;
  background:var(--accent-bg);color:var(--accent);
  display:flex;align-items:center;justify-content:center;
}
.source-card .src-icon svg{width:20px;height:20px}
/* Update badge — small pill with a soft dot to suggest cadence visually */
.source-card .src-badge{
  display:inline-flex;align-items:center;gap:6px;
  font-size:10.5px;font-weight:600;letter-spacing:.04em;text-transform:uppercase;
  color:var(--text3);padding:4px 9px;border:1px solid var(--border-s);border-radius:99px;
  background:rgba(255,255,255,.5);
}
.source-card .src-dot{width:6px;height:6px;border-radius:50%;background:var(--text3)}
.source-card .src-badge-live{color:var(--accent);border-color:rgba(184,101,42,.25);background:var(--accent-bg)}
.source-card .src-dot-live{background:var(--accent);animation:srcDotPulse 1.6s ease-in-out infinite}
@keyframes srcDotPulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.55;transform:scale(.85)}}
.source-card .src-name{font-family:var(--serif);font-size:17px;font-weight:500;margin-bottom:6px;color:var(--text);letter-spacing:-.01em}
.source-card .src-name strong{color:var(--accent);font-weight:600;font-family:var(--sans);letter-spacing:-.02em}
.source-card .src-desc{font-size:13px;color:var(--text2);line-height:1.55;margin-bottom:auto}
/* Comparison rows */
.net-compare{display:flex;gap:clamp(24px,4vw,48px);flex-wrap:wrap}
.net-compare-row{display:flex;align-items:center;gap:10px;font-size:14px}
.net-check{color:var(--accent);font-weight:700;font-size:16px}
.net-x{color:var(--border);font-weight:400;font-size:14px}
.net-vs{color:var(--text3);font-size:12px;margin:0 4px}

/* ═══ SECTION 5 — SOCIAL PROOF / QUOTE ═══ */
.s-proof{background:rgb(21,20,18);color:#f5f1e8;position:relative;z-index:2;overflow:hidden}
.s-proof .section-inner{position:relative;text-align:center;max-width:860px}
.s-proof blockquote{
  font-family:var(--serif);font-size:clamp(22px,3vw,36px);font-weight:300;font-style:italic;
  line-height:1.4;letter-spacing:-.015em;margin-bottom:20px;
  border-left:3px solid var(--accent);padding-left:clamp(20px,3vw,32px);text-align:left;
}
.s-proof cite{
  display:block;text-align:left;padding-left:clamp(20px,3vw,32px);
  font-style:normal;font-size:14px;font-weight:500;color:rgba(255,255,255,.4);
}
.proof-metrics{display:flex;justify-content:center;gap:clamp(24px,4vw,56px);margin-top:clamp(48px,6vw,80px)}
.proof-metric{text-align:center}
.proof-metric .pm-num{
  font-family:var(--serif);font-size:clamp(28px,3vw,42px);font-weight:300;
  color:var(--accent);line-height:1;margin-bottom:6px;
}
.proof-metric .pm-label{font-size:12px;color:rgba(255,255,255,.4);text-transform:uppercase;letter-spacing:.06em;font-weight:500}
/* Floating metric cards */
.proof-float{
  position:absolute;z-index:2;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);border-radius:var(--r-lg);
  padding:16px 20px;text-align:center;
}
.pf-1{top:10%;right:-2%;transform:rotate(2deg)}
.pf-2{bottom:15%;left:-3%;transform:rotate(-1.5deg)}
.pf-3{top:5%;left:8%;transform:rotate(-2.5deg)}
.proof-float .pm-num{font-family:var(--serif);font-size:24px;font-weight:300;color:var(--accent);line-height:1;margin-bottom:4px}
.proof-float .pm-label{font-size:10px;color:rgba(255,255,255,.4);text-transform:uppercase;letter-spacing:.06em;font-weight:500}

/* ═══ SECTION 6 — CTA (DARK) ═══ */
.s-cta{background:rgb(21,20,18);color:var(--bg);position:relative;z-index:2}
.s-cta .section-inner{text-align:center;max-width:720px;display:flex;flex-direction:column;align-items:center;padding-top:clamp(90px,10vw,140px);padding-bottom:clamp(90px,10vw,140px)}
.s-cta .eyebrow{font-family:var(--sans);font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:.14em;color:var(--accent);margin-bottom:18px}
/* Headline — unified with .val-title / .uc-title / .wf-title: serif, 300,
   clamp(36px,4.8vw,60px), line-height 1.04, letter-spacing -.035em.
   Color stays cream (var(--bg)) so it reads on the dark CTA section bg. */
.s-cta h2{
  font-family:var(--serif);font-size:clamp(36px,4.8vw,60px);font-weight:300;
  line-height:1.04;letter-spacing:-.035em;margin-bottom:18px;color:var(--bg);
  max-width:740px;
}
.s-cta .cta-sub{font-family:var(--sans);font-size:clamp(15px,1.35vw,17px);color:rgba(245,243,237,.6);line-height:1.65;max-width:500px;margin:0 auto 28px}
.cta-bullets{
  list-style:none;display:flex;flex-wrap:wrap;justify-content:center;
  gap:clamp(14px,2vw,28px);margin-bottom:clamp(28px,3.5vw,44px);
  font-size:13px;color:rgba(245,243,237,.75);
}
.cta-bullets li{display:inline-flex;align-items:center;gap:6px}
.cta-bullets li svg{color:var(--accent);flex-shrink:0}
.cta-form{width:100%;max-width:480px}
.cta-cmd{
  display:flex;align-items:center;gap:0.5rem;
  padding:0.45rem 0.45rem 0.45rem 1.15rem;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);
  border-radius:12px;transition:border-color .2s ease,background .2s ease;
}
.cta-cmd:focus-within{border-color:rgba(255,255,255,.22);background:rgba(255,255,255,.08)}
.cta-cmd-input{
  flex:1;border:none;background:none;color:#f5f1e8;
  font-family:var(--sans);font-size:15px;padding:0.6rem 0;outline:none;min-width:0;letter-spacing:-0.005em;
}
.cta-cmd-input::placeholder{color:rgba(255,255,255,.35)}
/* White pill button with arrow — feels like the accent callout on Linear/
   Framer sites. Hover slides the arrow forward a few px rather than scaling. */
.cta-cmd-btn{
  display:inline-flex;align-items:center;justify-content:center;
  width:2.5rem;height:2.5rem;padding:0;flex-shrink:0;
  background:#fff;color:#1a1714;border:none;border-radius:9px;
  cursor:pointer;transition:background .2s ease,box-shadow .2s ease;
  box-shadow:0 1px 2px rgba(0,0,0,.25);
}
.cta-cmd-btn svg{width:1.05rem;height:1.05rem;transition:transform .2s cubic-bezier(.25,.46,.45,.94)}
.cta-cmd-btn:hover{background:#f5f3ed;box-shadow:0 2px 6px rgba(0,0,0,.3)}
.cta-cmd-btn:hover svg{transform:translateX(2px)}
.cta-cmd-btn:active{background:#ece8df}
.cta-cmd-btn:active svg{transform:translateX(0)}

/* ═══ FOOTER ═══ */
.ft{background:rgb(21,20,18);color:var(--text3);padding:48px var(--gut) 28px}
.ft-inner{max-width:var(--max);margin:0 auto}
.ft-top{display:flex;justify-content:space-between;padding-bottom:32px;border-bottom:1px solid rgba(255,255,255,.06);gap:40px;flex-wrap:wrap}
.ft-brand-block{}
.ft-brand{font-family:var(--serif);font-size:18px;color:var(--bg2);display:block;margin-bottom:4px}
.ft-tagline{font-size:12px;color:var(--text3)}
.ft-columns{display:flex;gap:clamp(32px,5vw,64px)}
.ft-col{display:flex;flex-direction:column;gap:10px}
.ft-col-title{font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.1em;color:rgba(255,255,255,.3);margin-bottom:4px}
.ft-col a{font-size:13px;color:var(--text3);transition:color .15s}
.ft-col a:hover{color:var(--bg2)}
.ft-bottom{display:flex;align-items:center;justify-content:space-between;padding-top:20px;flex-wrap:wrap;gap:14px}
.ft-copy{font-size:11px}
.ft-social{display:flex;gap:16px}
.ft-social a{color:var(--text3);transition:color .15s}
.ft-social a:hover{color:var(--bg2)}
.ft-social svg{width:16px;height:16px}

/* ═══ RESPONSIVE ═══ */
@media(max-width:900px){
  /* Safari iOS sometimes ignores overflow-x:hidden on body alone when
     children use negative margins / width > 100%. Adding it on html
     here only — NOT at the top of the file — so desktop's sticky
     canvas (#globe { position:sticky }) isn't affected by the new
     scrolling-context the rule would create on html. */
  html{overflow-x:hidden}

  /* Mobile hero choreography — same idea as desktop (sticky canvas,
     hero-overlay fades out as user scrolls, germany-content fades in
     at the zoomed-in state) but reshaped for portrait:
       - Less scroll budget (100vh vs desktop's 140vh) so the zoom
         doesn't feel tedious on a phone
       - Hero text pinned to the top-third (not centered) so it clears
         the Germany focus point of the map
       - Typewriter card + scroll hint hidden — too cramped, and the
         card was colliding with the CTA
       - Germany-content becomes a full-width CENTERED fixed overlay
         (not a left slide-in) — portrait doesn't have the horizontal
         budget for side-by-side. */
  /* Mobile uses the same scroll choreography as desktop — sticky globe,
     hero-overlay fades out, germany-content fades in at the zoomed-in
     state, then both translate up together as globe-wrap exits. */
  /* Center hero text over the globe on mobile (requested). Slight bias
     downward via padding-top so the text block sits a touch below dead
     center, floating over the Germany orange dot rather than above it. */
  .hero-overlay{
    position:fixed;height:100vh;
    justify-content:center;
    padding-top:clamp(40px,8vh,80px);
    padding-bottom:0;
  }
  .hero-card{display:none}
  .scroll-hint{display:none}
  /* Germany-content: same fixed-overlay treatment as desktop, just
     full-width instead of 55% (portrait doesn't have room for the
     side-by-side layout). The JS animates opacity + translate. */
  .germany-content{
    width:100%;
    padding:0 var(--gut,20px);
  }
  .germany-content::before{
    /* Soft radial so the text reads cleanly against the sticky globe. */
    background:radial-gradient(ellipse at center,
      rgba(245,243,237,0.92) 0%,
      rgba(245,243,237,0.82) 55%,
      rgba(245,243,237,0) 100%);
  }
  .germany-content .gc-inner{padding:0;max-width:460px;text-align:left}
  .germany-content .gc-inner h2{font-size:clamp(24px,6vw,30px);line-height:1.15}
  .germany-content .gc-sources{gap:10px}
  .germany-content .gc-source{padding-left:12px}

  .s-problem .section-inner{grid-template-columns:1fr}
  .s-signals-grid{grid-template-columns:1fr}
  /* Mindmap is hidden on mobile — the word cloud overlapped and clipped
     the right edge too aggressively, and the feature-list alone carries
     the section's message on small screens. */
  .mindmap-wrap{display:none}
  .demo-float{display:none}
  .s-network-header{grid-template-columns:1fr}
  .source-cards{grid-template-columns:1fr 1fr}
  .stat-cards{grid-template-columns:1fr}
  .demo-row{grid-template-columns:38px 1fr auto}
  .row-signal{grid-column:1/-1}
  .proof-float{display:none}
}
/* ── Mobile polish ─────────────────────────────────────────────
   Strategy: drop the card chrome (solid surfaces, borders, shadows)
   so content sits directly on the section bg. Heavy shadows on small
   screens read as visual noise — on mobile the layout itself does
   the grouping work, the chrome doesn't need to. */
@media(max-width:700px){
  /* Compact nav — language toggle loses its icon to save width */
  .nav-right{gap:8px}
  .nav-lang{padding:4px 6px;gap:0}
  .nav-lang svg{display:none}

  /* Signals: tighter vertical rhythm on small screens */
  .feature-list{gap:28px}

  /* DACH sources: one column, divider-list style — transparent cards on
     the dark s-network band, so text colors flip to the section's cream
     palette (otherwise the default --text/--text2 become invisible on
     the dark bg). Content stacks vertically so descriptions don't get
     squeezed off-screen by the 17px serif title. */
  .source-cards{grid-template-columns:1fr;gap:0;margin-bottom:48px}
  .source-card{
    background:transparent;border:none;border-radius:0;
    border-bottom:1px solid rgba(245,241,232,.1);
    padding:20px 0;min-height:auto;
    flex-direction:column;align-items:stretch;gap:10px;
  }
  .source-card:last-child{border-bottom:none}
  .source-card:hover{transform:none;box-shadow:none;border-color:transparent;border-bottom-color:rgba(245,241,232,.1)}
  .source-card .src-top{flex-direction:row;align-items:center;gap:12px;margin-bottom:2px;flex-shrink:0}
  .source-card .src-icon{width:34px;height:34px}
  .source-card .src-icon svg{width:17px;height:17px}
  .source-card .src-badge{
    font-size:10px;padding:3px 8px;
    color:rgba(245,241,232,.62);
    border-color:rgba(245,241,232,.14);
    background:rgba(255,255,255,.04);
  }
  .source-card .src-dot{background:rgba(245,241,232,.5)}
  .source-card .src-badge-live{
    color:var(--accent);
    border-color:rgba(184,101,42,.3);
    background:var(--accent-bg);
  }
  .source-card .src-dot-live{background:var(--accent)}
  .source-card .src-name{color:#f5f1e8;font-size:16px;margin-bottom:2px}
  .source-card .src-desc{color:rgba(245,241,232,.6);font-size:13.5px;line-height:1.55}

  /* Hero card: lighten + shrink so it sits above globe without clipping */
  .hero-card{width:min(420px,92vw);padding:16px 20px 12px;background:rgba(255,255,255,.92)}

  /* CTA input: cleaner — white button gets full visibility on dark bg */
  .cta-cmd{padding:0.35rem 0.35rem 0.35rem 1rem;background:rgba(255,255,255,.04)}

  /* Footer: slightly less padding on mobile */
  .ft{padding:40px var(--gut) 24px}
}
@media(max-width:600px){
  .hero-overlay h1{font-size:36px;margin-bottom:16px}
  .hero-sub{font-size:14px;margin-bottom:20px}
  .hero-overlay .btn{padding:12px 24px;font-size:14px;min-height:44px}
  .demo-tabs{flex-wrap:wrap;justify-content:center}
  .proof-metrics{flex-direction:column;align-items:center;gap:24px}
  .ft-top{flex-direction:column}
  .ft-columns{flex-wrap:wrap;gap:24px}
  .ft-bottom{flex-direction:column;text-align:center}

  /* CTA pill stays horizontal — just bump touch targets + prevent iOS zoom */
  .cta-cmd-input{font-size:16px;padding:0.7rem 0}
  .cta-cmd-btn{width:2.75rem;height:2.75rem}

  /* Stat cards: drop the 280px fixed height on phones, bump the number,
     tighten padding. Desktop alignment rules still apply via flex order. */
  .stat-card{min-height:auto;padding:22px}
  .stat-card .stat-num{font-size:56px;margin:6px 0 0}
  .stat-card .stat-desc{min-height:auto;padding-top:14px;margin-top:14px;font-size:13px}
}
/* Very narrow — keep nav readable, drop decorative chrome */
@media(max-width:400px){
  .nav{padding:0 16px;height:50px}
  .nav-wordmark{font-size:14px}
  .nav-sep{font-size:24px}
  .nav-cta{font-size:10px;padding:7px 14px}
  .hero-overlay{padding:clamp(80px,12vh,140px) 20px 0}
  .hero-overlay h1{font-size:30px}
  .hero-eyebrow{font-size:10px;margin-bottom:12px}
}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}
  .anim-up{opacity:1;transform:none}
  .anim-fade{opacity:1}
}
