  /* ===== RESET ===== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", system-ui, sans-serif;
    background: #fbfbf8;
    color: #0a0a0a;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { max-width: 100%; height: auto; display: block; }
  a { text-decoration: none; color: inherit; }
  ul { list-style: none; }

  /* ===== TOKENS ===== */
  :root {
    --cream: #fbfbf8;
    --black: #0a0a0a;
    --gray: #525252;
    --teal-bright: #2dd4bf;
    --teal: #14b8a6;
    --teal-dark: #0d9488;
    --teal-text: #0f766e;
    --teal-label: #134e4a;
    --teal-bg: #f0fdfa;
    --border: #e5e5e5;
    --card-shadow: 0px 12px 32px 0px rgba(0,0,0,0.04);
    --card-hover-shadow: 0px 0px 40px -8px rgba(20,184,166,0.25), 0px 12px 32px 0px rgba(0,0,0,0.04);
  }

  /* ===== SHARED ===== */
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 600; letter-spacing: 0.8px;
    text-transform: uppercase; color: var(--teal-label);
  }
  .eyebrow::before {
    content: ''; display: inline-block; width: 6px; height: 6px;
    border-radius: 50%; background: var(--teal); flex-shrink: 0;
  }
  .btn-primary, .fnd-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--black); color: #fff;
    font-size: 15px; font-weight: 600; padding: 14px 24px;
    border-radius: 999px; border: none; cursor: pointer;
    white-space: nowrap; transition: opacity .2s, box-shadow .2s, transform .2s;
  }
  .btn-primary:hover, .fnd-cta:hover {
    opacity: .85;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    transform: translateY(-1px);
  }
  .btn-primary .arr, .fnd-cta .arr { color: var(--teal-bright); }
  .btn-outline, .clos-cta {
    display: inline-flex; align-items: center; justify-content: center;
    background: #fff; color: #0a0a0a;
    font-size: 15px; font-weight: 600; padding: 14px 24px;
    border-radius: 999px; border: 1.5px solid #0a0a0a;
    cursor: pointer; white-space: nowrap;
    transition: background .2s, box-shadow .2s, transform .2s;
  }
  .btn-outline:hover, .clos-cta:hover {
    background: #fbfbf8;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    transform: translateY(-1px);
  }
  .chk {
    width: 28px; height: 28px; border-radius: 50%;
    border: 2px solid var(--teal); display: flex; align-items: center;
    justify-content: center; flex-shrink: 0; color: var(--teal); font-size: 13px;
  }

  /* ===== NAV ===== */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    background: rgba(251,251,248,.96); backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--border);
    height: 88px; transition: box-shadow .2s;
  }
  .nav-inner {
    max-width: 1440px; margin: 0 auto; padding: 0 64px;
    height: 100%; display: flex; align-items: center; gap: 32px;
  }
  /* Logo container — transparent, sizes to the logo (no box) */
  .nav-logo-wrap {
    flex-shrink: 0; display: flex; align-items: center;
  }
  .nav-logo { height: 44px; width: auto; display: block; }
  .nav-space { flex: 1; min-width: 0; }
  .nav-links { display: flex; align-items: center; gap: 36px; }
  .nav-links a {
    font-size: 14px; font-weight: 500; color: var(--gray);
    transition: color .2s; white-space: nowrap;
  }
  .nav-links a:hover { color: var(--black); }
  .nav-cta {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--black); color: #fff;
    font-size: 14px; font-weight: 600; padding: 12px 20px;
    border-radius: 999px; flex-shrink: 0; white-space: nowrap;
    letter-spacing: 0; transition: opacity .2s;
  }
  .nav-cta:hover { opacity: .85; }
  /* Arrow in CTA: teal #2dd4bf, normal weight — exactly as Figma */
  .nav-cta .arr { color: var(--teal-bright); font-weight: 400; margin-left: 2px; }
  .hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: 6px; margin-left: auto; background: none; border: none; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: transform .3s ease, opacity .2s ease; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mob-menu {
    display: none; position: fixed; top: 88px; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--border);
    padding: 8px 24px 24px; z-index: 199; flex-direction: column;
    box-shadow: 0 16px 28px rgba(0,0,0,.07);
  }
  .mob-menu.open { display: flex; }
  .mob-menu > a { font-size: 16px; font-weight: 500; color: var(--gray); padding: 15px 2px; border-bottom: 1px solid var(--border); display: flex; align-items: center; transition: color .2s; }
  .mob-menu > a:hover { color: var(--black); }
  .mob-menu .mob-cta { margin-top: 18px; }
  .mob-menu .mob-cta a {
    display: flex; width: 100%; align-items: center; justify-content: center; gap: 8px;
    background: #0a0a0a; color: #fff; font-size: 15px; font-weight: 600;
    padding: 16px 20px; border-radius: 999px; border-bottom: none;
  }
  .mob-menu .mob-cta a .arr { color: var(--teal-bright); font-weight: 400; }

  /* ===== HERO ===== */
  #hero { padding-top: 50px; background: var(--cream); }
  .hero-wrap {
    max-width: 1440px; margin: 0 auto;
    padding: 127px 94px 100px;
    display: grid; grid-template-columns: 613px 1fr;
    gap: 40px; align-items: center;
  }
  .hero-h1 { font-size: 80px; font-weight: 800; line-height: 1; letter-spacing: -2.5px; }
  .hero-h1 .l1 { color: var(--black); display: block; }
  .hero-h1 .l2 { color: var(--teal-dark); display: block; }
  .hero-body { font-size: 16px; color: var(--gray); line-height: 1.6; margin-top: 28px; max-width: 560px; }
  .hero-pill {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 40px; padding: 7px 16px; border-radius: 999px;
    border: 1px solid var(--teal); font-size: 11px; font-weight: 500;
    letter-spacing: .5px; text-transform: uppercase; color: var(--teal-dark);
  }
  .hero-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
  .hero-ctas { display: flex; align-items: center; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
  /* ===== HERO RIGHT — data-driven smart-animate system =====
     Container is a fixed 570×628 stage (Figma 220:358). Every element is
     absolutely positioned in that coordinate space; JS morphs left/top/size
     between the 7 states so the phone glides, the glow follows and cards
     slide — matching the Figma prototype motion exactly. */
  .hero-right-col { display: flex; flex-direction: column; align-items: center; width: 100%; }

  /* Dot indicators (generated by JS, one per state) */
  .hero-dots { display: flex; gap: 8px; margin-top: 24px; justify-content: center; }
  .hdot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); cursor: pointer; transition: all .35s ease; padding: 0; border: none; }
  .hdot.on { background: var(--teal); width: 20px; border-radius: 3px; }

  /* Sizer reserves the (possibly scaled) height so layout stays centered */
  .hero-stage-sizer { width: 570px; height: 628px; position: relative; }
  .hero-right {
    position: absolute; top: 0; left: 0; width: 570px; height: 628px;
    transform-origin: top center; overflow: visible;
  }
  /* Glow disc — animates position only */
  .h-glow-disc {
    position: absolute; width: 520px; height: 520px; left: -3px; top: 9px;
    pointer-events: none; z-index: 0;
    transition: left .7s cubic-bezier(.4,0,.2,1), top .7s cubic-bezier(.4,0,.2,1);
  }
  /* Glow bright — animates position + size */
  .h-glow-bright {
    position: absolute; width: 220px; height: 220px; left: 357px; top: 163px;
    pointer-events: none; z-index: 1;
    transition: left .7s cubic-bezier(.4,0,.2,1), top .7s cubic-bezier(.4,0,.2,1),
                width .7s cubic-bezier(.4,0,.2,1), height .7s cubic-bezier(.4,0,.2,1),
                opacity .45s ease;
  }
  /* Main phone — glides + crossfades its screenshot */
  .h-phone-wrap {
    position: absolute; z-index: 2; left: 133px; top: 9px; width: 279px; height: 569px;
    border-radius: 45px; overflow: hidden;
    transition: left .65s cubic-bezier(.4,0,.2,1), top .65s cubic-bezier(.4,0,.2,1),
                width .55s cubic-bezier(.4,0,.2,1), height .55s cubic-bezier(.4,0,.2,1),
                opacity .45s ease;
  }
  .h-phone-img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; border-radius: inherit; transition: opacity .45s ease;
  }
  /* Secondary phone (Multi-select / Multi-lingual) */
  .h-phone-secondary {
    position: absolute; z-index: 2; overflow: hidden; opacity: 0;
    transition: opacity .45s ease, left .65s cubic-bezier(.4,0,.2,1),
                top .65s cubic-bezier(.4,0,.2,1);
  }
  .h-phone-secondary img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: inherit; }

  /* Annotation cards — slide + fade */
  .h-card {
    position: absolute; z-index: 4;
    background: #fff; border: 1px solid var(--border); border-radius: 14px;
    padding: 14px; box-shadow: 0 12px 28px rgba(0,0,0,.08);
    display: flex; flex-direction: column; gap: 9px;
    pointer-events: none; opacity: 0;
    transition: opacity .4s ease, left .6s cubic-bezier(.4,0,.2,1),
                top .6s cubic-bezier(.4,0,.2,1), transform .45s cubic-bezier(.34,1.2,.64,1);
    transform: translateY(8px) scale(.96);
  }
  .h-card.on { opacity: 1; transform: translateY(0) scale(1); }
  .h-card-lbl {
    display: flex; align-items: center; gap: 6px;
    font-size: 9px; font-weight: 700; letter-spacing: .54px;
    text-transform: uppercase; color: var(--teal-text); white-space: nowrap;
  }
  .h-card-lbl::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--teal); flex-shrink:0; }
  .h-card-item { font-size: 11px; font-weight: 500; color: var(--black); white-space: nowrap; }

  /* Analytics overlay — its own self-contained layer (state 7) */
  .h-analytics { position: absolute; inset: 0; z-index: 3; opacity: 0; pointer-events: none;
    transition: opacity .5s ease; }
  .h-analytics.on { opacity: 1; }
  .h-ana-panel { position: absolute; border-radius: 24px; overflow: hidden; }
  .h-ana-panel img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .h-ana-patch { position: absolute; background: #fff; }

  /* ===== PROBLEM ===== */
  /* ===== PROBLEM — pixel-exact from Figma 277:5187 ===== */
  #problem { background: #fff; padding: 100px 0; }
  .prob-wrap { max-width: 1440px; margin: 0 auto; padding: 0 94px; display: flex; flex-direction: column; gap: 64px; }

  /* Two-column row */
  .prob-row { display: flex; align-items: stretch; justify-content: space-between; gap: 40px; }

  /* ---- Left: 578px, gap 28px ---- */
  .prob-left { width: 578px; flex-shrink: 0; display: flex; flex-direction: column; gap: 28px; }
  .prob-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.88px; text-transform: uppercase; color: #0f766e; }
  .prob-h2 { font-size: 56px; font-weight: 800; line-height: 1.05; letter-spacing: -0.84px; white-space: nowrap; }
  .prob-h2 .h2-black { color: #0a0a0a; display: block; }
  .prob-h2 .h2-teal  { color: #0f766e; display: block; }
  .prob-intro { font-size: 18px; font-weight: 400; color: #525252; line-height: 1.5; max-width: 520px; }
  /* Cards: gap 12px, card bg #fbfbf8 */
  .prob-cards { display: flex; flex-direction: column; gap: 12px; }
  .prob-card {
    background: #fbfbf8; border: 1px solid #e5e5e5; border-radius: 14px;
    padding: 16px; display: flex; align-items: center; gap: 16px;
  }
  /* Icon: 36×36 circle, bg #fcf2f2, × in #d94545 */
  .prob-x {
    width: 36px; height: 36px; border-radius: 50%; background: #fcf2f2;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: #d94545; font-size: 20px; font-weight: 700; line-height: 1;
  }
  .prob-card-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
  .prob-card-t { font-size: 16px; font-weight: 600; color: #0a0a0a; }
  .prob-card-d { font-size: 13px; color: #525252; line-height: 1.5; }

  /* ---- Right: 657px container, 625×416 image ---- */
  .prob-right { width: 657px; flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; }
  .prob-img-wrap {
    position: relative;
    width: 625px; aspect-ratio: 625/416;
    border-radius: 24px; overflow: hidden;
  }
  .prob-img-photo {
    width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 24px;
  }
  /* Centered overlay title — "STATIC STORES. / Customers do all the work" */
  .prob-img-title {
    position: absolute; left: 0; right: 0; top: 10.8%;
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    pointer-events: none;
  }
  .prob-img-t1 { font-size: 24px; font-weight: 800; letter-spacing: -0.36px; line-height: 1.1; text-align: center; }
  .prob-img-t1 .t-black { color: #000; }
  .prob-img-t1 .t-teal  { color: #0f766e; }
  .prob-img-t2 { font-size: 14px; font-weight: 700; letter-spacing: -0.21px; line-height: 1.1; color: #fff; text-align: center; }
  /* Floating annotation tags — positioned as % of 625×416px image */
  .prob-tag {
    position: absolute;
    background: rgba(255,255,255,0.8); border: 1px solid #e5e5e5; border-radius: 14px;
    padding: 6px 12px; box-shadow: 0px 12px 28px rgba(0,0,0,0.08);
    display: flex; flex-direction: column; gap: 5px;
  }
  .prob-tag-lbl {
    display: flex; align-items: center; gap: 6px;
    font-size: 9px; font-weight: 700; letter-spacing: 0.54px; text-transform: uppercase; color: #0f766e;
    white-space: nowrap;
  }
  .prob-tag-lbl::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%; background: #14b8a6; flex-shrink: 0;
  }
  .prob-tag-txt { font-size: 11px; font-weight: 600; color: #0a0a0a; white-space: nowrap; }

  /* ---- Bottom banner — gradient from #fbfbf8 to subtle teal ---- */
  .prob-banner {
    background: linear-gradient(120deg, #fbfbf8 0%, rgba(45,212,191,0.06) 35%, rgba(45,212,191,0.30) 100%);
    border-radius: 24px; padding: 24px 64px;
    display: flex; flex-direction: column; gap: 12px; justify-content: center;
  }
  .prob-banner-l1 { font-size: 36px; font-weight: 800; color: #0a0a0a; line-height: 1.1; letter-spacing: -0.54px; white-space: nowrap; }
  .prob-banner-l2 { font-size: 36px; font-weight: 800; color: #0f766e; line-height: 1.1; letter-spacing: -0.54px; white-space: nowrap; }
  .prob-banner-body { font-size: 18px; color: #0a0a0a; line-height: 1.5; max-width: 826px; }

  /* ===== SOLUTION ===== */
  /* ===== 02 SOLUTION — pixel-exact from Figma 277:5267 ===== */
  #solution { background: var(--cream); padding: 100px 0; }
  .sol-wrap { max-width: 1440px; margin: 0 auto; padding: 0 94px; }

  /* ---- Text block: gap 28px ---- */
  .sol-head { display: flex; flex-direction: column; align-items: flex-start; gap: 28px; }
  .sol-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.88px; text-transform: uppercase; color: #0f766e; }
  .sol-h2 { font-size: 56px; font-weight: 800; line-height: 1.05; letter-spacing: -0.84px; color: #0a0a0a; }
  .sol-h2 em { font-style: normal; color: #0f766e; }
  .sol-sub { font-size: 18px; font-weight: 400; color: #525252; line-height: 1.5; max-width: 613px; }

  /* ---- Bullets: two columns, 14px gaps ---- */
  .sol-bullets { display: flex; flex-wrap: wrap; gap: 14px; padding-top: 8px; }
  .sol-bul-col { display: flex; flex-direction: column; gap: 14px; }
  .sol-bul-col.left { width: 410px; }
  .sol-bullet { display: flex; align-items: center; gap: 14px; }
  .sol-chk {
    width: 28px; height: 28px; border-radius: 999px; background: #f0fdfa;
    border: 1px solid #14b8a6; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: #0f766e; font-size: 14px; font-weight: 700; line-height: 1;
  }
  .sol-bullet span { font-size: 16px; font-weight: 500; color: #0a0a0a; line-height: 1.5; }

  /* ---- Prototype stage: glow + box + badge ---- */
  .sol-stage { position: relative; margin-top: 80px; display: flex; flex-direction: column; align-items: center; }
  .sol-glow {
    position: absolute; left: 50%; top: -20px; transform: translateX(-50%);
    width: 1197px; max-width: 110%; height: 943px; pointer-events: none; z-index: 0;
    background: radial-gradient(ellipse 52% 42% at 50% 64%, rgba(20,184,166,0.28), rgba(20,184,166,0) 72%);
    filter: blur(6px);
  }
  .sol-box {
    position: relative; z-index: 1; width: 100%; max-width: 1100px;
    background: #fbfbf8; border: 1px solid #e5e5e5; border-radius: 24px;
    box-shadow: 0 0 60px -12px rgba(20,184,166,0.15), 0 30px 80px rgba(0,0,0,0.08);
    overflow: hidden;
  }
  .sol-cards { display: flex; gap: 16px; padding: 32px; }
  .sol-card {
    flex: 1 0 0; min-width: 0; background: #fff; border: 1px solid #e5e5e5;
    border-radius: 16px; padding: 18px; display: flex; flex-direction: column; gap: 12px;
  }
  .sol-card-head { display: flex; gap: 10px; align-items: center; }
  .sol-card-dot { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; }
  .sol-card-dot.d1 { background: radial-gradient(circle at 35% 30%, #2dd4bf, #14b8a6); }
  .sol-card-dot.d2 { background: radial-gradient(circle at 35% 30%, #5eead4, #2dd4bf); }
  .sol-card-dot.d3 { background: radial-gradient(circle at 35% 30%, #14b8a6, #0f766e); }
  .sol-card-ht { font-size: 13px; font-weight: 600; color: #0a0a0a; line-height: 1.2; }
  .sol-card-step { font-size: 11px; font-weight: 400; color: #a3a3a3; line-height: 1.2; }
  .sol-card-sub {
    background: #fbfbf8; border-radius: 10px; padding: 10px 12px;
    font-size: 12px; font-weight: 500; color: #525252; line-height: 1.35;
  }
  /* Editable media slot — holds an image, video, or YouTube embed */
  .sol-screen {
    width: 100%; aspect-ratio: 279 / 565; border-radius: 34px; overflow: hidden;
    background: #0a0a0a; position: relative;
  }
  .sol-screen > img, .sol-screen > video, .sol-screen > iframe, .sol-screen > a {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0; display: block;
  }
  .sol-screen > a {
    color: #fff;
    text-decoration: none;
  }
  .sol-screen-play {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 18px; border-radius: 999px; background: rgba(10,10,10,0.82);
    border: 1px solid rgba(255,255,255,0.16); backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); font-size: 13px; font-weight: 600;
    letter-spacing: 0.02em; box-shadow: 0 12px 28px rgba(0,0,0,0.22);
  }
  /* Badge pill below the box */
  .sol-badge {
    position: relative; z-index: 2; margin-top: 16px;
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; border: 1px solid #e5e5e5; border-radius: 999px;
    padding: 8px 16px; box-shadow: 0 8px 24px rgba(0,0,0,.06);
  }
  .sol-badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #14b8a6; flex-shrink: 0; }
  .sol-badge span { font-size: 11px; font-weight: 500; color: #525252; white-space: nowrap; }

  /* ===== BRIDGE ===== */
  #bridge {
    background: radial-gradient(ellipse at 32% 50%, #163d32 0%, #0a2520 55%, #061916 100%);
    padding: 120px 0; text-align: center;
  }
  .bridge-wrap { max-width: 840px; margin: 0 auto; padding: 0 40px; }
  .bridge-h2 { font-size: 72px; font-weight: 800; line-height: 1.05; letter-spacing: -2px; color: #fff; }
  .bridge-h2 em { font-style: normal; color: var(--teal-bright); }
  .bridge-p { font-size: 16px; color: rgba(255,255,255,.5); margin-top: 24px; line-height: 1.6; }

  /* ===== 03 THREE ENGINES — pixel-exact from Figma 277:5352 ===== */
  #engines { background: var(--cream); padding: 100px 0; }
  .eng-wrap { max-width: 1440px; margin: 0 auto; padding: 0 94px; }
  .eng-head { text-align: center; max-width: 700px; margin: 0 auto; }
  .eng-h2 { font-size: 56px; font-weight: 800; line-height: 1.05; letter-spacing: -0.84px; color: #0a0a0a; margin: 24px 0 14px; }
  .eng-h2 em { font-style: normal; color: #0f766e; }
  .eng-sub { font-size: 16px; color: #525252; line-height: 1.5; max-width: 680px; margin: 0 auto; }

  /* Card grid — 48px below header, 24px breathing before footer */
  .eng-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 48px 0 24px; }
  .eng-card {
    background: #fff; border: 1px solid #e5e5e5; border-radius: 24px;
    padding: 28px; min-height: 380px; display: flex; flex-direction: column; gap: 18px;
    align-items: flex-start; box-shadow: 0 12px 32px rgba(0,0,0,0.04);
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
    cursor: default;
  }
  /* Hover only — every card starts in the default state */
  .eng-card:hover {
    border-color: #14b8a6;
    box-shadow: 0 0 0 0.5px #14b8a6, 0 0 40px -8px rgba(20,184,166,0.25), 0 12px 32px rgba(0,0,0,0.04);
    transform: translateY(-4px);
  }
  /* Icon — exact Figma box size; image cropped so only the clean line art shows */
  .eng-ic { position: relative; overflow: hidden; flex-shrink: 0; }
  .eng-ic img { position: absolute; max-width: none; display: block; }
  .eng-ic.i1 { width: 110px; height: 110px; }
  .eng-ic.i1 img { width: 123.6%; height: 123.6%; left: -12.36%; top: 0; }
  .eng-ic.i2 { width: 100px; height: 104px; }
  .eng-ic.i2 img { width: 179.03%; height: 172.15%; left: -40.32%; top: -25.62%; }
  .eng-ic.i3 { width: 115px; height: 97px; }
  .eng-ic.i3 img { width: 113.64%; height: 133.69%; left: -5.68%; top: -13.42%; }

  .eng-badge { display: inline-flex; align-items: center; gap: 6px; background: #f0fdfa; padding: 4px 10px; border-radius: 999px; }
  .eng-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #14b8a6; flex-shrink: 0; }
  .eng-badge span { font-size: 10px; font-weight: 500; letter-spacing: .6px; text-transform: uppercase; color: #134e4a; }
  .eng-title { font-size: 24px; font-weight: 700; color: #0a0a0a; letter-spacing: -.12px; line-height: 1.2; }
  .eng-desc { font-size: 14px; color: #525252; line-height: 1.5; max-width: 348px; }
  .eng-tags { display: flex; gap: 8px; flex-wrap: wrap; }
  .eng-tag { background: #fbfbf8; border: 1px solid #e5e5e5; border-radius: 999px; padding: 6px 10px; font-size: 11px; font-weight: 500; color: #525252; }
  .eng-footer { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 24px; }
  .eng-footer span { font-size: 14px; color: #525252; }
  .pill-dark { display: inline-flex; align-items: center; gap: 8px; background: #0a0a0a; color: #fff; font-size: 14px; font-weight: 600; padding: 8px 14px; border-radius: 999px; }
  .pill-dark::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #14b8a6; }

  /* ===== 04 HOW IT WORKS — pixel-exact from Figma 277:5407 ===== */
  #adapt { background: #fff; padding: 100px 0; }
  .adapt-wrap { max-width: 1440px; margin: 0 auto; padding: 0 94px; }
  .adapt-h2 { display: flex; flex-direction: column; gap: 18px; font-size: 56px; font-weight: 800; line-height: 1.05; letter-spacing: -0.84px; margin: 24px 0 0; }
  .adapt-h2 .l1 { color: #0a0a0a; }
  .adapt-h2 .l2 { color: #0f766e; }
  .adapt-sub { font-size: 16px; color: #525252; line-height: 1.4; margin-top: 32px; }

  /* Two-column content: orbit (left) + panels (right) */
  .adapt-grid { display: flex; gap: 56px; align-items: flex-start; margin-top: 56px; }
  .adapt-orbit-cell { flex: 1 1 auto; min-width: 0; }
  .adapt-orbit-sizer { position: relative; width: 100%; }
  .adapt-orbit { position: absolute; top: 0; left: 0; width: 917px; height: 645px; transform-origin: top left; }

  /* Orbit geometry */
  .ad-disc { position: absolute; left: 219px; top: 88px; width: 444px; height: 444px; border-radius: 50%;
    background: radial-gradient(circle at 50% 45%, rgba(45,212,191,0.12), rgba(45,212,191,0.05) 70%); }
  .ad-ring { position: absolute; left: 228px; top: 97px; width: 444px; height: 444px; border-radius: 50%;
    border: 2px dashed rgba(20,184,166,0.45); }
  .ad-core-glow { position: absolute; left: 348px; top: 237px; width: 153px; height: 153px; border-radius: 50%;
    background: rgba(20,184,166,0.20); filter: blur(7px); }
  .ad-core { position: absolute; left: 361px; top: 250px; width: 128px; height: 128px; border-radius: 50%;
    background: radial-gradient(circle at 50% 32%, #2dd4bf, #0f766e 92%);
    box-shadow: 0 12px 30px rgba(15,118,110,0.35);
    display: flex; align-items: center; justify-content: center; }
  .ad-core span { color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.8px; line-height: 1.3; text-align: center; }
  .ad-dot { position: absolute; width: 36px; height: 36px; border-radius: 50%; box-shadow: 0 4px 12px rgba(15,118,110,0.25); }
  .ad-dot.bright { background: #2dd4bf; }
  .ad-dot.dark { background: #0f766e; }

  /* Orbit feature tags (same pill style as the Problem section) */
  .ad-tag { position: absolute; background: rgba(255,255,255,0.85); border: 1px solid #e5e5e5; border-radius: 14px;
    padding: 6px 12px; box-shadow: 0 12px 28px rgba(0,0,0,0.08); display: flex; flex-direction: column; gap: 6px; }
  .ad-tag-lbl { display: flex; align-items: center; gap: 6px; font-size: 9px; font-weight: 700; letter-spacing: 0.54px; text-transform: uppercase; color: #0f766e; white-space: nowrap; }
  .ad-tag-lbl::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #14b8a6; flex-shrink: 0; }
  .ad-tag-txt { font-size: 11px; font-weight: 600; color: #0a0a0a; white-space: nowrap; }
  .ad-tag.two .ad-tag-txt { white-space: normal; width: 202px; }

  /* Right panels */
  .adapt-panels { width: 279px; flex-shrink: 0; display: flex; flex-direction: column; gap: 36px; padding: 24px 0; }
  .ad-panel { border-radius: 18px; padding: 28px; display: flex; flex-direction: column; gap: 18px; flex: 1; }
  .ad-panel.dark { background: #0a0a0a; }
  .ad-panel.light { background: #fbfbf8; border: 0.5px solid #0f766e; }
  .ad-panel-lbl { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; letter-spacing: 0.66px; }
  .ad-panel-lbl::before { content: ''; width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
  .ad-panel.dark .ad-panel-lbl, .ad-panel.dark .ad-panel-lbl::before { color: #2dd4bf; background-color: transparent; }
  .ad-panel.dark .ad-panel-lbl::before { background: #2dd4bf; }
  .ad-panel.light .ad-panel-lbl { color: #0f766e; }
  .ad-panel.light .ad-panel-lbl::before { background: #0f766e; }
  .ad-row { display: flex; gap: 12px; align-items: center; padding: 8px 0; border-top: 1px solid; }
  .ad-panel.dark .ad-row { border-color: #2e2e2e; }
  .ad-panel.light .ad-row { border-color: #e5e5e5; }
  .ad-chk { width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
  .ad-panel.dark .ad-chk { background: #0f332e; color: #2dd4bf; }
  .ad-panel.light .ad-chk { background: #f0fdfa; color: #0f766e; }
  .ad-row span { font-size: 14px; font-weight: 600; }
  .ad-panel.dark .ad-row span { color: #fff; }
  .ad-panel.light .ad-row span { color: #0a0a0a; }

  /* ===== 05 ANALYTICS — pixel-exact from Figma 277:5506 ===== */
  #analytics { background: linear-gradient(180deg, #07140f 0%, #0a2a24 48%, #0d4d42 100%); padding: 100px 0; }
  .ana-wrap { max-width: 1440px; margin: 0 auto; padding: 0 64px; }

  /* Outlined translucent card */
  .ana-card { background: rgba(15,65,59,0.5); border: 1px solid #14b8a6; border-radius: 24px; padding: 48px; display: flex; flex-direction: column; gap: 48px; }
  .ana-head { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
  .ana-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: .88px; text-transform: uppercase; color: #fff; }
  .ana-h2 { display: flex; flex-wrap: wrap; gap: 12px; font-size: 60px; font-weight: 800; line-height: 1.1; letter-spacing: -0.9px; }
  .ana-h2 .w { color: #fff; white-space: nowrap; }
  .ana-h2 .t { color: #14b8a6; white-space: nowrap; }
  .ana-sub { font-size: 18px; font-weight: 400; color: #fff; line-height: 1.5; max-width: 826px; }

  /* Row: WHAT WE TRACK box + pills */
  .ana-row { display: flex; gap: 48px; align-items: center; }
  .ana-track { background: rgba(15,51,46,0.8); border: 1px solid #0f766e; border-radius: 18px; padding: 28px; width: 598px; flex-shrink: 0; display: flex; flex-direction: column; gap: 18px; justify-content: center; }
  .ana-track-lbl { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; letter-spacing: .66px; text-transform: uppercase; color: #fff; }
  .ana-track-lbl::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #14b8a6; flex-shrink: 0; }
  .ana-track-row { display: flex; gap: 18px; }
  .ana-track-item { flex: 1 0 0; min-width: 0; display: flex; gap: 12px; align-items: flex-start; border-top: 1px solid #0f766e; padding: 8px 0; }
  .ana-track-ico { width: 24px; height: 24px; border-radius: 50%; background: #14b8a6; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
  .ana-track-ico img { width: 16px; height: 16px; display: block; }
  .ana-track-item span { font-size: 14px; font-weight: 600; color: #fff; line-height: 1.25; }

  /* Right pills */
  .ana-pills { flex: 1 0 0; min-width: 0; display: flex; flex-direction: column; gap: 14px; }
  .ana-pill { background: rgba(251,251,248,0.25); border-radius: 10px; padding: 14px 24px; display: flex; align-items: center; justify-content: center; }
  .ana-pill span { font-size: 24px; font-weight: 700; color: #fff; letter-spacing: -.24px; text-align: center; }

  /* Charts row */
  .ana-charts { display: flex; gap: 24px; margin-top: 48px; align-items: flex-start; }
  .ana-chart { position: relative; flex: 1; min-width: 0; border-radius: 24px; }
  .ana-chart-img { width: 100%; display: block; border-radius: 24px; box-shadow: 0 6px 20px rgba(0,0,0,.25); }
  .ana-chip { position: absolute; top: 0; left: 0; width: 20%; height: 13%; border-top-left-radius: 24px;
    background: rgba(255,255,255,0.12); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); pointer-events: none; }
  .ana-wc { position: absolute; left: 76%; top: 22.5%; width: 20.5%; background: #fff; border-radius: 6px; overflow: hidden; }
  .ana-wc img { width: 100%; display: block; }

  /* ===== 06 OUTCOMES — pixel-exact from Figma 277:5576 ===== */
  #results { background: #fff; padding: 100px 0; }
  .res-wrap { max-width: 1440px; margin: 0 auto; padding: 0 94px; }
  .res-h2 { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; font-size: 56px; font-weight: 800; line-height: 1.05; letter-spacing: -0.84px; color: #0a0a0a; margin: 16px 0 0; }
  .res-h2 .buying { color: #0f766e; }
  .res-arrow { display: inline-flex; align-items: center; justify-content: center; background: #f0fdfa; border: 1px solid #14b8a6; border-radius: 999px; padding: 8px 14px; color: #0f766e; font-size: 22px; font-weight: 700; line-height: 1; flex-shrink: 0; }
  .res-sub { font-size: 16px; color: #525252; line-height: 1.4; max-width: 430px; margin-top: 32px; }

  /* Compare table */
  .res-tbl { margin-top: 56px; display: flex; flex-direction: column; }
  .res-thead { display: flex; gap: 16px; align-items: center; padding: 16px 0; }
  .res-num { width: 60px; flex-shrink: 0; }
  .res-th { flex: 1 0 0; min-width: 0; display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: .26px; text-transform: uppercase; color: #0a0a0a; }
  .res-th::before { content: ''; width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
  .res-th.bad::before { background: #d9614a; }
  .res-th.good::before { background: #14b8a6; }
  .res-row { display: flex; gap: 16px; align-items: center; padding: 20px 0; border-top: 1px solid #e5e5e5; }
  .res-row .res-num { display: flex; align-items: center; height: 32px; font-size: 12px; font-weight: 500; letter-spacing: .48px; color: #a3a3a3; }
  .res-cell { flex: 1 0 0; min-width: 0; display: flex; gap: 12px; align-items: center; border-radius: 14px; padding: 16px; font-size: 15px; font-weight: 500; color: #0a0a0a; line-height: 1.4; }
  .res-cell.bad { background: #fcf2ed; }
  .res-cell.good { background: #f0fdfa; border: 1px solid #14b8a6; }
  .res-cell .mark { font-size: 14px; font-weight: 700; flex-shrink: 0; }
  .res-cell.bad .mark { color: #a66657; }
  .res-cell.good .mark { color: #0f766e; }

  /* Strong results metrics card */
  .res-metrics { margin-top: 56px; border-radius: 24px; padding: 24px 64px; display: flex; flex-direction: column; gap: 48px;
    background: linear-gradient(111deg, #fbfbf8 0%, rgba(45,212,191,0.06) 35%, rgba(45,212,191,0.30) 100%); }
  .res-metrics-head { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
  .res-mh2 { display: flex; flex-wrap: wrap; gap: 12px; font-size: 36px; font-weight: 800; line-height: 1.1; letter-spacing: -0.54px; color: #0a0a0a; }
  .res-mh2 em { font-style: normal; color: #0f766e; }
  .res-msub { font-size: 18px; color: #0a0a0a; line-height: 1.5; max-width: 826px; }
  .res-mrow { display: flex; gap: 14px; align-items: stretch; }
  .res-mcell { background: #fbfbf8; border-radius: 10px; padding: 14px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; text-align: center; }
  .res-mcell.flex { flex: 1 0 0; min-width: 0; }
  .res-mcell.wide { padding: 14px 36px; }
  .res-mnum { font-size: 72px; font-weight: 800; color: #0f766e; letter-spacing: -0.72px; line-height: 1; white-space: nowrap; }
  .res-mcell.wide .res-mnum { font-size: 60px; letter-spacing: -0.6px; }
  .res-mlbl { font-size: 18px; font-weight: 500; color: #525252; line-height: 1.2; }
  .res-mlbl .m-only { display: none; }   /* mobile-only line break in metric subtext */

  /* ===== 07 AUDIENCE — pixel-exact from Figma 277:5651 ===== */
  #audience { background: var(--cream); padding: 100px 0; }
  .aud-wrap { max-width: 1440px; margin: 0 auto; padding: 0 94px; display: grid; grid-template-columns: 534px 1fr; gap: 64px; align-items: start; }
  .aud-left { margin-top: 24px; }
  .aud-h2 { font-size: 50px; font-weight: 800; line-height: 1.05; letter-spacing: -1px; color: #0a0a0a; margin: 28px 0; }
  .aud-h2 em { font-style: normal; color: #0f766e; }
  .aud-p { font-size: 16px; color: #525252; line-height: 1.6; max-width: 534px; }
  /* "Industries we resonate with" — Figma 277:5659: 11px / 500 / #a3a3a3 / 0.44px, no dot */
  .aud-rlbl { display: block; margin-bottom: 14px; color: #a3a3a3; font-weight: 500; letter-spacing: 0.44px; }
  .eyebrow.aud-rlbl::before { content: none; display: none; }
  .aud-grid { display: flex; flex-wrap: wrap; gap: 14px; }
  .aud-card { width: 320px; background: #fff; border: 1px solid #e5e5e5; border-radius: 14px; padding: 16px; display: flex; align-items: center; gap: 14px; transition: border-color .2s; }
  .aud-card.lit { border-width: 1.5px; }
  .aud-card:hover { border-color: #14b8a6; }
  .aud-dot { width: 10px; height: 10px; border-radius: 50%; background: #d4d4d4; flex-shrink: 0; }
  .aud-card.lit .aud-dot { background: #14b8a6; }
  .aud-img { width: 68px; height: 55px; border-radius: 12px; object-fit: cover; flex-shrink: 0; display: block; }
  .aud-txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
  .aud-card-t { font-size: 15px; font-weight: 600; color: #0a0a0a; white-space: nowrap; }
  .aud-card-s { font-size: 12px; color: #525252; white-space: nowrap; }

  /* ===== TRUST ===== */
  .trust-bar { background: #0d7a5e; padding: 17px 94px; text-align: center; font-size: 11px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.7); }
  #trustBand { background: var(--cream); padding: 36px 0; overflow: hidden; }
  #trustTrack {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 72px;
    width: max-content;
    margin: 0 auto;
  }
  #trustTrack img { height: 38px; width: auto; display: block; flex-shrink: 0; object-fit: contain; }
  #trustBand.scrolling #trustTrack {
    justify-content: flex-start;
    margin: 0;
    animation: tscroll 24s linear infinite;
  }
  #trustBand.scrolling:hover #trustTrack { animation-play-state: paused; }
  #trustBand.fit #trustTrack { animation: none; margin: 0 auto; }
  @keyframes tscroll {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-1px * var(--tshift, 0))); }
  }

  /* ===== 08 ONBOARDING — pixel-exact from Figma 277:5706 ===== */
  #onboarding { background: #0a0a0a; padding: 100px 0; }
  .on-wrap { max-width: 1440px; margin: 0 auto; padding: 0 94px; }
  .on-head { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
  .on-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: .88px; text-transform: uppercase; color: #2dd4bf; }
  .on-h2 { display: flex; flex-direction: column; align-items: center; font-size: 64px; font-weight: 800; line-height: 1.05; letter-spacing: -0.96px; color: #fff; }
  .on-h2 em { font-style: normal; color: #2dd4bf; }
  .on-sub { font-size: 16px; color: #bfbfbf; line-height: 1.5; max-width: 760px; }

  /* Step cards */
  .on-grid { display: flex; gap: 20px; padding-top: 16px; margin-top: 56px; }
  .on-card { flex: 1 0 0; min-width: 0; background: #1a1a1a; border: 1px solid #2e2e2e; border-radius: 20px; padding: 28px; display: flex; flex-direction: column; gap: 16px; }
  .on-card.active { border-color: #14b8a6; background: radial-gradient(120% 80% at 100% 0%, rgba(20,184,166,0.18), transparent 60%), #0f332e; box-shadow: 0 0 32px -4px rgba(20,184,166,0.35); }
  .on-card-top { display: flex; align-items: center; justify-content: space-between; width: 100%; height: 100px; }
  .on-num { width: 40px; height: 40px; border-radius: 50%; background: #2e2e2e; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #2dd4bf; flex-shrink: 0; }
  .on-day { display: inline-flex; align-items: center; gap: 6px; background: #242424; border-radius: 999px; padding: 6px 10px; font-size: 10px; font-weight: 500; letter-spacing: .4px; color: #d9d9d9; flex-shrink: 0; }
  .on-day::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #2dd4bf; flex-shrink: 0; }
  .on-card.active .on-day::before { background: #14b8a6; }
  .on-title { font-size: 32px; font-weight: 700; color: #fff; letter-spacing: -0.32px; line-height: 1.1; }
  .on-desc { font-size: 14px; color: #bfbfbf; line-height: 1.5; }
  .on-progress { display: flex; gap: 6px; padding-top: 10px; }
  .pdot { width: 32px; height: 4px; border-radius: 2px; background: #383838; flex-shrink: 0; }
  .pdot.f { background: #2dd4bf; }
  .pdot.bright { background: #14b8a6; }
  .on-card.active .pdot.f { background: #14b8a6; }
  .on-foot { display: flex; align-items: center; justify-content: center; gap: 14px; padding-top: 20px; margin-top: 36px; flex-wrap: wrap; }
  .on-foot-l { font-size: 14px; font-weight: 500; color: #bfbfbf; }
  .on-foot-arrow { font-size: 14px; font-weight: 700; color: #2dd4bf; padding: 0 10px; }
  .on-foot-r { font-size: 14px; font-weight: 500; color: #fff; }

  /* ===== PRICING ===== */
  /* ===== 09 PRICING — pixel-exact from Figma 277:5773 ===== */
  #pricing { background: #fff; padding: 100px 0; }
  .pri-wrap { max-width: 1440px; margin: 0 auto; padding: 0 94px; }
  .pri-h2 { font-size: 56px; font-weight: 800; letter-spacing: -0.84px; line-height: 1.05; color: #0a0a0a; margin: 16px 0 0; }
  .pri-h2 em { font-style: normal; color: #0f766e; }
  .pri-sub { font-size: 16px; color: #525252; line-height: 1.5; max-width: 680px; text-wrap: balance; margin: 32px 0 0; }
  .pri-grid, .pri-grid-2 { display: flex; gap: 20px; }
  .pri-grid { margin-top: 32px; }
  .pri-grid-2 { margin-top: 20px; }
  /* Top 3 cards (FREE / GROWTH / SCALE): white, 1.5px teal border, teal glow */
  .pri-card { flex: 1 0 0; min-width: 0; background: #fff; border: 1.5px solid #14b8a6; border-radius: 24px; padding: 28px; display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
    box-shadow: 0 0 40px -8px rgba(20,184,166,0.25), 0 12px 32px rgba(0,0,0,0.04); }
  /* Bottom 2 cards (VELOCITY / ENTERPRISE): #fbfbf8, 1px #0f766e border, no glow */
  .pri-grid-2 .pri-card { background: #fbfbf8; border: 1px solid #0f766e; box-shadow: 0 12px 32px rgba(0,0,0,0.04); }
  .pri-badge { display: inline-flex; align-items: center; gap: 6px; background: #f0fdfa; border-radius: 999px; padding: 4px 10px; font-size: 10px; font-weight: 500; letter-spacing: .6px; text-transform: uppercase; color: #134e4a; }
  .pri-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #14b8a6; flex-shrink: 0; }
  .pri-sess { font-size: 24px; font-weight: 700; color: #0a0a0a; letter-spacing: -.12px; line-height: 1.2; }
  .pri-price { font-size: 24px; font-weight: 700; color: #0f766e; letter-spacing: -.12px; line-height: 1.2; }
  .pri-desc { font-size: 14px; color: #525252; line-height: 1.5; width: 100%; }

  /* ===== 10 EARLY ACCESS ===== */
  #early-access { background: var(--cream); padding: 100px 0; }
  .fnd-wrap { max-width: 1440px; margin: 0 auto; padding: 0 94px; }
  .fnd-card {
    background: #fff;
    border: 1.5px solid #14b8a6;
    border-radius: 28px;
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    gap: 34px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06), 0 0 80px -10px rgba(20,184,166,0.22);
  }

  .fnd-head { display: flex; align-items: flex-start; gap: 24px; }
  .fnd-head-l { flex: 1 0 0; min-width: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
  .fnd-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: .88px; text-transform: uppercase; color: #0f766e; }
  .fnd-h2 { display: flex; flex-direction: column; font-size: 56px; font-weight: 800; letter-spacing: -0.84px; line-height: 1.05; color: #0a0a0a; }
  .fnd-h2 em { font-style: normal; color: #0f766e; }
  .fnd-sub { font-size: 16px; color: #525252; line-height: 1.5; max-width: 724px; }
  .fnd-tag { flex-shrink: 0; display: inline-flex; align-items: center; gap: 8px; background: #0a0a0a; border-radius: 999px; padding: 10px 14px; font-size: 11px; font-weight: 700; letter-spacing: .66px; text-transform: uppercase; color: #fff; }
  .fnd-tag::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #2dd4bf; flex-shrink: 0; }

  .fnd-benefits {
    background: #0a0a0a;
    border-radius: 18px;
    padding: 18px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .fnd-col-lbl { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; letter-spacing: .66px; text-transform: uppercase; color: #2dd4bf; }
  .fnd-col-lbl::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #2dd4bf; flex-shrink: 0; }
  .fnd-perks-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
  .fnd-perk { display: flex; align-items: flex-start; gap: 12px; padding-top: 10px; border-top: 1px solid #2e2e2e; width: 100%; }
  .fnd-perk > div:last-child { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
  .fnd-chk { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 12px; font-weight: 700; background: #0f332e; color: #2dd4bf; }
  .fnd-pt { font-size: 14px; font-weight: 600; color: #fff; }
  .fnd-ps { font-size: 12px; color: #bfbfbf; }

  .fnd-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
  .fnd-terms { font-size: 11px; font-weight: 600; letter-spacing: .66px; text-transform: uppercase; color: #0f766e; }
  .fnd-cta { align-self: flex-start; }

  /* ===== CLOSER ===== */
  /* ===== CLOSER — pixel-exact from Figma 277:5877 ===== */
  #closer { background: #fff; padding: 100px 0; text-align: center; }
  .clos-wrap { max-width: 1440px; margin: 0 auto; padding: 0 94px; display: flex; flex-direction: column; align-items: center; }
  .clos-h2 { font-size: 96px; font-weight: 800; letter-spacing: -2.88px; line-height: 1; color: #0a0a0a; }
  .clos-h2 em { font-style: normal; color: #0f766e; }
  .clos-p { font-size: 18px; color: #525252; line-height: 1.5; max-width: 880px; margin-top: 24px; }
  .clos-offer { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; background: #f0fdfa; border: 1px solid #14b8a6; border-radius: 999px; font-size: 11px; font-weight: 500; letter-spacing: .66px; text-transform: uppercase; color: #134e4a; margin-top: 24px; }
  .clos-offer::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #14b8a6; flex-shrink: 0; }
  .clos-cta { margin-top: 24px; }

  /* Contact strip */
  .contact-strip { width: 100%; display: flex; align-items: center; gap: 48px; padding: 24px 64px; border-radius: 24px; margin-top: 56px; text-align: left;
    background: linear-gradient(135deg, #fbfbf8 0%, rgba(45,212,191,0.06) 35%, rgba(45,212,191,0.30) 100%); }
  .c-lbl { display: flex; gap: 12px; font-size: 36px; font-weight: 700; letter-spacing: -.54px; line-height: 1.1; flex-shrink: 0; }
  .c-lbl .k { color: #0a0a0a; }
  .c-lbl .t { color: #0f766e; }
  .c-items { flex: 1 0 0; min-width: 0; display: flex; gap: 14px; }
  .c-item { flex: 1 0 0; min-width: 0; display: flex; align-items: center; justify-content: center; gap: 16px; background: #fbfbf8; border-radius: 10px; padding: 14px; text-decoration: none; transition: background .2s; }
  .c-item:hover { background: #f0fdfa; }
  .c-item svg { width: 28px; height: 28px; flex-shrink: 0; display: block; }
  .c-item span { font-size: 18px; font-weight: 500; color: #525252; white-space: nowrap; }

  /* ===== FOOTER ===== */
  /* Pixel-exact from Figma node 277:5901 */
  footer {
    background: #0a0a0a;
    padding: 60px 94px;
    display: flex; flex-direction: column; gap: 24px;
  }
  .ft-inner { max-width: 1440px; margin: 0 auto; width: 100%; display: flex; flex-direction: column; gap: 24px; }

  /* ---- Top row ---- */
  .ft-top { display: flex; gap: 64px; align-items: flex-start; }

  /* Col 1 – Logo, 360px wide, gap 16px */
  .ft-logo-col { width: 360px; flex-shrink: 0; display: flex; flex-direction: column; gap: 16px; }
  /* Logo inner container: 312×76px matching Figma 294:2438 */
  /* Logo box — Figma LOGO hori. = 235×89 */
  .ft-logo-wrap { height: 89px; display: flex; align-items: center; }
  /* Logo image: 202×76px native size */
  .ft-logo-img { height: 89px; width: auto; display: block; }
  /* Tagline */
  .ft-tagline { font-size: 13px; color: #a6a6a6; line-height: 1.6; max-width: 340px; }
  /* Badges row */
  .ft-badges { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
  .ft-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: #1f1f1f; border: 1px solid #333; border-radius: 999px;
    padding: 6px 10px; font-size: 10px; font-weight: 500; color: #bfbfbf;
    white-space: nowrap;
  }
  /* Teal dot: 5×5px, #2dd4bf */
  .ft-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #2dd4bf; flex-shrink: 0; }

  /* Col 2 – Product nav, 160px wide, gap 14px */
  .ft-nav-col { width: 160px; flex-shrink: 0; display: flex; flex-direction: column; gap: 14px; }
  .ft-nav-t { font-size: 11px; font-weight: 700; letter-spacing: 0.66px; text-transform: uppercase; color: #2dd4bf; }
  .ft-links { display: flex; flex-direction: column; gap: 14px; list-style: none; }
  .ft-links a { font-size: 13px; font-weight: 400; color: #bfbfbf; transition: color .2s; }
  .ft-links a:hover { color: #fff; }

  /* Col 3 – Contact, flex-1, RIGHT-aligned */
  .ft-contact-col { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 14px; align-items: flex-end; text-align: right; }
  .ft-contact-t { font-size: 24px; font-weight: 700; letter-spacing: 1.44px; text-transform: uppercase; color: #2dd4bf; }
  .ft-email { font-size: 12px; font-weight: 500; color: #bfbfbf; }
  .ft-phone { font-size: 13px; font-weight: 700; color: #bfbfbf; }

  /* ---- Divider: #2e2e2e ---- */
  .ft-div { border: none; height: 1px; background: #2e2e2e; width: 100%; }

  /* ---- Bottom row ---- */
  .ft-bot { display: flex; align-items: center; }
  .ft-bot-space { flex: 1; }
  .ft-copy { font-size: 12px; color: #8c8c8c; white-space: nowrap; }
  .ft-made { font-size: 12px; color: #8c8c8c; white-space: nowrap; }

  /* ===== STICKY CONTACT STRIP — pixel-exact from Figma 320:2625 ===== */
  /* Fixed to the viewport bottom — stays on screen while scrolling, like the nav */
  .sticky-strip {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
    background: #0f766e; padding: 6px 64px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
  }
  .ss-lbl {
    font-size: 11px; font-weight: 500; color: #fff;
    letter-spacing: 0.88px; text-transform: uppercase; white-space: nowrap;
  }
  .ss-item {
    display: inline-flex; align-items: center; gap: 8px;
    color: #bfbfbf; font-size: 13px; font-weight: 700; white-space: nowrap;
    text-decoration: none; transition: color .2s;
  }
  .ss-item:hover { color: #fff; }
  .ss-item svg { width: 24px; height: 24px; flex-shrink: 0; display: block; }
  @media (max-width: 640px) {
    /* Sticky strip: center so BOTH email + phone stay visible (no edge clipping) */
    .sticky-strip { padding: 8px 16px; gap: 18px; justify-content: center; flex-wrap: wrap; }
    .sticky-strip .ss-lbl { display: none; }
    .sticky-strip .ss-item { font-size: 11px; gap: 6px; }
    .sticky-strip .ss-item svg { width: 18px; height: 18px; }
    /* Mobile only: align the offer dot to the first line (not centered across wrap) */
    .clos-offer { align-items: flex-start; }
    .clos-offer::before { margin-top: 4px; }
    /* Compact circular orbit that fits the phone frame (no scroll), tight top/bottom */
    .adapt-grid { margin-top: 24px; gap: 20px !important; }
    .adapt-orbit { width: 360px !important; height: 320px !important; }
    .ad-disc, .ad-ring { left: 95px !important; top: 62px !important; width: 170px !important; height: 170px !important; }
    .ad-core-glow { left: 128px !important; top: 95px !important; width: 104px !important; height: 104px !important; }
    .ad-core { left: 148px !important; top: 115px !important; width: 64px !important; height: 64px !important; }
    .ad-core span { font-size: 8px; letter-spacing: .5px; }
    .ad-dot { width: 12px !important; height: 12px !important; box-shadow: none; }
    .ad-dot.d-tl { left: 132px !important; top: 67px !important; }
    .ad-dot.d-tr { left: 216px !important; top: 67px !important; }
    .ad-dot.d-r  { left: 259px !important; top: 141px !important; }
    .ad-dot.d-br { left: 216px !important; top: 215px !important; }
    .ad-dot.d-bl { left: 132px !important; top: 215px !important; }
    .ad-dot.d-l  { left: 89px  !important; top: 141px !important; }
    .ad-tag { padding: 6px 8px; border-radius: 10px; gap: 3px; }
    .ad-tag-lbl { font-size: 7px; letter-spacing: .4px; }
    .ad-tag-lbl::before { width: 4px; height: 4px; }
    .ad-tag-txt { font-size: 9px; }
    .ad-tag.two .ad-tag-txt { width: 120px; }
    .ad-tag.t-tl { left: 0 !important;   top: 20px !important; }
    .ad-tag.t-tr { left: 212px !important; top: 20px !important; }
    .ad-tag.t-r  { left: 236px !important; top: 137px !important; }
    .ad-tag.t-br { left: 206px !important; top: 248px !important; }
    .ad-tag.t-bl { left: 0 !important;   top: 264px !important; }
    .ad-tag.t-l  { left: 0 !important;   top: 137px !important; }
    /* Footer bottom row: stack the two lines vertically with a gap */
    .ft-bot { flex-direction: column; align-items: flex-start; gap: 16px; }
    .ft-bot-space { display: none; }
    .ft-copy, .ft-made { white-space: normal; }
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1200px) {
    .hero-wrap { grid-template-columns: 1fr; padding: 80px 60px 60px; }
    .hero-h1 { font-size: 64px; }
    .hero-right-col { margin: 40px auto 0; }
    /* Problem section: stack at 1200px */
    .prob-row { flex-direction: column; gap: 48px; }
    .prob-left { width: 100%; }
    .prob-right { width: 100%; padding-top: 0; }
    .prob-img-wrap { width: 100%; }
    .aud-wrap { grid-template-columns: 1fr; }
    .aud-left { margin-top: 0; }
  }
  @media (max-width: 1024px) {
    .nav-inner, .prob-wrap, .sol-wrap, .eng-wrap, .adapt-wrap,
    .ana-wrap, .res-wrap, .aud-wrap, .on-wrap, .pri-wrap, .fnd-wrap,
    .clos-wrap { padding-left: 40px; padding-right: 40px; }
    .fnd-card { padding: 40px; }
    .hero-h1 { font-size: 56px; }
    .prob-h2 { font-size: 48px; letter-spacing: -0.5px; }
    .sol-h2, .bridge-h2, .eng-h2, .ana-h2, .adapt-h2 { font-size: 48px; }
    .clos-h2 { font-size: 72px; }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); }
    footer { padding-left: 40px; padding-right: 40px; }
  }
  @media (max-width: 900px) {
    .sol-bul-col.left, .sol-bul-col.right { width: 100%; }
    .sol-bullet span { white-space: normal; }
    .sol-cards { flex-direction: column; align-items: center; gap: 24px; padding: 24px; }
    .sol-card { width: 100%; max-width: 440px; }
    .sol-screen { max-width: 300px; margin: 0 auto; }
    .sol-stage { margin-top: 56px; }
    .eng-grid { grid-template-columns: 1fr; }
    .adapt-grid { flex-direction: column; gap: 40px; align-items: stretch; }
    .adapt-orbit-cell { width: 100%; }
    .adapt-panels { width: 100%; }
    .ana-row { flex-direction: column; align-items: stretch; gap: 28px; }
    .ana-track { width: 100%; }
    .ana-charts { flex-direction: column; }
    .ana-card { padding: 32px; }
    .on-grid { flex-direction: column; }
    .pri-grid, .pri-grid-2 { flex-wrap: wrap; }
    .pri-card { flex: 1 1 calc(50% - 10px); }
    .fnd-head { flex-direction: column; }
    .fnd-perks-row { grid-template-columns: 1fr; gap: 14px; }
    .fnd-foot { flex-direction: column; align-items: flex-start; gap: 14px; }
    .contact-strip { flex-direction: column; align-items: center; gap: 20px; }
    .c-items { flex-direction: column; align-items: center; }
    .c-item { flex: 0 0 auto; }   /* hug content + center instead of full-width */
    /* Footer stacks to single column on mobile */
    .ft-top { flex-direction: column; gap: 40px; }
    .ft-logo-col { width: 100%; }
    .ft-logo-wrap { width: 100%; }
    .ft-tagline { max-width: 100%; }
    .ft-nav-col { width: 100%; }
    .ft-contact-col { align-items: flex-start; text-align: left; }
    footer { padding: 40px 24px 64px; }   /* extra bottom clearance for the fixed sticky strip */
  }
  @media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .hero-wrap { padding: 40px 24px 56px; }
    .hero-h1 { font-size: 48px; letter-spacing: -1.5px; }
    /* Hero right — JS scales the whole 570px stage to fit the column width */
    .hero-right-col { width: 100%; overflow: hidden; }
    .prob-wrap, .sol-wrap, .eng-wrap, .adapt-wrap, .ana-wrap, .res-wrap,
    .aud-wrap, .on-wrap, .pri-wrap, .fnd-wrap, .clos-wrap,
    .trust-bar { padding-left: 24px; padding-right: 24px; }
    .nav-inner { padding: 0 24px; }
    .bridge-wrap { padding: 0 24px; }
    .prob-banner { padding: 24px; }
    .prob-banner-l1, .prob-banner-l2 { font-size: 26px; }
    .prob-banner-body { font-size: 15px; }
    /* Scale down tags and title on mobile */
    .prob-img-title { top: 8%; }
    .prob-img-t1 { font-size: 16px; }
    .prob-img-t2 { font-size: 10px; }
    .prob-tag { padding: 4px 8px; gap: 3px; border-radius: 10px; }
    .prob-tag-lbl { font-size: 7px; letter-spacing: 0.3px; }
    .prob-tag-txt { font-size: 9px; }
    .fnd-card { padding: 36px 20px; }
    .fnd-benefits { padding: 16px 14px 18px; }
    .bridge-h2 { font-size: 40px; }
    .eng-h2 { font-size: 36px; }
    .ana-h2 { font-size: 36px; }
    .res-h2 { font-size: 38px; }
    .res-mh2 { font-size: 28px; }
    .res-metrics { padding-left: 18px; padding-right: 18px; }
    /* Metric tiles: number left, subtext right, on the same row */
    .res-mrow { flex-direction: column; gap: 12px; }
    .res-mcell { flex-direction: row; align-items: center; justify-content: space-between; text-align: left; gap: 12px; width: 100%; }
    .res-mcell.flex, .res-mcell.wide { flex: 0 0 auto; width: 100%; }
    .res-mcell.wide { padding: 14px; }   /* match the 3x/5x internal padding */
    .res-mnum { font-size: 44px; flex-shrink: 0; }
    .res-mcell.wide .res-mnum { font-size: 34px; }
    .res-mlbl { text-align: right; }
    .res-mlbl .m-only { display: inline; }
    .on-h2 { font-size: 48px; }
    .clos-h2 { font-size: 52px; letter-spacing: -1.5px; }
    .clos-h2 br { display: none; }
    .pri-card { flex: 1 1 100%; }
    .metrics-grid { grid-template-columns: 1fr 1fr; }
    .aud-grid { grid-template-columns: 1fr; }
    /* Let nowrap headings wrap so they never overflow on phones */
    .prob-h2, .prob-banner-l1, .prob-banner-l2, .clos-h2, .ana-h2 .w, .ana-h2 .t { white-space: normal; }
    /* Lighter vertical rhythm on mobile */
    #problem, #solution, #engines, #analytics, #results, #audience,
    #onboarding, #pricing, #founders, #closer { padding-top: 64px; padding-bottom: 64px; }
    /* Tighten the gap between Problem and Solution */
    #problem { padding-bottom: 28px; }
    #solution { padding-top: 36px; }
    #bridge { padding: 80px 0; }
    #trustBand { padding: 28px 0; }
    #trustTrack { gap: 48px; }
    #trustTrack img { height: 30px; }
  }
  @media (max-width: 475px) {
    .hero-h1 { font-size: 38px; letter-spacing: -1px; }
    .hero-ctas { flex-direction: column; align-items: flex-start; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; }
    .prob-h2 { font-size: 32px; letter-spacing: -0.3px; }
    .prob-intro { font-size: 15px; }
    .prob-banner-l1, .prob-banner-l2 { font-size: 22px; }
    .prob-banner-body { font-size: 14px; }
    .sol-h2 { font-size: 36px; }
    .aud-h2 { font-size: 36px; }
    .clos-h2 { font-size: 38px; letter-spacing: -1px; }
    .fnd-h2 { font-size: 36px; }
    .pri-h2 { font-size: 36px; }
    .metric-val { font-size: 38px; }
    .on-h2 { font-size: 38px; }
    .ana-track-row { flex-wrap: wrap; }
    .ana-track-item { flex: 1 1 40%; }
    .ana-pill span { font-size: 19px; }
    .res-row { flex-wrap: wrap; gap: 10px; }
    .res-row .res-num { width: 100%; height: auto; }
    .res-cell { flex: 1 1 100%; }
    /* Header labels: centered, one line (rows stack here so drop the number spacer) */
    .res-thead .res-num { display: none; }
    .res-th { justify-content: center; white-space: nowrap; }
    .res-mcell.flex, .res-mcell.wide { flex: 0 0 auto; }
    .res-mnum { font-size: 46px; }
    .res-mcell.wide .res-mnum { font-size: 32px; }
    .aud-card { width: 100%; }
  }
  