    :root {
      --bg: #05060c;
      --bg-2: #090b16;
      --ink: #eef1fb;
      --muted: #9aa3c4;
      --faint: #6b7398;
      --line: rgba(255, 255, 255, 0.08);
      --card: rgba(255, 255, 255, 0.025);
      --blue: #5b8cff;
      --violet: #a86bff;
      --cyan: #36e6e0;
      --green: #3ddc97;
      --red: #ff6b81;
      --grad: linear-gradient(110deg, #5b8cff 0%, #a86bff 50%, #36e6e0 100%);
      --grad-soft: linear-gradient(110deg, rgba(91, 140, 255, 0.18), rgba(168, 107, 255, 0.18), rgba(54, 230, 224, 0.18));
      --maxw: 1180px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg);
      color: var(--ink);
      font-family: 'Space Grotesk', system-ui, sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Space Grotesk', sans-serif;
      line-height: 1.06;
      letter-spacing: -0.02em;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .wrap {
      width: 100%;
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 28px;
    }

    .grad-text {
      background: var(--grad);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-size: 12.5px;
      font-weight: 600;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--muted);
      padding: 7px 14px;
      border: 1px solid var(--line);
      border-radius: 100px;
      background: rgba(255, 255, 255, 0.02);
    }

    .eyebrow .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 12px var(--cyan);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      font-weight: 600;
      font-size: 15px;
      padding: 14px 26px;
      border-radius: 12px;
      cursor: pointer;
      border: 1px solid transparent;
      transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
    }

    .btn-primary {
      background: var(--grad);
      color: #060810;
      box-shadow: 0 8px 30px rgba(91, 140, 255, 0.35);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 44px rgba(120, 120, 255, 0.5);
    }

    .btn-ghost {
      background: rgba(255, 255, 255, 0.03);
      color: var(--ink);
      border-color: var(--line);
    }

    .btn-ghost:hover {
      border-color: rgba(255, 255, 255, 0.28);
      transform: translateY(-2px);
      background: rgba(255, 255, 255, 0.06);
    }

    /* Nav */
    header.nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
      border-bottom: 1px solid transparent;
    }

    header.nav.scrolled {
      background: rgba(5, 6, 12, 0.72);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--line);
    }

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

    .logo {
      display: flex;
      align-items: center;
      gap: 11px;
      font-weight: 700;
      font-size: 20px;
      letter-spacing: -0.02em;
    }

    .logo-mark {
      width: 30px;
      height: 30px;
      border-radius: 8px;
      background: var(--grad);
      display: grid;
      place-items: center;
      box-shadow: 0 0 20px rgba(120, 120, 255, 0.5);
      position: relative;
    }

    .logo-mark::after {
      content: "";
      position: absolute;
      inset: 6px;
      border: 2px solid rgba(6, 8, 16, 0.85);
      border-radius: 4px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .nav-links a {
      font-size: 14.5px;
      color: var(--muted);
      transition: color .2s ease;
    }

    .nav-links a:hover {
      color: var(--ink);
    }

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

    .nav-cta .btn {
      padding: 10px 20px;
      font-size: 14px;
    }

    /* Hero */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    #bg-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .hero-glow {
      position: absolute;
      z-index: 0;
      border-radius: 50%;
      filter: blur(90px);
      pointer-events: none;
      opacity: .55;
    }

    .glow-a {
      width: 520px;
      height: 520px;
      background: radial-gradient(circle, rgba(91, 140, 255, 0.45), transparent 70%);
      top: -120px;
      right: -80px;
    }

    .glow-b {
      width: 460px;
      height: 460px;
      background: radial-gradient(circle, rgba(168, 107, 255, 0.4), transparent 70%);
      bottom: -160px;
      left: -120px;
    }

    .glow-c {
      width: 380px;
      height: 380px;
      background: radial-gradient(circle, rgba(54, 230, 224, 0.25), transparent 70%);
      top: 30%;
      left: 40%;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 130px 0 90px;
      max-width: 860px;
    }

    .hero h1 {
      font-size: clamp(40px, 6.2vw, 76px);
      font-weight: 700;
      margin: 26px 0 22px;
    }

    .hero p.lead {
      font-size: clamp(16.5px, 1.9vw, 20px);
      color: var(--muted);
      max-width: 660px;
      margin-bottom: 36px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .mini-stats {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 46px;
      font-size: 14px;
      color: var(--faint);
    }

    .mini-stats span {
      display: inline-flex;
      align-items: center;
      gap: 9px;
    }

    .mini-stats b {
      color: var(--ink);
      font-weight: 600;
    }

    .mini-stats .sep {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--faint);
    }

    .scroll-cue {
      position: absolute;
      bottom: 26px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      color: var(--faint);
      font-size: 12px;
      letter-spacing: .18em;
      text-transform: uppercase;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .scroll-cue .bar {
      width: 1px;
      height: 38px;
      background: linear-gradient(var(--faint), transparent);
      animation: cue 1.8s ease-in-out infinite;
    }

    @keyframes cue {

      0%,
      100% {
        opacity: .3;
        transform: scaleY(.6);
      }

      50% {
        opacity: 1;
        transform: scaleY(1);
      }
    }

    section {
      position: relative;
      z-index: 1;
    }

    .section-pad {
      padding: 104px 0;
    }

    .center-head {
      text-align: center;
      max-width: 680px;
      margin: 0 auto 50px;
    }

    .center-head .eyebrow {
      margin-bottom: 18px;
    }

    .center-head h2 {
      font-size: clamp(30px, 4vw, 50px);
      font-weight: 700;
      margin: 0 0 16px;
    }

    .center-head p {
      color: var(--muted);
      font-size: 17px;
    }

    /* Problem */
    .prob-list {
      max-width: 720px;
      margin: 0 auto;
      display: grid;
      gap: 12px;
    }

    .prob {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 16px 20px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: rgba(255, 107, 129, 0.05);
    }

    .prob .x {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(255, 107, 129, 0.15);
      color: #ff6b81;
      font-size: 12px;
      font-weight: 700;
      flex: 0 0 auto;
    }

    .prob .t {
      color: var(--muted);
      font-size: 15px;
    }

    .prob-foot {
      text-align: center;
      color: var(--ink);
      font-size: clamp(18px, 2.2vw, 22px);
      max-width: 680px;
      margin: 34px auto 0;
      line-height: 1.4;
    }

    .prob-foot b {
      font-weight: 600;
    }

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

    .sol {
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: var(--card);
      transition: transform .3s ease, border-color .3s ease;
    }

    .sol:hover {
      transform: translateY(-4px);
      border-color: rgba(54, 230, 224, 0.4);
    }

    .sol .n {
      display: inline-grid;
      place-items: center;
      width: 32px;
      height: 32px;
      border-radius: 9px;
      background: var(--grad-soft);
      border: 1px solid var(--line);
      font-weight: 700;
      color: var(--cyan);
      margin-bottom: 14px;
    }

    .sol h4 {
      font-size: 15.5px;
      font-weight: 600;
      line-height: 1.45;
    }

    .sol-foot {
      text-align: center;
      color: var(--muted);
      font-size: 16px;
      margin-top: 32px;
    }

    .sol-foot b {
      color: var(--ink);
      font-weight: 600;
    }

    /* Engine band */
    .engine-band {
      border: 1px solid rgba(120, 120, 255, 0.3);
      border-radius: 24px;
      padding: 56px 40px;
      text-align: center;
      background: radial-gradient(120% 160% at 50% 0%, rgba(91, 140, 255, 0.16), transparent 60%), var(--bg-2);
    }

    .engine-band .tag {
      font-size: 12.5px;
      font-weight: 600;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--cyan);
    }

    .engine-band h2 {
      font-size: clamp(24px, 3.2vw, 40px);
      font-weight: 700;
      max-width: 860px;
      margin: 16px auto 32px;
      line-height: 1.18;
    }

    .engine-points {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      max-width: 920px;
      margin: 0 auto;
    }

    .ep {
      padding: 20px 16px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.02);
    }

    .ep .eptop {
      color: var(--faint);
      font-size: 12.5px;
    }

    .ep b {
      color: var(--ink);
      font-weight: 600;
      display: block;
      margin-top: 4px;
      font-size: 15px;
    }

    /* Cards (what's included) */
    .grid {
      display: grid;
      gap: 20px;
    }

    .grid-4 {
      grid-template-columns: repeat(4, 1fr);
    }

    .card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 30px;
      position: relative;
      overflow: hidden;
      transition: transform .35s ease, background .35s ease;
    }

    .card:hover {
      transform: translateY(-6px);
      background: rgba(255, 255, 255, 0.04);
    }

    .card .ico {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      margin-bottom: 20px;
      background: var(--grad-soft);
      border: 1px solid var(--line);
      font-size: 22px;
    }

    .card h3 {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .card p {
      color: var(--muted);
      font-size: 14.5px;
    }

    /* Stats band */
    .stats-band {
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 54px 40px;
      background: radial-gradient(120% 160% at 0% 0%, rgba(91, 140, 255, 0.12), transparent 60%), radial-gradient(120% 160% at 100% 100%, rgba(54, 230, 224, 0.1), transparent 60%), var(--bg-2);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      text-align: center;
    }

    .stat .big {
      font-size: clamp(34px, 4.4vw, 54px);
      font-weight: 700;
    }

    .stat .lbl {
      color: var(--muted);
      font-size: 13.5px;
      margin-top: 8px;
    }

    /* Why */
    .why-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 48px;
      align-items: center;
    }

    .why-list {
      display: grid;
      gap: 14px;
    }

    .why-item {
      display: flex;
      gap: 16px;
      padding: 18px 0;
      border-bottom: 1px solid var(--line);
    }

    .why-item:last-child {
      border-bottom: 0;
    }

    .why-item .chk {
      flex: 0 0 26px;
      height: 26px;
      border-radius: 8px;
      background: var(--grad-soft);
      border: 1px solid var(--line);
      display: grid;
      place-items: center;
      color: var(--cyan);
      font-weight: 700;
    }

    .why-item h4 {
      font-size: 17px;
      font-weight: 600;
      margin-bottom: 3px;
    }

    .why-item p {
      color: var(--muted);
      font-size: 14px;
    }

    .why-visual {
      aspect-ratio: 1/1;
      border-radius: 24px;
      border: 1px solid var(--line);
      position: relative;
      overflow: hidden;
      background: radial-gradient(circle at 50% 40%, rgba(168, 107, 255, 0.25), transparent 60%), var(--bg-2);
      display: grid;
      place-items: center;
    }

    .why-visual .orbit {
      position: absolute;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 50%;
    }

    .why-visual .o1 {
      inset: 14%;
    }

    .why-visual .o2 {
      inset: 28%;
    }

    .why-visual .o3 {
      inset: 42%;
    }

    .why-visual .core {
      width: 86px;
      height: 86px;
      border-radius: 50%;
      background: var(--grad);
      box-shadow: 0 0 60px rgba(120, 120, 255, 0.6);
      animation: pulse 3s ease-in-out infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.08);
      }
    }

    .why-visual .sat {
      position: absolute;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 18px var(--cyan);
      top: 14%;
      left: 50%;
      animation: spin 9s linear infinite;
      transform-origin: 0 250%;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    /* Testimonial */
    .quote-card {
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 56px;
      background: var(--bg-2);
      max-width: 880px;
      margin: 0 auto;
      text-align: center;
    }

    .quote-card .mark {
      font-size: 60px;
      line-height: 0.6;
      color: var(--blue);
      opacity: .5;
    }

    .quote-card blockquote {
      font-size: clamp(20px, 2.6vw, 28px);
      font-weight: 500;
      margin: 18px 0 26px;
      letter-spacing: -0.01em;
    }

    .quote-card .by {
      color: var(--muted);
      font-size: 14.5px;
    }

    /* Pricing */
    .price-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
      max-width: 900px;
      margin: 0 auto;
      align-items: stretch;
    }

    .price {
      border: 1px solid rgba(120, 120, 255, 0.4);
      border-radius: 20px;
      padding: 34px 30px;
      background: linear-gradient(180deg, rgba(91, 140, 255, 0.08), rgba(255, 255, 255, 0.02));
      display: flex;
      flex-direction: column;
    }

    .price .tier {
      font-size: 13px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .price .badge {
      font-size: 11px;
      color: var(--cyan);
      border: 1px solid rgba(54, 230, 224, 0.4);
      padding: 3px 10px;
      border-radius: 100px;
      margin-left: 10px;
    }

    .price .amt {
      font-size: 34px;
      font-weight: 700;
      margin: 16px 0 4px;
    }

    .price .amt small {
      font-size: 15px;
      color: var(--faint);
      font-weight: 500;
    }

    .price .desc {
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 20px;
    }

    .price ul {
      list-style: none;
      display: grid;
      gap: 12px;
      margin-bottom: 26px;
      flex: 1;
    }

    .price li {
      font-size: 14px;
      display: flex;
      gap: 10px;
    }

    .price li::before {
      content: "→";
      color: var(--cyan);
    }

    .price .btn {
      width: 100%;
    }

    /* Final CTA */
    .cta-final {
      border-radius: 28px;
      border: 1px solid var(--line);
      padding: 70px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
      background: radial-gradient(120% 180% at 50% 0%, rgba(91, 140, 255, 0.2), transparent 55%), var(--bg-2);
    }

    .cta-final h2 {
      font-size: clamp(30px, 4.4vw, 52px);
      font-weight: 700;
      margin-bottom: 18px;
    }

    .cta-final p {
      color: var(--muted);
      font-size: 17px;
      max-width: 560px;
      margin: 0 auto 32px;
    }

    /* Footer */
    footer {
      border-top: 1px solid var(--line);
      padding: 64px 0 40px;
      margin-top: 40px;
    }

    .foot-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 48px;
    }

    .foot-grid p {
      color: var(--muted);
      font-size: 14px;
      max-width: 280px;
      margin-top: 14px;
    }

    .foot-col h5 {
      font-size: 13px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--faint);
      margin-bottom: 16px;
    }

    .foot-col a {
      display: block;
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 11px;
      transition: color .2s;
    }

    .foot-col a:hover {
      color: var(--ink);
    }

    .foot-bottom {
      border-top: 1px solid var(--line);
      padding-top: 26px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      color: var(--faint);
      font-size: 13px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .8s cubic-bezier(.2, .7, .2, 1), transform .8s cubic-bezier(.2, .7, .2, 1);
    }

    .reveal.in {
      opacity: 1;
      transform: none;
    }

    /* Dashboard preview window */
    .demo-wrap {
      position: relative;
      max-width: 1040px;
      margin: 0 auto;
    }

    .demo-wrap .demo-glow {
      position: absolute;
      inset: -50px -30px 10px;
      background: radial-gradient(60% 60% at 50% 0%, rgba(91, 140, 255, 0.28), transparent 70%);
      filter: blur(40px);
      z-index: 0;
      pointer-events: none;
    }

    .demo-window {
      position: relative;
      z-index: 1;
      border: 1px solid var(--line);
      border-radius: 16px;
      overflow: hidden;
      background: var(--bg-2);
      box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
    }

    .dw-bar {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 12px 16px;
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.02);
    }

    .dw-dots {
      display: flex;
      gap: 7px;
      flex: 0 0 auto;
    }

    .dw-dots i {
      width: 11px;
      height: 11px;
      border-radius: 50%;
      display: block;
    }

    .dw-url {
      flex: 1;
      text-align: center;
      font-size: 12.5px;
      color: var(--faint);
      background: var(--bg);
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 6px 14px;
      max-width: 340px;
      margin: 0 auto;
    }

    .dw-frame {
      width: 100%;
      height: 600px;
      border: 0;
      display: block;
      background: var(--bg-2);
      pointer-events: none;
      user-select: none;
    }
    .demo-window { position:relative; }
    .demo-window::after {
      content: "Preview · view the live dashboard above";
      position: absolute;
      bottom: 14px;
      right: 16px;
      font-size: 11px;
      color: var(--faint);
      background: rgba(5,6,12,0.6);
      backdrop-filter: blur(8px);
      padding: 5px 10px;
      border-radius: 100px;
      border: 1px solid var(--line);
      pointer-events: none;
    }

    .demo-cta {
      text-align: center;
      margin-top: 28px;
    }

    .demo-hint {
      color: var(--faint);
      font-size: 12.5px;
      margin-top: 12px;
    }

    @media (max-width:640px) {
      .dw-frame {
        height: 480px;
      }
    }

    /* ---- Before / After (transformation) ---- */
    .ba-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      max-width: 980px;
      margin: 0 auto;
    }

    .ba-col {
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 30px;
    }

    .ba-col.bad {
      background: rgba(255, 107, 129, 0.05);
    }

    .ba-col.good {
      background: linear-gradient(180deg, rgba(54, 230, 224, 0.10), rgba(91, 140, 255, 0.04));
      border-color: rgba(54, 230, 224, 0.35);
    }

    .ba-h {
      font-size: 12.5px;
      letter-spacing: .14em;
      text-transform: uppercase;
      margin-bottom: 18px;
      font-weight: 600;
    }

    .ba-col.bad .ba-h {
      color: #ff6b81;
    }

    .ba-col.good .ba-h {
      color: var(--cyan);
    }

    .ba-col ul {
      list-style: none;
      display: grid;
      gap: 13px;
    }

    .ba-col li {
      display: flex;
      gap: 12px;
      font-size: 15px;
      line-height: 1.5;
      align-items: flex-start;
    }

    .ba-col li .m {
      flex: 0 0 18px;
      font-weight: 700;
      line-height: 1.5;
    }

    .ba-col.bad li {
      color: var(--muted);
    }

    .ba-col.bad li .m {
      color: #ff6b81;
    }

    .ba-col.good li {
      color: var(--ink);
    }

    .ba-col.good li .m {
      color: var(--green);
    }

    /* ---- Outcomes band ---- */
    .out-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .out {
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 28px 22px;
      background: var(--card);
      text-align: center;
      transition: border-color .3s ease, transform .3s ease;
    }

    .out:hover {
      transform: translateY(-3px);
      border-color: rgba(54, 230, 224, 0.4);
    }

    .out .big {
      font-size: clamp(28px, 3.4vw, 42px);
      font-weight: 700;
      line-height: 1.1;
    }

    .out .lbl {
      color: var(--muted);
      font-size: 13.5px;
      margin-top: 10px;
    }

    /* ---- Testimonials wall ---- */
    .tw-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .tw {
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 28px;
      background: var(--bg-2);
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .tw blockquote {
      font-size: 15.5px;
      line-height: 1.6;
      color: var(--ink);
    }

    .tw .who {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: auto;
    }

    .tw .av {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-weight: 700;
      color: #06080f;
      font-size: 14px;
      flex: 0 0 auto;
    }

    .tw .who .n {
      font-size: 14px;
      font-weight: 600;
    }

    .tw .who .r {
      font-size: 12px;
      color: var(--faint);
    }

    /* ---- Risk-reversal strip ---- */
    .risk {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 34px;
    }

    .risk span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13.5px;
      color: var(--muted);
      border: 1px solid var(--line);
      border-radius: 100px;
      padding: 10px 18px;
      background: rgba(255, 255, 255, 0.02);
    }

    .risk span b {
      color: var(--cyan);
      font-weight: 600;
    }

    .illus-note {
      text-align: center;
      color: var(--faint);
      font-size: 11.5px;
      margin-top: 14px;
    }

    @media (max-width:860px) {
      .ba-grid {
        grid-template-columns: 1fr;
      }

      .out-grid {
        grid-template-columns: 1fr 1fr;
      }

      .tw-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width:940px) {
      .grid-4 {
        grid-template-columns: repeat(2, 1fr);
      }

      .stats-band {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 20px;
      }

      .why-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .why-visual {
        max-width: 380px;
      }

      .sol-grid {
        grid-template-columns: 1fr 1fr;
      }

      .engine-points {
        grid-template-columns: 1fr 1fr;
      }

      .foot-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width:640px) {
      .nav-links {
        display: none;
      }

      .nav-cta .btn-ghost {
        display: none;
      }

      .sol-grid,
      .grid-4,
      .price-grid,
      .engine-points {
        grid-template-columns: 1fr;
      }

      .section-pad {
        padding: 76px 0;
      }

      .quote-card {
        padding: 38px 26px;
      }

      .stats-band,
      .engine-band {
        padding: 40px 24px;
      }

      .foot-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .reveal {
        transition: none;
        opacity: 1;
        transform: none;
      }

      .scroll-cue .bar,
      .why-visual .core,
      .why-visual .sat {
        animation: none;
      }

      html {
        scroll-behavior: auto;
      }
    }

  /* ---- Coverage strip (platforms & funds) ---- */
  .cov-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; max-width:980px; margin:0 auto; }
  .cov-col { border:1px solid var(--line); border-radius:16px; padding:24px; background:var(--card); }
  .cov-h { font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:var(--faint); font-weight:600; margin-bottom:14px; }
  .cov-pills { display:flex; flex-wrap:wrap; gap:8px; }
  .cov-pills span { font-size:13.5px; font-weight:500; color:var(--ink); border:1px solid var(--line); padding:8px 14px; border-radius:100px; background:rgba(255,255,255,0.02); }
  @media (max-width:720px){ .cov-grid{ grid-template-columns:1fr; } }

  /* ---- What's in every match (data depth) ---- */
  .match-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
  .match { display:flex; gap:14px; padding:18px 20px; border:1px solid var(--line); border-radius:14px; background:var(--card); align-items:flex-start; transition:border-color .3s ease, transform .3s ease; }
  .match:hover { border-color:rgba(54,230,224,0.3); transform:translateY(-2px); }
  .match .m-ico { width:34px; height:34px; border-radius:9px; background:var(--grad-soft); border:1px solid var(--line); display:grid; place-items:center; color:var(--cyan); font-weight:700; flex:0 0 auto; font-size:14px; }
  .match .m-h { font-size:13.5px; font-weight:600; color:var(--ink); }
  .match .m-d { font-size:12.5px; color:var(--muted); margin-top:3px; line-height:1.5; }
  @media (max-width:980px){ .match-grid{ grid-template-columns:repeat(3,1fr); } }
  @media (max-width:760px){ .match-grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:480px){ .match-grid{ grid-template-columns:1fr; } }

  /* ---- Engine pillars (replaces engine-points) ---- */
  .engine-pillars { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; max-width:920px; margin:0 auto; }
  .ep-pill { padding:24px; border:1px solid var(--line); border-radius:14px; background:rgba(255,255,255,0.02); text-align:left; }
  .ep-pill .ep-num { font-size:12px; color:var(--cyan); font-weight:700; letter-spacing:.14em; margin-bottom:10px; }
  .ep-pill .ep-title { font-size:17px; font-weight:600; color:var(--ink); margin-bottom:8px; }
  .ep-pill .ep-desc { font-size:13.5px; color:var(--muted); line-height:1.55; }
  .ep-sub { color:var(--muted); font-size:15px; max-width:820px; margin:-16px auto 30px; line-height:1.5; }
  @media (max-width:760px){ .engine-pillars{ grid-template-columns:1fr; } }

  /* ---- Trust trio (near CTA) ---- */
  .trust-trio { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; max-width:900px; margin:0 auto; padding:36px 28px; border:1px solid var(--line); border-radius:20px; background:radial-gradient(120% 160% at 50% 0%, rgba(91,140,255,0.1), transparent 60%), var(--bg-2); text-align:center; }
  .tt-big { font-size:clamp(32px,4.2vw,48px); font-weight:700; line-height:1.05; }
  .tt-big small { font-size:0.42em; color:var(--faint); font-weight:500; }
  .tt-lbl { color:var(--muted); font-size:13.5px; margin-top:8px; }
  @media (max-width:640px){ .trust-trio{ grid-template-columns:1fr; gap:14px; padding:28px 20px; } }

  /* ---- Sample investor tables ---- */
  .sample-stack { display:grid; gap:18px; max-width:1080px; margin:0 auto; }
  .sample-table-card { border:1px solid var(--line); border-radius:18px; background:var(--bg-2); padding:24px; overflow-x:auto; }
  .sample-table-card h4 { font-size:14.5px; font-weight:600; color:var(--ink); margin-bottom:4px; }
  .sample-table-card .sub { font-size:12.5px; color:var(--faint); margin-bottom:18px; }
  .sample-table { width:100%; min-width:680px; border-collapse:collapse; }
  .sample-table th { text-align:left; font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--faint); padding:0 16px 14px; font-weight:600; border-bottom:1px solid var(--line); }
  .sample-table td { padding:14px 16px; font-size:14px; border-bottom:1px solid rgba(255,255,255,0.045); vertical-align:middle; }
  .sample-table tr:last-child td { border-bottom:0; }
  .sample-table tr:hover td { background:rgba(255,255,255,0.025); }
  .sample-table .inv { display:flex; align-items:center; gap:12px; }
  .sample-table .ava { width:38px; height:38px; border-radius:50%; display:block; flex:0 0 auto; object-fit:cover; background:rgba(255,255,255,0.04); border:1px solid var(--line); }
  .sample-stock-note { max-width:760px; margin:14px auto 0; padding:11px 16px; text-align:center; font-size:12px; color:#ffce5c; background:rgba(255,206,92,0.07); border:1px solid rgba(255,206,92,0.28); border-radius:10px; }
  .sample-stock-note b { font-weight:600; }
  .sample-table .nm { font-weight:500; font-size:14px; color:var(--ink); }
  .sample-table .sb { font-size:12px; color:var(--faint); margin-top:1px; }
  .sample-table .muted { color:var(--muted); }
  .sample-table .pill { display:inline-block; font-size:11px; font-weight:600; padding:3px 10px; border-radius:100px; border:1px solid transparent; white-space:nowrap; }
  .sample-table .pill.active { color:#3ddc97; background:rgba(61,220,151,0.10); border-color:rgba(61,220,151,0.30); }
  .sample-table .pill.hv { color:#ffce5c; background:rgba(255,206,92,0.10); border-color:rgba(255,206,92,0.30); }
  .sample-table .pill.recent { color:var(--cyan); background:rgba(54,230,224,0.10); border-color:rgba(54,230,224,0.30); }
  @media (max-width:600px) { .sample-table-card { padding:16px; } .sample-table { font-size:13px; } }
  
