:root {
      --blue: #196CD6;
      --teal: #00B4D8;
      --green: #09C69A;
      --dark: #2F2F3D;
      --navy: #07172D;
      --text: #121827;
      --muted: #607086;
      --line: #E5EDF7;
      --light: #F6FAFF;
      --white: #FFFFFF;
      --danger: #FF3B46;
      --shadow: 0 14px 40px rgba(7, 23, 45, 0.08);
      --soft-shadow: 0 8px 24px rgba(7, 23, 45, 0.06);
      --hair-shadow: 0 4px 14px rgba(7, 23, 45, 0.04);
      --radius: 22px;
      --radius-sm: 14px;
      --max: 1200px;
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 120px;
    }

    body {
      margin: 0;
      font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      color: var(--text);
      background: #ffffff;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    ::selection { background: rgba(25, 108, 214, 0.18); }

    :focus-visible {
      outline: 3px solid rgba(25, 108, 214, 0.45);
      outline-offset: 2px;
      border-radius: 6px;
    }

    .container {
      width: min(var(--max), calc(100% - 44px));
      margin: 0 auto;
    }

    section { padding: 56px 0; }
    .section-lg { padding: 76px 0; }
    .tier-soft { background: var(--light); }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--teal);
      margin-bottom: 14px;
    }

    /* ---------- Announcement bar ---------- */
    .topbar {
      position: sticky;
      top: 0;
      z-index: 45;
      background: linear-gradient(90deg, var(--navy), #0B2C55 55%, var(--navy));
      color: #EAF2FF;
      font-size: 14px;
      font-weight: 700;
      text-align: center;
      padding: 9px 16px;
      min-height: 34px;
      letter-spacing: 0.01em;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
    }

    .topbar .tdot {
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: #FF4D4D;
      box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.5);
      animation: pulse-red 1.8s infinite;
      flex: 0 0 auto;
    }

    @keyframes pulse-red {
      0%   { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.5); }
      70%  { box-shadow: 0 0 0 8px rgba(255, 77, 77, 0); }
      100% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0); }
    }

    .topbar strong { color: #6FE3C4; }

    /* ---------- Nav ---------- */
    .nav {
      position: sticky;
      top: 34px;
      z-index: 40;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--line);
    }

    .nav-inner {
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    /* Brand lockup: BetterWase (master) presenta Better Agents (product) */
    .brand {
      display: inline-flex;
      flex-direction: column;
      line-height: 1;
      gap: 4px;
    }

    .brand .master {
      font-weight: 900;
      font-style: italic;
      font-size: 25px;
      letter-spacing: -1.1px;
      color: var(--blue);
    }

    .brand .master span { color: var(--teal); }

    .brand .sub {
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.07em;
      color: #93A0B2;
      text-transform: uppercase;
    }

    .brand .sub b { color: var(--blue); font-weight: 800; }

    .nav-links {
      display: flex;
      gap: 30px;
      align-items: center;
      color: #273247;
      font-size: 14px;
      font-weight: 650;
    }

    .nav-links a { position: relative; padding: 4px 0; transition: color 0.16s ease; }
    .nav-links a:hover { color: var(--blue); }
    .nav-links a.active { color: var(--blue); }

    .nav-links a.active::after {
      content: "";
      position: absolute;
      left: 0; right: 0; bottom: -16px;
      margin: auto;
      width: 30px; height: 3px;
      border-radius: 999px;
      background: var(--blue);
    }

    .nav-cta { display: flex; align-items: center; gap: 12px; }

    .menu-btn {
      display: none;
      width: 44px; height: 44px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: white;
      cursor: pointer;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      padding: 0;
    }

    .menu-btn span {
      display: block;
      width: 20px; height: 2.5px;
      border-radius: 99px;
      background: #273247;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    .menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      border-top: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.98);
      padding: 10px 0 18px;
    }

    .mobile-menu.open { display: block; }

    .mobile-menu a {
      display: block;
      padding: 13px 4px;
      font-weight: 700;
      font-size: 16px;
      color: #273247;
      border-bottom: 1px solid var(--line);
    }

    .mobile-menu a:last-child { border-bottom: 0; }

    /* ---------- Buttons ---------- */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 0 28px;
      border-radius: 11px;
      border: 0;
      background: linear-gradient(135deg, var(--blue), #075CEF);
      color: white;
      font-weight: 800;
      font-size: 16px;
      font-family: inherit;
      cursor: pointer;
      box-shadow: 0 12px 24px rgba(25, 108, 214, 0.22);
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .btn:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(25, 108, 214, 0.32); }
    .btn:active { transform: translateY(0); }

    .btn-small { min-height: 44px; padding: 0 22px; font-size: 14px; }

    .btn-xl {
      min-height: 68px;
      font-size: 20px;
      border-radius: 13px;
      width: 100%;
    }

    /* ---------- Hero ---------- */
    .hero {
      padding: 56px 0 44px;
      background:
        radial-gradient(circle at 86% 12%, rgba(0, 180, 216, 0.10), transparent 32%),
        radial-gradient(circle at 8% 18%, rgba(25, 108, 214, 0.07), transparent 34%),
        #fff;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 52% 48%;
      grid-template-rows: auto 1fr;
      column-gap: 44px;
      row-gap: 0;
      align-items: start;
    }

    .hero-top { grid-column: 1; grid-row: 1; }
    .hero-bottom { grid-column: 1; grid-row: 2; }

    .hero-media {
      grid-column: 2;
      grid-row: 1 / span 2;
      align-self: start;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 14px;
      border: 1px solid rgba(9, 198, 154, 0.28);
      border-radius: 999px;
      background: rgba(9, 198, 154, 0.08);
      color: #078E72;
      font-weight: 800;
      font-size: 14px;
      margin-bottom: 20px;
    }

    .live-dot {
      width: 9px; height: 9px;
      border-radius: 999px;
      background: var(--green);
      box-shadow: 0 0 0 0 rgba(9, 198, 154, 0.5);
      animation: pulse 1.8s infinite;
      flex: 0 0 auto;
    }

    @keyframes pulse {
      0%   { box-shadow: 0 0 0 0 rgba(9, 198, 154, 0.45); }
      70%  { box-shadow: 0 0 0 9px rgba(9, 198, 154, 0); }
      100% { box-shadow: 0 0 0 0 rgba(9, 198, 154, 0); }
    }

    h1, h2, h3 { margin: 0; letter-spacing: -0.035em; line-height: 1.08; }

    h1 {
      font-size: clamp(29px, 3.2vw, 43px);
      font-weight: 900;
      line-height: 1.12;
    }

    h1 .blue, .blue { color: var(--blue); }

    .subhead {
      margin: 20px 0;
      color: var(--muted);
      font-size: 17px;
      max-width: 600px;
      line-height: 1.6;
    }

    .hero-proof {
      margin: 18px 0 0;
      font-size: 17px;
      color: #3A485F;
      font-weight: 600;
      line-height: 1.55;
      max-width: 560px;
    }

    .hero-proof b { color: var(--blue); font-weight: 800; }

    .hero-highlight {
      margin: 12px 0 0;
      font-size: 15.5px;
      color: var(--muted);
      line-height: 1.55;
      max-width: 560px;
    }

    .hero-highlight b { color: #1B2840; font-weight: 800; }

    .hero-trust {
      margin: 14px 0 0;
      font-size: 13px;
      font-weight: 700;
      color: #6B7A90;
      line-height: 1.5;
    }

    .fine {
      font-size: 12.5px;
      color: #9AA3B2;
      margin: 8px 0 0;
      line-height: 1.5;
      max-width: 600px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      align-items: center;
      flex-wrap: wrap;
      margin-top: 22px;
    }

    .micro {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 13px;
      color: #7B8798;
      font-size: 13px;
      font-weight: 600;
    }

    /* ---------- Countdown (inline pill) ---------- */
    .countdown-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin: 16px 0 0;
      padding: 9px 16px;
      border-radius: 999px;
      background: rgba(25, 108, 214, 0.07);
      border: 1px solid rgba(25, 108, 214, 0.16);
      color: #46566E;
      font-size: 14px;
      font-weight: 700;
    }

    .countdown-pill strong {
      color: var(--navy);
      font-weight: 900;
      font-variant-numeric: tabular-nums;
    }

    /* ---------- Video ---------- */
    .video-eyebrow {
      margin: 0 0 12px;
      font-weight: 800;
      font-size: 15px;
      color: var(--blue);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .video-card {
      overflow: hidden;
      border-radius: var(--radius);
      background: var(--navy);
      box-shadow: 0 28px 70px rgba(0, 180, 216, 0.2), 0 18px 44px rgba(7, 23, 45, 0.18);
      border: 1px solid rgba(0, 180, 216, 0.22);
    }

    .video-wrap {
      position: relative;
      aspect-ratio: 16 / 9;
      background:
        radial-gradient(circle at 80% 20%, rgba(0, 180, 216, 0.35), transparent 45%),
        radial-gradient(circle at 15% 85%, rgba(25, 108, 214, 0.45), transparent 50%),
        linear-gradient(135deg, #0A1E3C, #07172D);
      display: grid;
      place-items: center;
      cursor: pointer;
    }

    .video-wrap video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .video-wrap::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.46), transparent 48%);
      pointer-events: none;
      z-index: 1;
    }

    .video-wrap.playing::after { opacity: 0; }
    .video-wrap.playing .video-brand,
    .video-wrap.playing .play,
    .video-wrap.playing .video-overlay-text { opacity: 0; pointer-events: none; }

    .video-wrap .video-brand {
      position: absolute;
      top: 18px;
      left: 22px;
      z-index: 2;
      height: 24px;
      width: auto;
      opacity: 0.9;
      transition: opacity 0.25s ease;
      filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
    }

    .video-overlay-text {
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 18px;
      z-index: 2;
      color: #EAF4FF;
      font-size: 14px;
      font-weight: 700;
      line-height: 1.4;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
      transition: opacity 0.25s ease;
    }

    .play {
      position: relative;
      z-index: 2;
      width: 96px; height: 96px;
      border: 4px solid rgba(255, 255, 255, 0.95);
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(4px);
      transition: transform 0.2s ease, background 0.2s ease, opacity 0.25s ease;
    }

    .video-wrap:hover .play { transform: scale(1.08); background: rgba(255, 255, 255, 0.24); }

    .play::before {
      content: "";
      margin-left: 7px;
      width: 0; height: 0;
      border-top: 18px solid transparent;
      border-bottom: 18px solid transparent;
      border-left: 27px solid white;
    }

    /* ---------- Proof ---------- */
    .proof-head {
      text-align: center;
      font-size: clamp(20px, 2.4vw, 28px);
      font-weight: 800;
      letter-spacing: -0.02em;
      max-width: 760px;
      margin: 0 auto 24px;
      line-height: 1.25;
    }

    .stat-strip {
      margin-top: 52px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .stat-card {
      border: 1px solid var(--line);
      background: white;
      border-radius: var(--radius-sm);
      box-shadow: var(--soft-shadow);
      padding: 26px 28px;
      display: flex;
      align-items: center;
      gap: 18px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

    .icon-circle {
      width: 64px; height: 64px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      background: linear-gradient(135deg, rgba(25, 108, 214, 0.1), rgba(0, 180, 216, 0.12));
      border: 1px solid rgba(25, 108, 214, 0.18);
      color: var(--blue);
      font-size: 28px;
      font-weight: 900;
    }

    .stat-value {
      font-size: 40px;
      line-height: 1;
      font-weight: 900;
      letter-spacing: -0.05em;
      color: var(--blue);
      font-variant-numeric: tabular-nums;
    }

    .stat-value.green { color: var(--green); }

    .stat-card p {
      margin: 7px 0 0;
      color: #334155;
      font-weight: 650;
      font-size: 14px;
      line-height: 1.35;
    }

    /* ---------- Cards / two-col ---------- */
    .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

    .card {
      border: 1px solid var(--line);
      background: white;
      border-radius: var(--radius-sm);
      box-shadow: var(--soft-shadow);
      padding: 34px;
    }

    .card h2 { font-size: clamp(23px, 2.6vw, 31px); margin-bottom: 16px; }
    .card p { color: var(--muted); margin: 0; font-size: 16px; line-height: 1.65; }

    .card-problem { background: linear-gradient(180deg, #FFFAFA, #FFF6F6); border-color: rgba(255, 59, 70, 0.2); }
    .card-opportunity { background: linear-gradient(180deg, #F7FCFF, #F1F9FF); border-color: rgba(0, 180, 216, 0.25); }

    .mini-tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 6px 12px;
      border-radius: 999px;
      margin-bottom: 16px;
    }

    .mini-tag.red { color: #C8313C; background: rgba(255, 59, 70, 0.1); }
    .mini-tag.teal { color: #0786A1; background: rgba(0, 180, 216, 0.12); }

    .checks {
      padding: 0;
      margin: 20px 0 0;
      list-style: none;
      display: grid;
      gap: 13px;
    }

    .checks li, .x-list li {
      display: flex;
      gap: 11px;
      align-items: flex-start;
      color: #4B5870;
      font-weight: 650;
      font-size: 15px;
      line-height: 1.5;
    }

    .checkmark, .xmark {
      flex: 0 0 auto;
      width: 22px; height: 22px;
      margin-top: 1px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      color: white;
      font-size: 13px;
      font-weight: 900;
      line-height: 1;
    }

    .checkmark { background: var(--green); }
    .xmark { background: var(--danger); }
    .xmark.soft { background: #F0A6AB; }

    .card-strong-line {
      margin: 20px 0 0;
      font-weight: 800;
      font-size: 15.5px;
      color: #1B2840;
      line-height: 1.5;
    }

    .section-title { text-align: center; max-width: 830px; margin: 0 auto 40px; }
    .section-title .kicker { justify-content: center; width: 100%; }
    .section-title h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 12px; }
    .section-title p { color: var(--muted); margin: 0 auto; max-width: 660px; font-size: 17px; }

    /* ---------- Cost of inaction ---------- */
    .cost {
      max-width: 820px;
      margin: 0 auto;
      text-align: center;
      background: linear-gradient(135deg, #FFFCFC, #FFF6F6);
      border: 1px solid rgba(255, 59, 70, 0.18);
      border-radius: var(--radius);
      padding: 44px;
      box-shadow: var(--hair-shadow);
    }

    .cost h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 16px; }
    .cost h2 .danger { color: var(--danger); }
    .cost p { color: var(--muted); font-size: 17px; line-height: 1.65; margin: 0 auto 14px; max-width: 640px; }
    .cost .cost-cta { font-weight: 800; color: var(--blue); font-size: 17px; margin: 0; }

    /* ---------- Learn ---------- */
    .learn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

    .learn-card {
      min-height: 172px;
      padding: 26px 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: white;
      box-shadow: var(--hair-shadow);
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .learn-card:hover { transform: translateY(-4px); box-shadow: var(--soft-shadow); border-color: rgba(25, 108, 214, 0.3); }

    .learn-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }

    .learn-ico {
      width: 44px; height: 44px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(25, 108, 214, 0.12), rgba(0, 180, 216, 0.14));
      font-size: 20px;
      flex: 0 0 auto;
    }

    .learn-num { font-size: 13px; font-weight: 900; color: #B6C2D4; letter-spacing: 0.04em; }
    .learn-card h3 { font-size: 18px; line-height: 1.2; margin-bottom: 8px; letter-spacing: -0.02em; }
    .learn-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

    /* ---------- Software / Mechanism ---------- */
    .software-head { max-width: 920px; }

    .ai-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 6px 13px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--teal), var(--green));
      color: white;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.03em;
      box-shadow: 0 6px 16px rgba(0, 180, 216, 0.28);
      margin-bottom: 14px;
    }

    .software {
      background:
        radial-gradient(circle at 100% 0%, rgba(0, 180, 216, 0.1), transparent 40%),
        linear-gradient(135deg, #FFFFFF 0%, #EFF8FF 100%);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 44px;
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 38px;
      align-items: center;
      box-shadow: var(--soft-shadow);
    }

    .software h2 { font-size: clamp(24px, 2.8vw, 33px); }
    .software .subhead { font-size: 17px; font-weight: 700; color: #1B2840; max-width: none; }
    .software .body-p { color: var(--muted); font-size: 15.5px; line-height: 1.65; margin: 14px 0 0; }

    .ba-callout {
      margin: 20px 0 0;
      padding: 14px 18px;
      border-left: 4px solid var(--teal);
      background: rgba(0, 180, 216, 0.07);
      border-radius: 0 12px 12px 0;
      font-weight: 800;
      font-size: 16px;
      color: #0B2C55;
    }

    .mockup-wrap { position: relative; }

    .float-chip {
      position: absolute;
      z-index: 3;
      background: white;
      border: 1px solid var(--line);
      box-shadow: var(--soft-shadow);
      border-radius: 999px;
      padding: 8px 14px;
      font-size: 12.5px;
      font-weight: 800;
      color: #1B2840;
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }

    .float-chip .fdot { width: 8px; height: 8px; border-radius: 999px; background: var(--teal); }
    .float-chip.ai { background: linear-gradient(135deg, var(--teal), var(--green)); color: white; border: 0; }
    .float-chip.c1 { top: -16px; left: 24px; }
    .float-chip.c2 { top: 40%; right: -18px; }
    .float-chip.c3 { bottom: 64px; left: -18px; }
    .float-chip.c4 { bottom: -16px; right: 40px; }

    .dashboard {
      border-radius: 18px;
      background: white;
      border: 1px solid var(--line);
      box-shadow: 0 26px 60px rgba(7, 23, 45, 0.16);
      overflow: hidden;
    }

    .dash-top { padding: 15px 18px; display: flex; gap: 10px; align-items: center; border-bottom: 1px solid var(--line); }
    .dash-dots { display: flex; gap: 6px; margin-right: 6px; }
    .dash-dots i { width: 11px; height: 11px; border-radius: 999px; background: #E3EBF6; }
    .dash-dots i:nth-child(1) { background: #FF5F57; }
    .dash-dots i:nth-child(2) { background: #FEBC2E; }
    .dash-dots i:nth-child(3) { background: #28C840; }

    .dash-body { display: grid; grid-template-columns: 168px 1fr; min-height: 372px; }

    .sidebar {
      background: #08172D;
      color: white;
      padding: 20px 14px;
      display: grid;
      gap: 9px;
      align-content: start;
      font-size: 13px;
    }

    .sidebar div { padding: 10px 12px; border-radius: 10px; opacity: 0.78; font-weight: 600; }
    .sidebar div:first-child { background: var(--blue); opacity: 1; font-weight: 800; }

    .dash-content { padding: 22px; background: #F8FBFF; }

    .dash-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 18px; }

    .metric {
      background: white;
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 13px;
      font-size: 12px;
      color: #6A7892;
      font-weight: 700;
    }

    .metric strong {
      display: block;
      color: var(--blue);
      font-size: 21px;
      line-height: 1;
      margin-top: 6px;
      font-variant-numeric: tabular-nums;
    }

    .metric.green strong { color: var(--green); }

    .funnel-box { display: grid; grid-template-columns: 1.2fr 1fr; gap: 14px; }

    .fake-chart, .activity {
      background: white;
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 18px 20px;
      min-height: 200px;
      font-size: 14px;
    }

    .fake-chart > strong, .activity > strong { font-size: 14px; color: #1B2840; }

    .funnel { display: grid; gap: 10px; margin-top: 18px; }

    .funnel span {
      display: block;
      height: 28px;
      margin: auto;
      border-radius: 5px;
      background: linear-gradient(90deg, var(--blue), var(--green));
      transform-origin: center;
      animation: grow 0.9s ease both;
    }

    @keyframes grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

    .funnel span:nth-child(1) { width: 92%; animation-delay: 0.05s; }
    .funnel span:nth-child(2) { width: 74%; animation-delay: 0.15s; }
    .funnel span:nth-child(3) { width: 56%; animation-delay: 0.25s; }
    .funnel span:nth-child(4) { width: 36%; animation-delay: 0.35s; }

    .activity-item {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      align-items: center;
      border-bottom: 1px solid var(--line);
      padding: 11px 0;
      font-size: 13px;
      color: #526176;
    }

    .activity-item:last-child { border-bottom: 0; }
    .activity-item .live-dot { width: 7px; height: 7px; }

    /* Pillars */
    .pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }

    .pillar {
      border: 1px solid var(--line);
      background: white;
      border-radius: var(--radius-sm);
      box-shadow: var(--hair-shadow);
      padding: 26px 24px;
    }

    .pillar-num {
      width: 34px; height: 34px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(25, 108, 214, 0.12), rgba(0, 180, 216, 0.14));
      color: var(--blue);
      font-weight: 900;
      font-size: 15px;
      margin-bottom: 14px;
    }

    .pillar h4 { margin: 0 0 14px; font-size: 18px; letter-spacing: -0.02em; }

    .pillar ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }

    .pillar li {
      display: flex;
      gap: 10px;
      align-items: center;
      font-size: 14px;
      font-weight: 650;
      color: #46566E;
    }

    .pillar li::before {
      content: "âœ“";
      flex: 0 0 auto;
      width: 19px; height: 19px;
      border-radius: 999px;
      background: rgba(9, 198, 154, 0.14);
      color: var(--green);
      font-size: 11px;
      font-weight: 900;
      display: grid;
      place-items: center;
    }

    /* ---------- Buyer pre-frame ---------- */
    .preframe {
      max-width: 900px;
      margin: 0 auto;
      background: linear-gradient(135deg, #F7FCFF, #EEF6FF);
      border: 1px solid rgba(0, 180, 216, 0.25);
      border-radius: var(--radius);
      padding: 44px;
      box-shadow: var(--soft-shadow);
    }

    .preframe h2 { font-size: clamp(24px, 2.8vw, 34px); margin-bottom: 18px; }
    .preframe p { color: #46566E; font-size: 16px; line-height: 1.65; margin: 0 0 14px; }
    .preframe .pf-highlight {
      margin: 18px 0 0;
      padding: 16px 18px;
      background: white;
      border: 1px solid rgba(0, 180, 216, 0.3);
      border-radius: 14px;
      box-shadow: var(--hair-shadow);
      font-size: 16px;
      color: #46566E;
      line-height: 1.55;
    }

    .preframe .pf-highlight b { color: #0B2C55; }

    .preframe .pf-line {
      margin: 18px 0 0;
      font-weight: 800;
      font-size: 17px;
      color: #0B2C55;
      padding-left: 16px;
      border-left: 4px solid var(--teal);
    }

    /* ---------- Founder ---------- */
    .founder {
      display: grid;
      grid-template-columns: 340px 1fr;
      gap: 46px;
      align-items: center;
      background: linear-gradient(135deg, #F7FAFF 0%, #EDF4FF 100%);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 48px;
      box-shadow: var(--soft-shadow);
    }

    .founder-photo {
      position: relative;
      width: 100%;
      max-width: 360px;
      aspect-ratio: 4 / 5;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid rgba(25, 108, 214, 0.18);
      box-shadow: 0 18px 44px rgba(7, 23, 45, 0.18);
      background: linear-gradient(150deg, var(--blue), #0A2C5C);
    }

    .founder-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 16%;
    }

    .founder-photo::after {
      content: "";
      position: absolute;
      left: 0; right: 0; bottom: 0;
      height: 24%;
      background: linear-gradient(0deg, rgba(7, 23, 45, 0.4), transparent);
      pointer-events: none;
    }

    .founder-body h2 { font-size: clamp(25px, 3vw, 36px); margin-bottom: 18px; line-height: 1.15; }
    .founder-body p { color: #46566E; font-size: 16.5px; line-height: 1.7; margin: 0 0 14px; }
    .founder-body p:last-child { margin-bottom: 0; }

    /* ---------- Mission ---------- */
    .mission {
      background: linear-gradient(135deg, #07172D 0%, #0B2C55 100%);
      border-radius: var(--radius);
      padding: 52px;
      color: white;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      overflow: hidden;
      position: relative;
    }

    .mission::after {
      content: "";
      position: absolute;
      right: -80px; top: -80px;
      width: 320px; height: 320px;
      background: radial-gradient(circle, rgba(0, 180, 216, 0.35), transparent 70%);
      pointer-events: none;
    }

    .mission h2 { font-size: clamp(26px, 3vw, 38px); position: relative; z-index: 1; }

    .mission .big-num {
      background: linear-gradient(90deg, #6FE3C4, #00B4D8);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .mission-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; position: relative; z-index: 1; }

    .mission-list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      color: #D7E5F7;
      font-size: 16px;
      font-weight: 600;
      line-height: 1.5;
    }

    .mission-callout {
      margin-top: 22px;
      padding: 18px 20px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(111, 227, 196, 0.4);
      font-size: 18px;
      font-weight: 800;
      font-style: italic;
      color: #EAF6FF;
      position: relative;
      z-index: 1;
    }

    /* ---------- Registration ---------- */
    .registration {
      padding: 84px 0 52px;
      background:
        radial-gradient(circle at 50% 0%, rgba(25, 108, 214, 0.07), transparent 40%),
        var(--light);
    }

    .step-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border-radius: 999px;
      background: var(--green);
      color: white;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .form-card {
      border-radius: 28px;
      border: 1px solid var(--line);
      background:
        radial-gradient(circle at 0% 0%, rgba(25, 108, 214, 0.07), transparent 36%),
        radial-gradient(circle at 100% 100%, rgba(9, 198, 154, 0.07), transparent 34%),
        white;
      box-shadow: 0 40px 100px rgba(7, 23, 45, 0.2);
      padding: 56px;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 48px;
      align-items: center;
    }

    .form-copy h2 { font-size: clamp(28px, 3.2vw, 42px); margin-bottom: 16px; }

    .date-large {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 13px 16px;
      border-radius: 14px;
      background: rgba(9, 198, 154, 0.1);
      color: #058F72;
      font-size: 20px;
      font-weight: 900;
      margin-bottom: 18px;
    }

    .form-copy > p { color: var(--muted); font-size: 16px; margin: 0 0 18px; max-width: 440px; line-height: 1.6; }

    .form-trust { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 11px; }

    .form-trust li {
      display: flex;
      gap: 10px;
      align-items: center;
      font-weight: 700;
      font-size: 15px;
      color: #3A485F;
    }

    .form-proof {
      margin: 0;
      font-size: 13.5px;
      color: #7B8798;
      line-height: 1.55;
      max-width: 440px;
    }

    .form-proof b { color: var(--blue); }

    .form-box {
      background: white;
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 30px;
      box-shadow: var(--shadow);
    }

    .form-lead { margin: 0 0 20px; font-weight: 800; font-size: 17px; color: #1B2840; }

    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }

    .field { display: grid; gap: 7px; }

    .flabel { font-size: 13px; font-weight: 800; color: #3A485F; letter-spacing: 0.01em; }

    .fwrap { position: relative; }

    .fwrap input, .fwrap select {
      width: 100%;
      height: 62px;
      border: 1px solid #DCE7F5;
      border-radius: 13px;
      padding: 0 16px 0 46px;
      font: inherit;
      font-weight: 650;
      color: #17233A;
      outline: 0;
      background: #fff;
      transition: border-color 0.16s ease, box-shadow 0.16s ease;
      appearance: none;
      -webkit-appearance: none;
    }

    .fwrap select { cursor: pointer; padding-right: 40px; }
    .fwrap select:invalid { color: #7B8BA1; }
    .fwrap input::placeholder { color: #92A0B5; font-weight: 600; }

    .fwrap input:focus, .fwrap select:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 4px rgba(25, 108, 214, 0.12);
    }

    .fwrap .ficon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: #7B8BA1; font-size: 18px; z-index: 1; pointer-events: none; }
    .fwrap .caret { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: #7B8BA1; font-size: 13px; pointer-events: none; }

    .form-micro { margin: 14px 0 0; text-align: center; font-size: 13px; color: #7B8798; font-weight: 600; }

    /* ---------- FAQ ---------- */
    .faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }

    .faq-list details {
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: white;
      padding: 0 24px;
      overflow: hidden;
      transition: border-color 0.18s ease, box-shadow 0.18s ease;
    }

    .faq-list details[open] { border-color: rgba(25, 108, 214, 0.35); box-shadow: var(--hair-shadow); }

    .faq-list summary {
      list-style: none;
      cursor: pointer;
      padding: 21px 0;
      font-weight: 800;
      font-size: 16px;
      color: #1B2840;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
    }

    .faq-list summary::-webkit-details-marker { display: none; }

    .faq-list summary::after {
      content: "";
      flex: 0 0 auto;
      width: 30px; height: 30px;
      border-radius: 999px;
      background-color: rgba(25, 108, 214, 0.08);
      background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='14'%20height='14'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23196CD6'%20stroke-width='3'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpolyline%20points='6%209%2012%2015%2018%209'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      transition: transform 0.2s ease;
    }

    .faq-list details[open] summary::after { transform: translateY(0) rotate(180deg); }
    .faq-list details p { margin: 0 0 21px; color: var(--muted); font-size: 15px; line-height: 1.65; }

    /* ---------- Footer ---------- */
    .footer { border-top: 1px solid var(--line); padding: 30px 0; color: #7B8798; font-size: 14px; background: white; }
    .footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
    .footer-brand { font-weight: 900; font-style: italic; font-size: 18px; color: var(--blue); letter-spacing: -0.5px; }
    .footer-brand .w { color: var(--teal); }
    .footer-brand .ba { color: var(--blue); font-style: normal; font-weight: 800; font-size: 14px; }
    .footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
    .footer-links a:hover { color: var(--blue); }
    .footer-disclaimer { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); color: #97A3B4; font-size: 12.5px; line-height: 1.6; max-width: 920px; }

    /* ---------- Sticky mobile CTA ---------- */
    .sticky-cta {
      position: fixed;
      left: 0; right: 0; bottom: 0;
      z-index: 50;
      display: none;
      padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-top: 1px solid var(--line);
      box-shadow: 0 -10px 30px rgba(7, 23, 45, 0.1);
      transform: translateY(110%);
      transition: transform 0.3s ease;
    }

    .sticky-cta.show { transform: translateY(0); }
    .sticky-cta .btn { width: 100%; min-height: 54px; }

    /* ---------- Reveal ---------- */
    .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .reveal, .funnel span, .live-dot, .tdot { animation: none; transition: none; opacity: 1; transform: none; }
    }

    /* ---------- Responsive ---------- */
    @media (max-width: 1050px) {
      .software, .founder, .mission, .form-card { grid-template-columns: 1fr; }
      .pillars, .stat-strip { grid-template-columns: 1fr; }
      .founder-photo { max-width: 280px; margin: 0 auto; }
      .nav-links { display: none; }
      .menu-btn { display: inline-flex; }
      .float-chip { display: none; }

      /* Hero stacks: headline â†’ video â†’ rest (video high, above the fold) */
      .hero-grid { display: flex; flex-direction: column; }
      .hero-top, .hero-media, .hero-bottom { grid-column: auto; grid-row: auto; width: 100%; }
      .hero-media { margin: 16px 0 4px; }
      .hero-proof { max-width: none; }
      .hero-highlight { max-width: none; }
    }

    @media (max-width: 720px) {
      .container { width: min(100% - 28px, var(--max)); }
      .topbar { font-size: 12.5px; padding: 9px 12px; }
      .nav { top: 0; }
      .nav-inner { height: 62px; }
      .brand .master { font-size: 21px; }
      .nav-cta .btn { display: none; }
      .section-lg { padding: 48px 0; }
      section { padding: 44px 0; }
      .hero { padding: 22px 0 36px; }
      .hero-media { margin: 12px 0 2px; }
      .hero-actions .btn { width: 100%; }
      .video-overlay-text { display: none; }
      .video-eyebrow { font-size: 14px; margin-bottom: 9px; }

      /* Phone hero order: headline â†’ video â†’ CTA â†’ proof â†’ highlight â†’ disclaimer â†’ trust */
      .hero-bottom { display: flex; flex-direction: column; align-items: flex-start; }
      .hero-bottom .hero-actions { order: 1; width: 100%; margin-top: 4px; }
      .hero-bottom .micro { order: 2; }
      .hero-bottom .countdown-pill { order: 3; }
      .hero-bottom .hero-proof { order: 4; margin-top: 18px; }
      .hero-bottom .hero-highlight { order: 5; }
      .hero-bottom .hero-trust { order: 6; }
      .hero-bottom .fine { order: 7; }
      .stat-card { padding: 22px; }
      .two-col, .form-grid, .dash-body, .funnel-box { grid-template-columns: 1fr; }
      .learn-grid { grid-template-columns: 1fr 1fr; }
      .sidebar { display: none; }
      .cost, .preframe { padding: 30px; }
      .founder { padding: 30px; text-align: center; }
      .mission { padding: 34px; }
      .registration { padding: 52px 0 40px; }
      .form-card { padding: 28px; gap: 26px; }
      .form-box { padding: 20px; }
      .date-large { font-size: 17px; }
      .sticky-cta { display: block; }
      body { padding-bottom: 84px; }
    }

    @media (max-width: 460px) {
      .learn-grid, .dash-metrics { grid-template-columns: 1fr; }
      .card, .software { padding: 24px; }
    }
    /* ---------- Language switcher ---------- */
    .lang-switch { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 800; letter-spacing: 0.02em; }
    .lang-switch a { color: #93A0B2; padding: 4px 7px; border-radius: 7px; transition: color 0.16s ease, background 0.16s ease; }
    .lang-switch a:hover { color: var(--blue); }
    .lang-switch a.active { color: var(--blue); background: rgba(25, 108, 214, 0.10); }
    .lang-sep { color: #C7D2E0; }
    .mobile-lang { padding: 16px 4px 4px; border-top: 1px solid var(--line); margin-top: 4px; }
