    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      /* Brand colors */
      --primary:        #1A2B44;  /* dark blue — buttons, nav solids */
      --primary-hover:  #243552;
      --secondary:      #f0622a;  /* orange coral — IQ viz, chart emphasis */
      --tertiary:       #f0622a;  /* orange coral — labels, soft accents */
      --font-sans:      ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
      --bg:             #000000;
      --glass:          rgba(244,247,255,0.86);
      --glass-h:        rgba(255,255,255,0.95);
      --gb:             rgba(26,43,68,0.16);
      --sh:             0 4px 18px rgba(5,25,48,.42), 0 1px 4px rgba(0,0,0,.28);
      --sh-lg:          0 18px 52px rgba(5,25,48,.52), 0 4px 18px rgba(0,0,0,.38);
      --text:           #A8C3D1;
      --muted:          #7A91A3;
      --subtle:         rgba(122,145,163,0.55);
      /* Legacy: most UI “accent” touches use tertiary (light blue) */
      --accent:         var(--tertiary);
      --a2:             #f5855a;
      --green:          #54667A;
      --iq-ink:         #1A2B44;
      --iq-body:        #54667A;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-sans);
      font-weight: 400;
      line-height: 1.7;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    body.menu-open {
      overflow: hidden;
    }
    .skip-link {
      position: absolute;
      top: -40px;
      left: 12px;
      z-index: 2000;
      padding: 8px 12px;
      border-radius: 8px;
      background: #ffffff;
      color: #051930;
      font-size: 0.8rem;
      text-decoration: none;
      transition: top 0.2s ease;
    }
    .skip-link:focus {
      top: 12px;
    }

    .page-main {
      position: relative;
      z-index: 1;
      padding-top: 108px;
      min-height: 100vh;
    }

    /* ── BACKGROUND (shader / legacy video) ── */
    #blobs {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }
    #blobs::after {
      content: "";
      position: absolute;
      inset: 0;
      background: none;
      z-index: 2;
      pointer-events: none;
    }
    #blobs canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }
    /* ── INTRO GATE ── */
    body.nf-gated { overflow: hidden; }
    .nf-gate {
      position: fixed;
      inset: 0;
      z-index: 1200;
      display: grid;
      place-items: center;
      padding: 48px 20px;
      pointer-events: auto;
      background: #000;
      transition: opacity .55s cubic-bezier(.16,1,.3,1), transform .55s cubic-bezier(.16,1,.3,1);
    }
    body.nf-entered .nf-gate {
      opacity: 0;
      pointer-events: none;
      transform: translateY(-6px);
    }
    .nf-gate-inner {
      width: min(720px, 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 28px;
      text-align: center;
    }
    .nf-gate-title {
      font-family: var(--font-sans);
      font-weight: 300;
      font-size: clamp(1.1rem, 2.2vw, 1.65rem);
      letter-spacing: 0.32em;
      color: rgba(255,255,255,0.95);
      margin: 0;
      text-shadow: 0 2px 30px rgba(0,0,0,0.55);
    }
    .nf-gate-title .nf-char {
      display: inline-block;
      opacity: 0;
      transform: translateY(8px);
    }
    .nf-gate-title.is-revealed .nf-char {
      opacity: 1;
      transform: translateY(0);
      transition: opacity .35s ease, transform .35s cubic-bezier(.16,1,.3,1);
    }

    .nf-gate-beam {
      width: min(640px, 100%);
      max-width: 100%;
      height: 160px;
      position: relative;
    }
    .nf-beam-line {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: 0;
      width: 75%;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(220,220,220,0.9), transparent);
      opacity: 0.9;
    }
    .nf-beam-line--blur { filter: blur(1px); }
    .nf-beam-line--crisp { height: 1px; opacity: 0.8; }
    .nf-beam-line--focus-blur {
      width: 25%;
      height: 5px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.95), transparent);
      filter: blur(2px);
      left: 50%;
      transform: translateX(-50%);
    }
    .nf-beam-line--focus-crisp {
      width: 25%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.95), transparent);
      left: 50%;
      transform: translateX(-50%);
      opacity: 0.9;
    }
    #nf-gate-sparkles {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
    }
    .nf-beam-mask {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.82);
      -webkit-mask-image: radial-gradient(350px 200px at top, transparent 20%, white);
              mask-image: radial-gradient(350px 200px at top, transparent 20%, white);
      pointer-events: none;
    }

    .nf-enter {
      display: inline-flex;
      align-items: center;
      gap: 0;
      padding: 12px 18px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(11, 22, 34, 0.55);
      color: rgba(255,255,255,0.92);
      backdrop-filter: blur(22px) saturate(145%);
      -webkit-backdrop-filter: blur(22px) saturate(145%);
      box-shadow: 0 14px 46px rgba(0,0,0,.36);
      cursor: pointer;
      font-size: .78rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      font-weight: 500;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity .55s cubic-bezier(.16,1,.3,1), transform .55s cubic-bezier(.16,1,.3,1), background .2s ease, border-color .2s ease;
    }
    .nf-enter.is-visible {
      opacity: 1;
      transform: translateY(0);
    }
    .nf-enter:hover {
      background: rgba(11, 22, 34, 0.62);
      border-color: rgba(255,255,255,0.2);
    }
    @media (prefers-reduced-motion: reduce) {
      .nf-gate { transition: none; }
      .nf-enter { transition: none; transform: none; opacity: 1; }
      .nf-gate-title .nf-char { opacity: 1; transform: none; }
    }
    /* ── GLASS (landing / nav only) ── */
    .glass {
      background: var(--glass);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      border: 1px solid rgba(244,247,255,0.75);
      box-shadow: 0 14px 36px rgba(5,25,48,.2), inset 0 1px 0 rgba(255,255,255,.92);
      transition: background .25s ease, backdrop-filter .25s ease, box-shadow .25s ease, transform .25s ease;
    }
    .glass:hover {
      background: var(--glass-h);
      backdrop-filter: blur(34px) saturate(220%);
      -webkit-backdrop-filter: blur(34px) saturate(220%);
      box-shadow: var(--sh-lg), inset 0 1px 0 rgba(255,255,255,.9);
    }

    /* ── BELOW LANDING: transparent so fixed video shows through ── */
    .below-landing {
      position: relative;
      z-index: 1;
      background: transparent;
      color: #e2e9f2;
    }
    .below-landing > * { position: relative; z-index: 1; }

    /* ── STORY SECTIONS ── */
    .story-section {
      min-height: min(72vh, 820px);
      display: flex;
      align-items: center;
      /* Match .hero horizontal gutters + centered column (1180) */
      padding: 56px 48px;
      position: relative;
      z-index: 2;
    }
    .story-inner {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 1180px;
      margin-left: auto;
      margin-right: auto;
    }
    .story-text {
      font-family: var(--font-sans);
      font-size: clamp(1.35rem, 2.8vw, 2.35rem);
      font-weight: 600;
      line-height: 1.38;
      color: #eef4fb;
      letter-spacing: -0.02em;
      margin: 0;
      text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45), 0 1px 2px rgba(0, 0, 0, 0.35);
    }
    .story-word {
      display: inline-block;
      overflow: hidden;
      vertical-align: baseline;
    }
    .story-word-inner {
      display: inline-block;
      transform: translateY(118%);
      opacity: 0;
      /* Targets still come from scroll (JS); transition = longer, softer in/out per word */
      transition:
        transform 0.78s cubic-bezier(0.18, 0.82, 0.22, 1),
        opacity 0.68s cubic-bezier(0.22, 0.61, 0.24, 1);
      will-change: transform, opacity;
    }
    @media (prefers-reduced-motion: reduce) {
      .story-word-inner {
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
      }
    }
    @media (max-width: 768px) {
      .story-section {
        padding: 40px 22px;
        min-height: 0;
      }
    }

    .story-alpha-cta {
      position: relative;
      z-index: 2;
      padding: 72px 48px 100px;
    }
    .story-alpha-cta__inner {
      max-width: 1180px;
      margin-left: auto;
      margin-right: auto;
    }
    .story-alpha-cta__title {
      font-family: var(--font-sans);
      font-size: clamp(1.5rem, 3vw, 2.1rem);
      font-weight: 600;
      letter-spacing: -0.02em;
      color: #fff;
      line-height: 1.2;
      margin: 0 0 14px;
      text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
    }
    .story-alpha-cta__lede {
      font-family: var(--font-sans);
      font-size: clamp(1rem, 1.35vw, 1.12rem);
      font-weight: 400;
      line-height: 1.65;
      color: rgba(226, 233, 242, 0.78);
      margin: 0 0 28px;
      max-width: 42ch;
    }
    .story-alpha-cta__btn {
      display: inline-flex;
      width: fit-content;
    }
    @media (max-width: 768px) {
      .story-alpha-cta {
        padding: 48px 22px 72px;
      }
    }

    .below-landing .lbl {
      color: #f0622a;
      letter-spacing: .18em;
    }
    .below-landing .lbl::before { background: #f0622a; }

    .below-landing .ttl {
      color: #fff;
      letter-spacing: -0.03em;
    }
    .below-landing .jd,
    .below-landing .fl,
    .below-landing .fls a,
    .below-landing .jm {
      color: rgba(226,233,242,.72) !important;
    }
    .below-landing .jt {
      color: #fff !important;
    }

    /* Solid cards instead of glass */
    .below-landing .glass {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(168,195,209,.16);
      box-shadow: 0 1px 0 rgba(255,255,255,.04) inset, 0 12px 40px rgba(0,0,0,.28);
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }
    .below-landing .glass:hover {
      background: rgba(255,255,255,.08);
      border-color: rgba(168,195,209,.26);
      box-shadow: 0 1px 0 rgba(255,255,255,.06) inset, 0 20px 50px rgba(0,0,0,.34);
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      transform: translateY(-2px);
    }

    .below-landing .badge {
      background: rgba(145,196,248,.18);
      border-color: rgba(145,196,248,.34);
      color: #e6f2ff;
    }
    .below-landing .bdot { background: var(--tertiary); }

    .below-landing .btn-g {
      background: transparent;
      color: #e2e9f2;
      border: 1px solid rgba(168,195,209,.35);
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      box-shadow: none;
    }
    .below-landing .btn-g:hover {
      background: rgba(168,195,209,.14);
      border-color: rgba(168,195,209,.5);
      color: #f4f8ff;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }
    .below-landing .btn-g.land-alpha-cta {
      background: var(--secondary);
      color: var(--primary);
      border: 1px solid rgba(26, 43, 68, 0.22);
      box-shadow: 0 6px 26px rgba(217, 242, 59, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    }
    .below-landing .btn-g.land-alpha-cta:hover {
      background: #e9fc50;
      color: var(--primary-hover);
      border-color: rgba(26, 43, 68, 0.3);
      transform: translateY(-2px);
      box-shadow: 0 12px 36px rgba(217, 242, 59, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.42);
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }

    .below-landing .legal-page {
      padding: 96px 28px 100px;
      border-bottom: 1px solid rgba(168, 195, 209, 0.18);
    }
    .below-landing .legal-inner {
      max-width: 680px;
      margin: 0 auto;
    }
    .below-landing .legal-inner .lbl {
      margin-bottom: clamp(14px, 2.5vw, 22px);
    }
    .below-landing .legal-inner > .ttl {
      margin-bottom: clamp(14px, 2vw, 18px);
    }
    .below-landing .legal-sub {
      font-family: var(--font-sans);
      font-size: clamp(1.35rem, 2.8vw, 1.65rem);
      font-weight: 400;
      color: rgba(255, 255, 255, 0.93);
      line-height: 1.35;
      margin-bottom: 12px;
    }
    .below-landing .legal-led {
      font-size: 1.05rem;
      line-height: 1.75;
      color: rgba(226, 233, 242, 0.78);
      max-width: 52ch;
      margin-bottom: 18px;
    }
    .below-landing .legal-updated {
      font-size: 0.82rem;
      letter-spacing: 0.04em;
      color: rgba(226, 233, 242, 0.52);
      margin-bottom: clamp(36px, 5vw, 48px);
    }
    .below-landing .legal-block {
      margin-bottom: clamp(28px, 4vw, 40px);
    }
    .below-landing .legal-block:last-of-type {
      margin-bottom: 0;
    }
    .below-landing .legal-block h2 {
      font-size: clamp(1.02rem, 1.85vw, 1.14rem);
      font-weight: 500;
      color: #fff;
      letter-spacing: -0.02em;
      line-height: 1.35;
      margin-bottom: 12px;
    }
    .below-landing .legal-block p {
      font-size: 1.02rem;
      line-height: 1.76;
      color: rgba(226, 233, 242, 0.76);
    }
    .below-landing .legal-block p + p {
      margin-top: 12px;
    }
    .below-landing .legal-block ul {
      list-style: none;
      padding: 0;
      margin: 12px 0 0;
    }
    .below-landing .legal-block li {
      position: relative;
      padding-left: 1.15em;
      margin-bottom: 10px;
      font-size: 1.02rem;
      line-height: 1.72;
      color: rgba(226, 233, 242, 0.76);
    }
    .below-landing .legal-block li::before {
      content: '●';
      position: absolute;
      left: 0;
      opacity: 0.5;
      font-size: 0.65em;
      top: 0.55em;
    }
    .below-landing .legal-inner .legal-email {
      color: var(--tertiary);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .below-landing .legal-inner .legal-email:hover {
      color: var(--a2);
    }

    .below-landing .beta-sec {
      padding: 88px 28px;
      border-bottom: 1px solid rgba(168,195,209,.18);
    }
    .below-landing .beta-card {
      max-width: none;
      margin: 0;
      padding: 0;
      border-radius: 0;
      text-align: left;
      background: transparent !important;
      border: none !important;
      box-shadow: none !important;
    }
    .below-landing .beta-inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
      gap: 56px;
      align-items: start;
    }
    .below-landing .beta-intro p {
      color: rgba(226,233,242,.78) !important;
    }

    .below-landing .tally-embed {
      grid-column: 1 / -1;
      width: 100%;
    }

    .below-landing .jobs {
      grid-template-columns: 1fr;
      gap: 12px;
      border: none;
      border-radius: 0;
      overflow: visible;
      background: transparent;
    }
    .below-landing .jc {
      border-radius: 14px;
      padding: 22px 22px;
      border: none;
      background: rgba(36,53,82,.82);
      box-shadow: none;
      transition: none;
    }
    .below-landing .jc:last-child { border-bottom: none; }
    .below-landing .jc:hover {
      background: rgba(36,53,82,.82);
      box-shadow: none;
      transform: none;
    }

    .below-landing footer {
      background: #000000;
      color: rgba(255,255,255,.78);
      border-top: none;
      padding: 56px 28px 32px;
      margin-top: 0;
    }
    .below-landing footer .logo {
      color: #ffffff !important;
    }
    .below-landing footer .fl,
    .below-landing footer .fls a,
    .below-landing footer .fb,
    .below-landing footer .fc h4 {
      color: rgba(255,255,255,.55) !important;
    }
    .below-landing footer .fls a:hover { color: rgba(255,255,255,.9) !important; }
    .below-landing footer .fb {
      border-top-color: rgba(255,255,255,.10);
    }
    .below-landing footer .fg { margin-bottom: 40px; }

    /* ── LAYOUT ── */
    .wrap { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
    section { position: relative; z-index: 1; }

    /* ── HEADER / NAV ── */
    .site-header {
      position: fixed;
      top: 12px;
      left: 50%;
      transform: translateX(-50%);
      width: min(1180px, calc(100% - 96px));
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      pointer-events: none;
    }
    .site-header > * { pointer-events: auto; }

    .site-logo {
      justify-self: auto;
    }

    .nav-pill {
      width: fit-content;
      border-radius: 999px;
      transition: box-shadow .3s;
    }
    .nav-pill.glass {
      border: 1px solid rgba(255,255,255,0.16);
      background: rgba(255,255,255,0);
      backdrop-filter: blur(16px) saturate(135%);
      -webkit-backdrop-filter: blur(16px) saturate(135%);
      box-shadow: none;
    }
    .nav-pill.glass:hover {
      border: 1px solid rgba(255,255,255,0.24);
      background: rgba(255,255,255,0.04);
      backdrop-filter: blur(20px) saturate(150%);
      -webkit-backdrop-filter: blur(20px) saturate(150%);
      box-shadow: none;
    }
    .nav-pill:hover { box-shadow: var(--sh-lg); }
    .nav-row {
      display: flex;
      align-items: center;
      padding: 10px 16px;
      min-height: 46px;
      gap: 10px;
      white-space: nowrap;
      align-items: center;
    }
    .logo {
      display: flex; align-items: center; gap: 10px;
      text-decoration: none; color: #fff;
      font-family: var(--font-sans);
      font-style: normal;
      font-weight: 400;
      font-size: 1.15rem;
      letter-spacing: .02em;
      justify-self: auto;
    }
    .logo--inline {
      display: inline-flex;
      width: fit-content;
    }
    .logo-mark {
      width: auto;
      height: 22px;
      flex-shrink: 0;
      display: block;
    }
    .logo svg { width: 28px; height: 28px; flex-shrink: 0; }

    .nav-links { display: flex; align-items: center; gap: 10px; list-style: none; }
    .nav-links-left { justify-self: auto; }
    .nav-links-right { justify-self: auto; }
    .nav-links a {
      display: inline-flex;
      align-items: center;
      line-height: 1;
      color: rgba(255,255,255,.9); text-decoration: none;
      font-size: .74rem; letter-spacing: .06em;
      transition: color .2s, background .2s, border-color .2s, box-shadow .2s;
      padding: 8px 13px;
      border-radius: 999px;
      border: 1px solid transparent;
    }
    .nav-links a:hover { color: #fff; }

    .nav-cta {
      background: var(--secondary);
      color: #071a30 !important;
      border: 1px solid rgba(217, 242, 59, 0.35);
      box-shadow: 0 10px 26px rgba(0,0,0,.22);
      font-weight: 600;
    }
    .nav-cta:hover {
      color: #071a30 !important;
      transform: translateY(-1px);
      box-shadow: 0 14px 34px rgba(0,0,0,.28);
    }

    .hbg {
      display:none;
      flex-direction:column;
      gap:4px;
      cursor:pointer;
      padding:6px;
      background: transparent;
      border: 0;
      color: inherit;
    }
    .hbg span { display:block; width:22px; height:1.5px; background:#fff; border-radius:2px; }

    /* mobile overlay */
    .mob { display:none; position:fixed; inset:0; z-index:950; background:rgba(5,25,48,.96); backdrop-filter:blur(40px); flex-direction:column; align-items:center; justify-content:center; gap:30px; }
    .mob.open { display:flex; }
    .mob a { font-family:var(--font-sans); font-style:italic; font-size:2.4rem; font-weight:400; color:var(--text); text-decoration:none; transition:color .2s; }
    .mob a:hover { color:var(--accent); }
    .mob-x { position:absolute; top:22px; right:26px; background:none; border:none; font-size:1.4rem; color:var(--muted); cursor:pointer; }

    /* ── HERO ── */
    /* ── ON-LOAD ANIMATION ── */
    @keyframes riseIn {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,0);
      border: 1px solid rgba(255,255,255,0.16);
      color: rgba(255,255,255,.95);
      font-size: .74rem;
      letter-spacing: .04em;
      backdrop-filter: blur(16px) saturate(135%);
      -webkit-backdrop-filter: blur(16px) saturate(135%);
    }
    .hero .hero-tag {
      opacity: 0;
      animation: riseIn .9s cubic-bezier(.16,1,.3,1) forwards;
      animation-delay: .1s;
    }
    /* Hidden until typing runs; stay visible after .done-typing is set */
    .hero h1 {
      opacity: 0;
      font-weight: 400;
    }
    .hero h1.typing-active,
    .hero h1.done-typing {
      opacity: 1;
    }
    .hero .hero-foot {
      opacity: 0;
    }
    .hero .hero-foot.is-revealed {
      animation: riseIn .9s cubic-bezier(.16,1,.3,1) forwards;
    }
    @media (prefers-reduced-motion: reduce) {
      .hero .hero-tag {
        animation: none;
        opacity: 1;
      }
      .hero .hero-foot.is-revealed {
        animation: none;
        opacity: 1;
      }
    }
    .hero h1.typing-active::after {
      content: '|';
      display: inline-block;
      margin-left: 1px;
      font-weight: 300;
      animation: cursor-blink .75s step-end infinite;
    }
    @keyframes cursor-blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }

    .hero {
      position: relative;
      z-index: 1;
      min-height: 100vh;
      display: flex;
      align-items: stretch;
      justify-content: flex-start;
      text-align: left;
      padding: 170px 48px 92px;
      overflow: visible;
    }

    .badge {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 16px; border-radius: 100px;
      background: rgba(145,196,248,.1); border: 1px solid rgba(145,196,248,.24);
      font-size: .72rem; color: var(--accent); letter-spacing: .12em; text-transform: uppercase;
      margin-bottom: 34px;
    }
    .bdot { width:5px; height:5px; background:var(--accent); border-radius:50%; animation: p 2s ease-in-out infinite; }
    @keyframes p { 0%,100%{opacity:1} 50%{opacity:.35} }

    h1 {
      font-family: var(--font-sans);
      font-size: clamp(2.6rem, 6.4vw, 5.2rem);
      font-weight: 600; line-height: 1.02; letter-spacing: -.03em;
      color: #fff; margin-bottom: 24px;
      text-shadow: 0 3px 14px rgba(0,0,0,.36);
    }

    .hero-sub {
      font-size: 1.07rem; color: rgba(255,255,255,.92);
      max-width: 540px; margin: 0 0 46px; line-height: 1.7;
      text-shadow: 0 2px 10px rgba(0,0,0,.32);
    }

    .ctas { display:flex; align-items:center; justify-content:flex-start; gap:11px; flex-wrap:wrap; }

    .btn-p {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 13px 32px; border-radius: 100px;
      background: var(--primary); color: #fff;
      text-decoration: none; font-size: .83rem; font-weight: 500;
      border: 1px solid transparent; cursor: pointer;
      box-shadow: 0 8px 28px rgba(26,43,68,.38);
      transition: all .25s ease;
    }
    .btn-p:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(26,43,68,.44); }

    .btn-g {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 13px 32px; border-radius: 100px;
      background: var(--glass); border: 1px solid rgba(26,43,68,.18);
      color: var(--primary); text-decoration: none; font-size: .83rem;
      font-weight: 500;
      backdrop-filter: blur(16px) saturate(170%); cursor: pointer;
      box-shadow: 0 10px 24px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.55);
      transition: all .25s ease;
    }
    .btn-g:hover {
      background: var(--glass-h);
      color: var(--primary-hover);
      border-color: rgba(26,43,68,.26);
      backdrop-filter: blur(26px) saturate(210%);
      transform: translateY(-2px);
      box-shadow: var(--sh-lg);
    }

    .hero-inner {
      max-width: 1180px;
      margin: 0 auto;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: clamp(28px, 4vw, 48px);
    }

    .hero-head {
      padding-top: 10px;
    }

    .hero-foot {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 22px;
      flex-wrap: wrap;
    }

    .hero-foot .hero-sub {
      margin: 0;
      max-width: 560px;
    }

    .hero-foot .ctas {
      justify-content: flex-end;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 14px 12px 16px;
      border-radius: 999px;
      text-decoration: none;
      background: rgba(11, 22, 34, 0.55);
      border: 1px solid rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.92);
      backdrop-filter: blur(20px) saturate(140%);
      -webkit-backdrop-filter: blur(20px) saturate(140%);
      box-shadow: 0 10px 30px rgba(0,0,0,.28);
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
      font-size: .78rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      font-weight: 500;
      white-space: nowrap;
    }
    .hero-cta:hover {
      transform: translateY(-2px);
      background: rgba(11, 22, 34, 0.62);
      border-color: rgba(255,255,255,0.18);
      box-shadow: 0 14px 42px rgba(0,0,0,.34);
    }
    .hero-cta-arrow {
      width: 34px;
      height: 34px;
      border-radius: 12px;
      background: rgba(240,98,42,0.95);
      color: #071a30;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      line-height: 1;
      flex-shrink: 0;
    }
    /* ── SHARED LABELS / TITLES ── */
    .lbl {
      font-size: .69rem; letter-spacing: .22em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 13px;
      display: flex; align-items: center; gap: 11px;
    }
    .lbl::before { content:''; width:26px; height:1px; background:var(--accent); }

    .ttl {
      font-family: var(--font-sans);
      font-size: clamp(2.2rem, 4.5vw, 3.6rem);
      font-weight: 400; line-height: 1.1; letter-spacing: -.02em;
      color: var(--text); margin-bottom: 16px;
    }
    /* ── BETA ── */
    .beta-sec { padding: 110px 28px; }
    .beta-card { max-width: 720px; margin: 0 auto; padding: 72px 64px; border-radius: 32px; text-align: center; }

    /* ── CAREERS ── */
    .jobs { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
    .jc {
      display:block; text-decoration:none; color:inherit;
      padding:34px; border-radius:22px; position:relative; overflow:hidden;
      transition: all .3s;
    }
    .jc:hover { transform:translateY(-4px); box-shadow:var(--sh-lg); background:var(--glass-h); }
    .jc::after { content:'→'; position:absolute; top:34px; right:34px; font-size:.95rem; color:var(--subtle); transition:all .3s; }
    .jc:hover::after { color:var(--accent); transform:translateX(4px); }

    .jt { font-family:var(--font-sans); font-size:1.38rem; font-weight:400; color:var(--text); margin-bottom:9px; line-height:1.2; }
    .jd { font-size:.8rem; color:var(--muted); line-height:1.62; }
    .jm { margin-top:18px; font-size:.73rem; color:var(--subtle); display:flex; align-items:center; gap:7px; }
    .md { width:3px; height:3px; border-radius:50%; background:currentColor; }

    /* ── FOOTER ── */
    footer { padding: 68px 28px 36px; border-top: 1px solid rgba(145,196,248,.14); position:relative; z-index:1; }
    .fg { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:50px; }
    .fl { color:var(--muted); font-size:.8rem; line-height:1.65; max-width:250px; margin-top:14px; }
    .fc h4 { font-size:.66rem; letter-spacing:.18em; text-transform:uppercase; color:var(--subtle); margin-bottom:15px; }
    .fls { list-style:none; display:flex; flex-direction:column; gap:9px; }
    .fls a { color:var(--muted); text-decoration:none; font-size:.8rem; transition:color .2s; }
    .fls a:hover { color:var(--text); }
    .fb { display:flex; justify-content:space-between; align-items:center; padding-top:28px; border-top:1px solid rgba(145,196,248,.12); color:var(--subtle); font-size:.72rem; }

    /* ── SCROLL ANIMATIONS ── */
    .fi { opacity:0; transform:translateY(22px); transition:opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
    .fi.on { opacity:1; transform:translateY(0); }
    .d1 { transition-delay:.1s; }
    .d2 { transition-delay:.2s; }
    .d3 { transition-delay:.32s; }

    /* ── RESPONSIVE ── */
    @media(max-width:1024px) {
      .fg { grid-template-columns:1fr 1fr; gap:36px; }
      .below-landing .beta-inner { grid-template-columns: 1fr; gap: 36px; }
    }
    @media(max-width:768px) {
      nav { top:10px; left:10px; right:10px; width:auto; transform:none; border-radius:16px; }
      .nav-row {
        padding: 14px 16px;
        min-height: 74px;
        display:flex;
        align-items:center;
        justify-content: space-between;
      }
      .logo { justify-self: auto; }
      .nav-links { display:none; }
      .hbg { display:flex; }
      .hero {
        padding: 100px 22px 56px;
        align-items: stretch;
        justify-content: flex-start;
      }
      .hero-sub { max-width: 100%; margin: 0 0 32px; }
      .jobs { grid-template-columns:1fr; }
      .beta-card { padding:52px 28px; }
      .fg { grid-template-columns:1fr; gap:30px; }
      .fb { flex-direction:column; gap:9px; text-align:center; }
    }
