
  :root{
    --void:#0b1020;
    --surface:#111827;
    --surface-2:#16202f;
    --line: rgba(248,250,252,0.09);
    --line-strong: rgba(248,250,252,0.18);
    --blue:#3b82f6;
    --blue-soft: rgba(59,130,246,0.14);
    --cyan:#06b6d4;
    --purple:#8b5cf6;
    --purple-soft: rgba(139,92,246,0.16);
    --ink:#f8fafc;
    --mist:#94a3b8;
    --mist-dim:#64748b;
    --grad: linear-gradient(120deg, var(--blue) 0%, var(--purple) 55%, var(--cyan) 100%);
    --grad-soft: linear-gradient(120deg, rgba(59,130,246,0.16), rgba(139,92,246,0.16));
    --radius: 20px;
    --radius-sm: 12px;
    --ease: cubic-bezier(.16,.84,.32,1);
    --maxw: 1440px;
  }

  *{ box-sizing:border-box; margin:0; padding:0; }
  html{ scroll-behavior:smooth; background:var(--void); width:100%; overflow-x:hidden; }
  body{
    background:var(--void); color:var(--ink); font-family:'Manrope', -apple-system, sans-serif;
    font-size:16px; line-height:1.6; overflow-x:hidden; -webkit-font-smoothing:antialiased; width:100%;
  }
  ::selection{ background:var(--purple); color:#fff; }
  h1,h2,h3,h4{ font-family:'Space Grotesk', sans-serif; font-weight:600; letter-spacing:-0.02em; line-height:1.1; }
  .mono{ font-family:'JetBrains Mono', monospace; letter-spacing:0.06em; text-transform:uppercase; }
  a{ color:inherit; text-decoration:none; }
  ul{ list-style:none; }
  img{ max-width:100%; display:block; }
  *, *::before, *::after{ min-width:0; }
  .wrap{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 clamp(20px, 4.5vw, 72px); }
  :focus-visible{ outline:2px solid var(--cyan); outline-offset:4px; border-radius:4px; }

  /* ambient */
  .grain{ position:fixed; inset:0; z-index:2; pointer-events:none; opacity:0.045; mix-blend-mode:overlay;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
  .cursor-glow{ position:fixed; top:0; left:0; width:440px; height:440px; border-radius:50%;
    background:radial-gradient(circle, rgba(59,130,246,0.16), rgba(139,92,246,0.08) 45%, transparent 70%);
    transform:translate(-50%,-50%); pointer-events:none; z-index:1; transition:opacity .3s ease; opacity:0; will-change:transform; }
  .has-hover .cursor-glow{ opacity:1; }

  /* nav */
  nav{ position:fixed; top:0; left:0; right:0; z-index:50; padding:26px 0; transition:all .4s var(--ease); border-bottom:1px solid transparent; }
  nav.scrolled{ padding:16px 0; background:rgba(7,10,19,0.75); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px); border-bottom:1px solid var(--line); }
  nav .wrap{ display:flex; align-items:center; justify-content:space-between; }
  .brand{ font-family:'Space Grotesk', sans-serif; font-weight:700; font-size:19px; letter-spacing:-0.01em; display:flex; align-items:center; gap:9px; }
  .brand-mark{ width:9px; height:9px; border-radius:2px; background:var(--grad); flex-shrink:0; }
  .nav-links{ display:flex; gap:32px; align-items:center; }
  .nav-links a{ font-size:14px; color:var(--mist); transition:color .25s; }
  .nav-links a:hover{ color:var(--ink); }
  .nav-cta{ font-size:13px; padding:10px 20px; border-radius:999px; border:1px solid var(--line-strong); background:rgba(238,241,248,0.03); transition:all .25s; }
  .nav-cta:hover{ border-color:var(--cyan); background:var(--blue-soft); }
  .nav-toggle{ display:none; width:40px; height:40px; border-radius:10px; border:1px solid var(--line-strong); background:rgba(248,250,252,0.03); align-items:center; justify-content:center; cursor:pointer; flex-shrink:0; }
  .nav-toggle span{ display:block; width:16px; height:2px; background:var(--ink); position:relative; transition:background .2s; }
  .nav-toggle span::before, .nav-toggle span::after{ content:''; position:absolute; left:0; width:16px; height:2px; background:var(--ink); transition:transform .3s var(--ease), top .3s var(--ease); }
  .nav-toggle span::before{ top:-6px; }
  .nav-toggle span::after{ top:6px; }
  .nav-toggle.open span{ background:transparent; }
  .nav-toggle.open span::before{ top:0; transform:rotate(45deg); }
  .nav-toggle.open span::after{ top:0; transform:rotate(-45deg); }
  .mobile-menu{ position:fixed; top:0; right:0; height:100vh; width:min(320px, 84vw); background:rgba(11,16,32,0.92); backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px); border-left:1px solid var(--line); z-index:60; display:flex; flex-direction:column; gap:8px; padding:100px 32px 40px; transform:translateX(100%); transition:transform .4s var(--ease); }
  .mobile-menu.open{ transform:translateX(0); }
  .mobile-menu a{ font-size:17px; padding:14px 0; border-bottom:1px solid var(--line); color:var(--ink); }
  .mobile-menu .nav-cta{ margin-top:20px; text-align:center; border:1px solid var(--line-strong); }
  @media(max-width:900px){ .nav-links{ display:none; } .nav-toggle{ display:flex; } }
  @media(min-width:901px){ .mobile-menu, .nav-toggle{ display:none; } }

  /* hero */
  .hero{ position:relative; min-height:100vh; display:flex; flex-direction:column; justify-content:center; padding-top:120px; overflow:hidden; }
  .hero-canvas{ position:absolute; inset:0; z-index:0; opacity:0.6; }
  .hero-core{ position:absolute; top:50%; left:50%; width:220px; height:220px; transform:translate(-50%,-50%) rotate(45deg);
    border:1px solid rgba(139,92,246,0.35); border-radius:28px; z-index:0; animation:pulseCore 5s ease-in-out infinite; }
  .hero-core::before{ content:''; position:absolute; inset:24px; border:1px solid rgba(6,182,212,0.3); border-radius:20px; }
  @keyframes pulseCore{ 0%,100%{ opacity:0.35; transform:translate(-50%,-50%) rotate(45deg) scale(1);} 50%{ opacity:0.75; transform:translate(-50%,-50%) rotate(45deg) scale(1.06);} }
  .hero-glow{ position:absolute; top:-10%; left:50%; width:900px; height:900px; transform:translateX(-50%);
    background:radial-gradient(circle, rgba(139,92,246,0.16), transparent 60%); pointer-events:none; z-index:0; }
  .hero .wrap{ position:relative; z-index:2; }
  .eyebrow{ display:inline-flex; align-items:center; gap:10px; font-size:12px; color:var(--cyan); padding:8px 16px;
    border:1px solid var(--line-strong); border-radius:999px; background:rgba(6,182,212,0.06); margin-bottom:32px; }
  .eyebrow::before{ content:''; width:6px; height:6px; border-radius:50%; background:var(--cyan); box-shadow:0 0 10px var(--cyan); }
  .hero h1{ font-size:clamp(36px, 6vw, 78px); max-width:15ch; margin-bottom:28px; }
  .hero h1 .grad-text{ background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent; }
  .hero p.lede{ font-size:19px; color:var(--mist); max-width:50ch; margin-bottom:40px; }
  .hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:88px; }
  .btn{ display:inline-flex; align-items:center; gap:10px; padding:15px 28px; border-radius:999px; font-size:14.5px;
    font-weight:600; transition:all .3s var(--ease); cursor:pointer; border:none; font-family:'Manrope', sans-serif; }
  .btn-primary{ background:var(--grad); color:#0b1020; }
  .btn-primary:hover{ transform:translateY(-2px); box-shadow:0 12px 32px -8px rgba(59,130,246,0.45); }
  .btn-ghost{ background:transparent; border:1px solid var(--line-strong); color:var(--ink); }
  .btn-ghost:hover{ background:rgba(238,241,248,0.05); border-color:var(--mist); }
  .btn svg{ width:16px; height:16px; transition:transform .3s var(--ease); }
  .btn:hover svg{ transform:translateX(3px); }
  .hero-stats{ display:flex; gap:56px; flex-wrap:wrap; padding-top:36px; border-top:1px solid var(--line); }
  .hstat b{ display:block; font-family:'Space Grotesk',sans-serif; font-size:28px; font-weight:700; }
  .hstat span{ font-size:13px; color:var(--mist-dim); }

  .reveal{ opacity:0; transform:translateY(28px); transition:opacity .9s var(--ease), transform .9s var(--ease); }
  .reveal.in-view{ opacity:1; transform:translateY(0); }
  .reveal-1{ transition-delay:.05s; } .reveal-2{ transition-delay:.15s; } .reveal-3{ transition-delay:.25s; } .reveal-4{ transition-delay:.35s; } .reveal-5{ transition-delay:.45s; } .reveal-6{ transition-delay:.55s; }

  .section-head{ text-align:center; max-width:640px; margin:0 auto 88px; }
  .section-head.left{ text-align:left; margin:0 0 60px; }
  .section-head .tag{ color:var(--cyan); display:block; margin-bottom:16px; font-size:12px; }
  .section-head h2{ font-size:clamp(28px,4vw,44px); margin-bottom:18px; }
  .section-head p{ color:var(--mist); font-size:16px; }
  section{ position:relative; }

  .glass{ background:rgba(20,27,44,0.55); border:1px solid var(--line); border-radius:var(--radius); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px); }

  /* ---- 2. IDEA split ---- */
  .idea{ padding:80px 0 40px; }
  .idea-grid{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:70px; align-items:center; }
  .idea-art{ position:relative; aspect-ratio:1/1; display:flex; align-items:center; justify-content:center; }
  .idea-art svg{ width:100%; height:100%; max-width:340px; }
  .idea-copy .tag{ color:var(--cyan); font-size:12px; display:block; margin-bottom:18px; }
  .idea-copy h2{ font-size:clamp(26px,3.6vw,40px); margin-bottom:22px; max-width:14ch; }
  .idea-copy p{ color:var(--mist); font-size:16.5px; max-width:48ch; margin-bottom:16px; }
  .idea-copy p strong{ color:var(--ink); font-weight:600; }
  .idea-link{ display:inline-flex; align-items:center; gap:8px; color:var(--cyan); font-size:14.5px; font-weight:600; margin-top:12px; }
  .idea-link svg{ width:15px; height:15px; transition:transform .3s var(--ease); }
  .idea-link:hover svg{ transform:translateX(4px); }
  @media(max-width:880px){ .idea-grid{ grid-template-columns:1fr; gap:40px; } .idea-art{ max-width:260px; margin:0 auto; } }

  /* ---- 3. ROADMAP horizontal ---- */
  .roadmap-section{ padding:100px 0; }
  .roadmap{ display:flex; position:relative; padding-top:8px; }
  .roadmap::before{ content:''; position:absolute; top:23px; left:0; right:0; height:2px; background:var(--line); }
  .rstep{ flex:1; position:relative; padding-top:48px; cursor:pointer; text-align:center; }
  .rstep-dot{ position:absolute; top:14px; left:50%; transform:translate(-50%,-50%); width:18px; height:18px; border-radius:50%;
    background:var(--surface-2); border:2px solid var(--mist-dim); transition:all .35s var(--ease); z-index:1; }
  .rstep.active .rstep-dot{ border-color:var(--cyan); background:var(--grad); box-shadow:0 0 0 6px rgba(6,182,212,0.12), 0 0 22px rgba(139,92,246,0.5); }
  .rstep-num{ font-size:11px; color:var(--mist-dim); display:block; margin-bottom:8px; }
  .rstep h3{ font-size:16px; margin-bottom:10px; transition:color .3s; }
  .rstep.active h3{ color:var(--cyan); }
  .rstep-desc{ max-height:0; overflow:hidden; opacity:0; transition:all .4s var(--ease); font-size:13.5px; color:var(--mist); padding:0 10px; }
  .rstep.active .rstep-desc{ max-height:120px; opacity:1; padding-top:2px; }
  @media(max-width:820px){
    .roadmap{ flex-direction:column; gap:6px; }
    .roadmap::before{ top:0; bottom:0; left:9px; right:auto; width:2px; height:auto; }
    .rstep{ padding:0 0 24px 40px; text-align:left; }
    .rstep-dot{ top:4px; left:0; transform:translateY(0); }
    .rstep-desc{ padding:0; }
    .rstep.active .rstep-desc{ padding-top:6px; }
  }

  /* ---- 4. PILLARS 3 large ---- */
  .pillars3-section{ padding:60px 0 120px; }
  .pillars3{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
  .pcard{ padding:38px 32px; position:relative; overflow:hidden; transition:border-color .4s, transform .4s var(--ease); }
  .pcard:hover{ transform:translateY(-6px); border-color:var(--line-strong); }
  .pcard-icon{ width:60px; height:60px; border-radius:16px; display:flex; align-items:center; justify-content:center; margin-bottom:26px; position:relative; }
  .pcard-icon svg{ width:28px; height:28px; position:relative; z-index:1; }
  .pi-build{ background:var(--blue-soft); color:var(--blue); }
  .pi-automate{ background:var(--purple-soft); color:var(--purple); }
  .pi-extend{ background:rgba(6,182,212,0.14); color:var(--cyan); }
  .pcard h3{ font-size:23px; margin-bottom:12px; }
  .pcard > p{ color:var(--mist); font-size:14.5px; margin-bottom:22px; }
  .ptags{ display:flex; flex-wrap:wrap; gap:8px; }
  .ptags span{ font-size:11.5px; padding:6px 12px; border-radius:999px; border:1px solid var(--line-strong); color:var(--mist); }
  .gear-spin{ animation:spin 8s linear infinite; transform-origin:center; }
  @keyframes spin{ to{ transform:rotate(360deg); } }
  @media(max-width:900px){ .pillars3{ grid-template-columns:1fr; } }

  /* ---- 5. MERGE ---- */
  .merge-section{ padding:60px 0 130px; }
  .merge{ display:grid; grid-template-columns:1fr 220px 1fr; gap:0; align-items:center; }
  .merge-col{ padding:36px; }
  .merge-col h4{ font-size:13px; color:var(--mist-dim); margin-bottom:20px; }
  .merge-col ul li{ font-size:15.5px; padding:12px 0; border-top:1px solid var(--line); display:flex; align-items:center; gap:10px; }
  .merge-col ul li:first-child{ border-top:none; }
  .merge-col ul li::before{ content:''; width:6px; height:6px; border-radius:50%; flex-shrink:0; }
  .merge-col.client ul li::before{ background:var(--cyan); }
  .merge-col.us ul li::before{ background:var(--purple); }
  .merge-center{ display:flex; flex-direction:column; align-items:center; gap:14px; position:relative; padding:20px; }
  .merge-center::before, .merge-center::after{ content:''; position:absolute; top:50%; width:36px; height:1px; }
  .merge-center::before{ left:-36px; background:linear-gradient(90deg, transparent, var(--cyan)); }
  .merge-center::after{ right:-36px; background:linear-gradient(270deg, transparent, var(--purple)); }
  .merge-node{ width:96px; height:96px; border-radius:50%; background:var(--grad); display:flex; align-items:center; justify-content:center;
    box-shadow:0 0 50px rgba(139,92,246,0.4); animation:mergeGlow 4s ease-in-out infinite; }
  .merge-node svg{ width:36px; height:36px; color:#0b1020; }
  @keyframes mergeGlow{ 0%,100%{ box-shadow:0 0 40px rgba(139,92,246,0.35);} 50%{ box-shadow:0 0 64px rgba(59,130,246,0.55);} }
  .merge-center span{ font-size:13px; text-align:center; font-weight:600; max-width:14ch; }
  @media(max-width:840px){
    .merge{ grid-template-columns:1fr; gap:24px; }
    .merge-center::before, .merge-center::after{ display:none; }
  }

  /* ---- 6. PROCESS thread (reused mechanic) ---- */
  .process-section{ position:relative; padding:100px 0 60px; }
  .thread-wrap{ position:relative; }
  .thread-track{ position:absolute; top:0; left:50%; width:2px; height:100%; transform:translateX(-50%); z-index:0; }
  .thread-base{ position:absolute; inset:0; background:var(--line); }
  .thread-fill{ position:absolute; top:0; left:0; width:100%; height:0%; background:var(--grad); box-shadow:0 0 20px rgba(139,92,246,0.5); transition:height .1s linear; }
  .thread-node{ position:absolute; left:50%; width:14px; height:14px; border-radius:50%; background:var(--surface-2); border:2px solid var(--mist-dim); transform:translate(-50%,-50%); transition:all .5s var(--ease); z-index:2; }
  .thread-node.is-lit{ border-color:var(--cyan); background:var(--grad); box-shadow:0 0 0 6px rgba(6,182,212,0.12), 0 0 24px rgba(139,92,246,0.5); }
  .stages{ position:relative; z-index:1; }
  .stage{ display:flex; width:calc(50% - 48px); margin-bottom:64px; min-height:170px; align-items:center; }
  .stage:nth-child(odd){ margin-right:auto; justify-content:flex-end; text-align:right; }
  .stage:nth-child(even){ margin-left:auto; justify-content:flex-start; text-align:left; }
  .stage-card{ padding:32px; transition:border-color .4s, transform .4s var(--ease), background .4s; }
  .stage.in-view .stage-card{ border-color:var(--line-strong); background:rgba(20,27,44,0.8); }
  .stage-card:hover{ transform:translateY(-4px); }
  .stage-num{ font-size:12px; color:var(--mist-dim); margin-bottom:14px; display:block; }
  .stage:nth-child(odd) .stage-icon{ margin-left:auto; }
  .stage-icon{ width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center; background:var(--surface-2); border:1px solid var(--line-strong); color:var(--cyan); margin-bottom:18px; }
  .stage-icon svg{ width:20px; height:20px; }
  .stage-card h3{ font-size:22px; margin-bottom:10px; }
  .stage-card p{ color:var(--mist); font-size:15px; max-width:34ch; }
  .stage:nth-child(odd) .stage-card p{ margin-left:auto; }
  @media(max-width:860px){
    .thread-track{ left:20px; }
    .stage, .stage:nth-child(odd), .stage:nth-child(even){ width:100%; margin:0 0 48px 56px; justify-content:flex-start; text-align:left; }
    .stage:nth-child(odd) .stage-icon, .stage:nth-child(odd) .stage-card p{ margin-left:0; }
    .thread-node{ left:20px; }
  }

  /* ---- 7. CASE STUDIES ---- */
  .cases{ padding:70px 0 140px; }
  .case-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
  .case-grid > .case-card:nth-child(1){ grid-column:span 2; }
  .case-card{ padding:34px; transition:border-color .4s, transform .1s linear; transform-style:preserve-3d; will-change:transform; }
  .case-card:hover{ border-color:var(--line-strong); }
  .case-tag{ display:inline-block; font-size:11px; padding:6px 12px; border-radius:999px; background:var(--surface-2); border:1px solid var(--line-strong); color:var(--cyan); margin-bottom:20px; }
  .case-card h3{ font-size:22px; margin-bottom:10px; }
  .case-row{ margin-bottom:14px; }
  .case-row span{ display:block; font-size:11.5px; color:var(--mist-dim); margin-bottom:4px; }
  .case-row p{ font-size:14.5px; color:var(--mist); }
  .case-impact{ margin-top:20px; padding-top:20px; border-top:1px solid var(--line); font-family:'Space Grotesk',sans-serif; font-size:18px; font-weight:600; background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent; }
  .case-tech{ font-size:12px; color:var(--mist-dim); margin-top:8px; }
  @media(max-width:900px){ .case-grid{ grid-template-columns:1fr 1fr; } .case-grid > .case-card:nth-child(1){ grid-column:span 2; } }
  @media(max-width:640px){ .case-grid{ grid-template-columns:1fr; } .case-grid > .case-card:nth-child(1){ grid-column:span 1; } }

  /* ---- 8/11. ORBIT (industries + tech) ---- */
  .orbit-section{ padding:70px 0 140px; }
  .orbit-scroll{ overflow-x:auto; padding:20px 0; }
  .orbit{ position:relative; width:100%; max-width:640px; aspect-ratio:1/1; margin:0 auto; min-width:440px; }
  .orbit-center{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:150px; height:150px; border-radius:50%;
    display:flex; align-items:center; justify-content:center; text-align:center; font-size:13.5px; font-weight:600; padding:16px;
    background:radial-gradient(circle, rgba(139,92,246,0.18), rgba(20,27,44,0.9) 70%); border:1px solid var(--line-strong); z-index:2; }
  .orbit-ring{ position:absolute; inset:8%; border:1px dashed var(--line); border-radius:50%; }
  .onode{ position:absolute; transform:translate(-50%,-50%); padding:10px 16px; border-radius:999px; font-size:12.5px; font-weight:600;
    white-space:nowrap; cursor:default; transition:all .3s var(--ease); z-index:1; }
  .onode:hover{ border-color:var(--cyan); background:rgba(6,182,212,0.12); transform:translate(-50%,-50%) scale(1.08); box-shadow:0 0 24px rgba(6,182,212,0.25); }
  .onode-tip{ position:absolute; top:130%; left:50%; transform:translateX(-50%); font-size:11px; font-weight:400; color:var(--mist);
    background:var(--surface-2); border:1px solid var(--line-strong); padding:8px 12px; border-radius:10px; white-space:normal; width:170px;
    text-align:center; opacity:0; pointer-events:none; transition:opacity .25s; }
  .onode:hover .onode-tip{ opacity:1; }

  /* ---- 9. WHY CLIENTS chain ---- */
  .chain-section{ padding:70px 0 140px; }
  .chain{ max-width:640px; margin:0 auto; position:relative; padding-left:36px; }
  .chain::before{ content:''; position:absolute; left:9px; top:10px; bottom:10px; width:2px; background:linear-gradient(var(--blue), var(--purple), var(--cyan)); opacity:0.4; }
  .clink{ position:relative; padding:0 0 40px 24px; }
  .clink::before{ content:''; position:absolute; left:-36px; top:4px; width:14px; height:14px; border-radius:50%; background:var(--surface-2); border:2px solid var(--mist-dim); transition:all .4s; }
  .clink.in-view::before{ border-color:var(--cyan); background:var(--grad); box-shadow:0 0 14px rgba(139,92,246,0.5); }
  .clink h3{ font-size:19px; margin-bottom:6px; }
  .clink p{ font-size:14.5px; color:var(--mist); }

  /* ---- 10. TESTIMONIALS ---- */
  .testi-section{ padding:70px 0 140px; }
  .testi-rotator{ max-width:760px; margin:0 auto; position:relative; min-height:260px; }
  .testi-card{ position:absolute; inset:0; padding:56px 48px; text-align:center; opacity:0; transform:translateY(12px); transition:opacity .6s var(--ease), transform .6s var(--ease); pointer-events:none; }
  .testi-card.active{ opacity:1; transform:translateY(0); pointer-events:auto; position:relative; }
  .testi-badge{ width:44px; height:44px; border-radius:12px; background:var(--grad); display:flex; align-items:center; justify-content:center;
    margin:0 auto 24px; font-family:'Space Grotesk',sans-serif; font-weight:700; color:#0b1020; font-size:15px; }
  .testi-card p.quote{ font-size:clamp(18px,2.2vw,23px); font-family:'Space Grotesk',sans-serif; font-weight:500; line-height:1.5; margin-bottom:24px; }
  .testi-attr{ color:var(--mist-dim); font-size:13.5px; margin-bottom:6px; }
  .testi-metric{ display:inline-block; font-size:12px; padding:6px 14px; border-radius:999px; border:1px solid var(--line-strong); color:var(--cyan); }
  .testi-dots{ display:flex; justify-content:center; gap:10px; margin-top:32px; }
  .testi-dots button{ width:8px; height:8px; border-radius:50%; background:var(--line-strong); border:none; cursor:pointer; transition:all .3s; padding:0; }
  .testi-dots button.active{ background:var(--grad); width:22px; }

  /* ---- 12. CONTINUUM ticker ---- */
  .continuum-section{ padding:70px 0 140px; overflow:hidden; }
  .ticker-mask{ overflow:hidden; border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:34px 0; }
  .ticker-track{ display:flex; width:max-content; animation:tickerScroll 26s linear infinite; }
  .ticker-track:hover{ animation-play-state:paused; }
  .ticker-item{ display:flex; align-items:center; gap:18px; padding:0 44px; font-family:'Space Grotesk',sans-serif; font-size:22px; font-weight:600; color:var(--mist); white-space:nowrap; }
  .ticker-item .dot{ width:6px; height:6px; border-radius:50%; background:var(--grad); }
  @keyframes tickerScroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

  /* ---- 13. FINAL CTA ---- */
  .cta{ position:relative; padding:140px 0; overflow:hidden; }
  .cta-bg{ position:absolute; inset:0; background:radial-gradient(ellipse at 50% 0%, rgba(59,130,246,0.18), transparent 60%); z-index:0; }
  .cta .wrap{ position:relative; z-index:1; }
  .cta-inner{ max-width:640px; margin:0 auto; text-align:center; }
  .cta h2{ font-size:clamp(30px,4.6vw,52px); margin-bottom:20px; }
  .cta p.lede{ color:var(--mist); font-size:17px; margin-bottom:40px; }
  .cta-actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-bottom:56px; }
  .cta-form{ display:flex; flex-direction:column; gap:14px; text-align:left; max-width:520px; margin:0 auto; padding:32px; }
  .cta-form label{ font-size:12px; color:var(--mist-dim); margin-bottom:2px; display:block; }
  .cta-form input, .cta-form textarea{ width:100%; background:var(--void); border:1px solid var(--line-strong); border-radius:10px; padding:13px 14px; color:var(--ink); font-family:'Manrope',sans-serif; font-size:14.5px; transition:border-color .25s; resize:none; }
  .cta-form input:focus, .cta-form textarea:focus{ outline:none; border-color:var(--cyan); }
  .field{ display:flex; flex-direction:column; gap:6px; }
  .cta-form .btn-primary{ margin-top:8px; justify-content:center; }
  .form-success{ display:none; text-align:center; padding:20px 0; color:var(--cyan); font-family:'Space Grotesk',sans-serif; font-weight:600; }
  .cta-form.sent .field, .cta-form.sent button{ display:none; }
  .cta-form.sent .form-success{ display:block; }

  /* ---- footer ---- */
  footer{ border-top:1px solid var(--line); padding:64px 0 40px; }
  .foot-top{ display:flex; justify-content:space-between; gap:48px; flex-wrap:wrap; margin-bottom:48px; }
  .foot-about{ max-width:320px; }
  .foot-about p{ color:var(--mist); font-size:14px; margin-top:14px; }
  .foot-social{ display:flex; gap:14px; margin-top:22px; }
  .foot-social a{ font-size:12.5px; color:var(--mist); border:1px solid var(--line-strong); padding:8px 14px; border-radius:999px; transition:all .2s; }
  .foot-social a:hover{ color:var(--ink); border-color:var(--cyan); }
  .foot-links{ display:flex; gap:56px; flex-wrap:wrap; }
  .foot-col span{ display:block; font-size:12px; color:var(--mist-dim); margin-bottom:14px; }
  .foot-col a, .foot-col p{ display:block; font-size:14px; color:var(--mist); margin-bottom:10px; transition:color .2s; }
  .foot-col a:hover{ color:var(--ink); }
  .foot-news{ min-width:260px; }
  .foot-news form{ display:flex; gap:8px; margin-top:14px; }
  .foot-news input{ flex:1; background:var(--surface); border:1px solid var(--line-strong); border-radius:8px; padding:10px 12px; color:var(--ink); font-size:13px; }
  .foot-news button{ background:var(--grad); border:none; border-radius:8px; padding:0 16px; color:#0b1020; font-weight:600; font-size:13px; cursor:pointer; }
  .foot-bottom{ display:flex; justify-content:space-between; font-size:12.5px; color:var(--mist-dim); border-top:1px solid var(--line); padding-top:28px; flex-wrap:wrap; gap:12px; }
  .foot-bottom .legal{ display:flex; gap:20px; }
  .foot-bottom .legal a:hover{ color:var(--ink); }

  @media(max-width:600px){ .wrap{ padding:0 20px; } .hero-stats{ gap:32px; } }
  @media (prefers-reduced-motion: reduce){ *{ animation-duration:0.001ms !important; transition-duration:0.001ms !important; } html{ scroll-behavior:auto; } }
