    /* ── Atyp Text Font Faces ── */
    @font-face {
      font-family: 'AtypText';
      src: url('fonts/AtypText-Light.ttf') format('truetype');
      font-weight: 300;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'AtypText';
      src: url('fonts/AtypText-LightItalic.ttf') format('truetype');
      font-weight: 300;
      font-style: italic;
      font-display: swap;
    }

    @font-face {
      font-family: 'AtypText';
      src: url('fonts/AtypText-Regular.ttf') format('truetype');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'AtypText';
      src: url('fonts/AtypText-Italic.ttf') format('truetype');
      font-weight: 400;
      font-style: italic;
      font-display: swap;
    }

    @font-face {
      font-family: 'AtypText';
      src: url('fonts/AtypText-Medium.ttf') format('truetype');
      font-weight: 500;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'AtypText';
      src: url('fonts/AtypText-MediumItalic.ttf') format('truetype');
      font-weight: 500;
      font-style: italic;
      font-display: swap;
    }

    @font-face {
      font-family: 'AtypText';
      src: url('fonts/AtypText-Semibold.ttf') format('truetype');
      font-weight: 600;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'AtypText';
      src: url('fonts/AtypText-SemiboldItalic.ttf') format('truetype');
      font-weight: 600;
      font-style: italic;
      font-display: swap;
    }

    @font-face {
      font-family: 'AtypText';
      src: url('fonts/AtypText-Bold.ttf') format('truetype');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'AtypText';
      src: url('fonts/AtypText-BoldItalic.ttf') format('truetype');
      font-weight: 700;
      font-style: italic;
      font-display: swap;
    }

    /* ══════════════════════════════
       DESIGN TOKENS
    ══════════════════════════════ */
    :root {
      /* — Colors: Primitives — */
      --color-dark-900: #0e0f1f;
      --color-dark-800: #17182b;
      --color-dark-700: #18181b;
      --color-dark-600: #070c22;
      --color-dark-500: #1b1729;
      --color-dark-400: #26262a;
      --color-purple-100: #7540ef;
      --color-purple-200: #9747ff;
      --color-purple-300: #6046e3;
      --color-purple-400: #7032ff;
      --color-purple-500: #5e00d9;
      --color-purple-light: #b086ff;
      --color-purple-pale: #d9c4ff;
      --color-purple-hover: #5a3db8;
      --color-grey-400: #a0a0b5;
      --color-white: #ffffff;
      --color-off-white: #f2f2f9;
      --color-off-white-warm: #fbfbfd;
      --color-muted-purple: #54515f;
      --color-success: #1ccc8d;
      --color-warning: #fba705;
      --color-error: #ff2b5e;

      /* — Gradients — */
      --gradient-hero: linear-gradient(135deg, #0e0f1f 0%, #11053c 60%, #5e00d9 100%);
      --gradient-section: linear-gradient(180deg, #0e0f1f 0%, #17182b 100%);
      --gradient-accent: linear-gradient(135deg, #7540ef, #9747ff);

      /* — Typography — */
      --font-display: 'AtypText', sans-serif;
      --font-body: 'AtypText', sans-serif;
      --font-ui: 'Inter', sans-serif;

      /* — Spacing — */
      --space-4: 4px;
      --space-8: 8px;
      --space-12: 12px;
      --space-16: 16px;
      --space-24: 24px;
      --space-32: 32px;
      --space-40: 40px;
      --space-48: 48px;
      --space-64: 64px;
      --space-80: 80px;

      /* — Radius — */
      --radius-xs: 4px;
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --radius-full: 9999px;

      /* — Shadows — */
      --shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
      --shadow-md: 0 4px 12px rgba(0, 0, 0, .1);
      --shadow-lg: 0 10px 24px rgba(0, 0, 0, .15);
      --shadow-xl: 0 20px 40px rgba(0, 0, 0, .25);
      --shadow-purple: 0 0 32px rgba(117, 64, 239, .35);

      /* — Transitions — */
      --t-fast: 150ms ease;
      --t-std: 200ms ease;
      --t-slow: 300ms ease;
    }

    /* ══════════════════════════════
       RESET & BASE
    ══════════════════════════════ */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      color: var(--color-white);
      background: var(--color-dark-900);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

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

    button {
      cursor: pointer;
      font-family: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* ══════════════════════════════
       LAYOUT UTILITIES
    ══════════════════════════════ */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--space-24);
    }

    .narrow {
      max-width: 800px;
      margin: 0 auto;
    }

    .section {
      padding: var(--space-80) var(--space-24);
    }

    /* Section themes */
    .s-dark {
      background: var(--color-dark-900);
      color: var(--color-white);
    }

    .s-dark-alt {
      background: var(--color-dark-800);
      color: var(--color-white);
    }

    .s-light {
      background: var(--color-off-white);
      color: #1a1a2e;
    }

    .s-light-warm {
      background: var(--color-off-white-warm);
      color: #1a1a2e;
    }

    /* ── Eyebrow ── */
    .eyebrow {
      font-family: var(--font-ui);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--color-purple-light);
      margin-bottom: var(--space-12);
    }

    .s-light .eyebrow,
    .s-light-warm .eyebrow {
      color: var(--color-purple-100);
    }

    /* ── Headings ── */
    h2 {
      font-family: var(--font-display);
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 500;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: var(--space-24);
      color: var(--color-white);
    }

    .s-light h2,
    .s-light-warm h2 {
      color: #1a1a2e;
    }

    /* ── Buttons ── */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 28px;
      background: var(--color-purple-100);
      color: var(--color-white);
      border: none;
      border-radius: var(--radius-full);
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 500;
      line-height: 1;
      transition: background var(--t-std), box-shadow var(--t-std);
      white-space: nowrap;
    }

    .btn-primary:hover {
      background: var(--color-purple-hover);
      box-shadow: var(--shadow-purple);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 28px;
      background: transparent;
      color: var(--color-white);
      border: 1px solid rgba(255, 255, 255, .28);
      border-radius: var(--radius-full);
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 500;
      line-height: 1;
      transition: background var(--t-std), border-color var(--t-std);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, .08);
      border-color: rgba(255, 255, 255, .5);
    }

    /* CTA center helper */
    .cta-center {
      text-align: center;
      margin-top: var(--space-40);
    }

    /* Placeholder icon blocks */
    .placeholder {
      background: rgba(117, 64, 239, .08);
      border: 1px dashed rgba(117, 64, 239, .25);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-grey-400);
      font-family: var(--font-ui);
    }

    /* ══════════════════════════════
       STICKY HEADER
    ══════════════════════════════ */
    .sticky-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(14, 15, 31, .88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255, 255, 255, .07);
      padding: 14px var(--space-24);
      display: flex;
      align-items: center;
      justify-content: space-between;
      transform: translateY(-100%);
      transition: transform var(--t-slow);
    }

    .sticky-header.visible {
      transform: translateY(0);
    }

    .sticky-header .logo {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 20px;
      letter-spacing: -0.02em;
      color: var(--color-white);
    }

    .sticky-header nav {
      display: flex;
      gap: var(--space-32);
      align-items: center;
    }

    .sticky-header nav a {
      font-family: var(--font-ui);
      font-size: 14px;
      font-weight: 500;
      color: var(--color-grey-400);
      transition: color var(--t-fast);
    }

    .sticky-header nav a:hover {
      color: var(--color-white);
    }

    .sticky-header .btn-primary {
      padding: 10px 20px;
      font-size: 14px;
    }

    /* ══════════════════════════════
       S1 — HERO
    ══════════════════════════════ */
    .hero {
      min-height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px var(--space-24) 80px;
      background: var(--gradient-hero);
      position: relative;
      overflow: hidden;
    }

    /* Purple glow blob */
    .hero::before {
      content: '';
      position: absolute;
      top: -10%;
      left: 50%;
      transform: translateX(-50%);
      width: 900px;
      height: 700px;
      background: radial-gradient(circle at 50% 35%, rgba(117, 64, 239, .38) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero>div {
      position: relative;
      z-index: 1;
    }

    /* Canvas particle network */
    #heroCanvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(40px, 7vw, 72px);
      font-weight: 500;
      line-height: 1.05;
      letter-spacing: -0.03em;
      margin-bottom: var(--space-24);
      color: var(--color-white);
    }

    .hero .sub {
      font-size: clamp(16px, 2vw, 20px);
      color: rgba(255, 255, 255, .7);
      max-width: 580px;
      margin: 0 auto var(--space-12);
      line-height: 1.6;
    }

    .hero .powered {
      font-family: var(--font-ui);
      font-size: 13px;
      color: rgba(255, 255, 255, .38);
      font-style: italic;
      margin-bottom: var(--space-40);
    }

    /* ══════════════════════════════
       S2 — TRUST BAR
    ══════════════════════════════ */
    .trust-bar {
      background: var(--color-dark-800);
      padding: 20px var(--space-24);
      border-top: 1px solid rgba(255, 255, 255, .06);
      border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

    .trust-bar .grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      max-width: 860px;
      margin: 0 auto;
    }

    .trust-bar .metric {
      text-align: center;
      padding: 12px var(--space-24);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .trust-bar .metric:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 15%;
      height: 70%;
      width: 1px;
      background: rgba(255, 255, 255, .1);
    }

    .trust-bar .metric .value {
      font-family: var(--font-display);
      font-size: clamp(20px, 2.4vw, 28px);
      font-weight: 500;
      letter-spacing: -0.02em;
      color: var(--color-white);
      font-variant-numeric: tabular-nums;
      line-height: 1.2;
    }

    .trust-bar .metric .label {
      font-family: var(--font-ui);
      font-size: 12px;
      color: var(--color-grey-400);
      margin-top: 3px;
      line-height: 1.3;
    }

    /* ══════════════════════════════
       S3 — PROBLEM
    ══════════════════════════════ */
    .problem .body {
      color: rgba(26, 26, 46, .7);
      font-size: 17px;
      line-height: 1.75;
    }

    .problem .body p+p {
      margin-top: var(--space-16);
    }

    /* ══════════════════════════════
       S4 — SOLUTION
    ══════════════════════════════ */
    .solution {
      position: relative;
    }

    .solution::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(117, 64, 239, .4), transparent);
    }

    /* Left content takes ~55% — image is absolutely positioned */
    .solution-left {
      max-width: 55%;
    }

    .solution ul {
      list-style: none;
      margin: var(--space-24) 0;
    }

    .solution ul li {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 10px 0;
      font-size: 17px;
      color: rgba(255, 255, 255, .82);
    }

    /* Single pseudo: flex circle with centered checkmark */
    .solution ul li::before {
      content: '✓';
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--gradient-accent);
      font-size: 11px;
      font-weight: 700;
      color: var(--color-white);
      line-height: 1;
    }

    .solution .closing {
      font-weight: 500;
      font-size: 17px;
      margin: var(--space-24) 0;
      color: var(--color-purple-light);
    }

    /* Image: absolutely positioned, not in flow — section height = left content only */
    .solution-visual {
      position: absolute;
      /* anchor to bottom-right of section */
      right: max(24px, calc((100% - 1200px) / 2 + 24px));
      bottom: 0;
      width: clamp(280px, 34%, 400px);
      pointer-events: none;
    }

    .solution-visual img {
      width: 100%;
      display: block;
      filter: drop-shadow(0 -8px 48px rgba(117, 64, 239, .3));
      /* shift phone down: bottom 35% bleeds past section, clipped by overflow:hidden */
      transform: translateY(35%);
    }

    @media (max-width: 1023px) {
      .solution-left {
        max-width: 100%;
        position: relative;
        z-index: 1;
        /* content above phone */
      }

      .solution-visual {
        display: block;
        right: auto;
        left: 50%;
        z-index: 0;
      }

      .solution-visual img {
        transform: translateY(60%);
      }
    }

    /* Tablet: narrower phone, padding-bottom scales with viewport width */
    @media (min-width: 768px) and (max-width: 1023px) {
      .solution-visual {
        width: 55%;
        margin-left: -27.5%;
      }

      /* phone visible ≈ 38vw + 72px breathing room between button and phone */
      .solution {
        padding-bottom: max(320px, calc(42vw + 72px));
      }
    }

    /* Mobile: fixed width, fixed padding-bottom */
    @media (max-width: 767px) {
      .solution-visual {
        width: 78%;
        margin-left: -39%;
      }
    }

    /* ══════════════════════════════
       S5 — YIELD TABLE
    ══════════════════════════════ */
    .yield-cards {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-12);
      justify-content: center;
      margin: var(--space-32) 0 var(--space-12);
    }

    .yield-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      background: var(--color-white);
      border: 1px solid rgba(0, 0, 0, .06);
      border-radius: var(--radius-lg);
      padding: var(--space-24) 20px var(--space-16);
      min-width: 112px;
      flex: 0 0 auto;
      box-shadow: var(--shadow-sm);
      transition: transform var(--t-std), box-shadow var(--t-std);
    }

    .yield-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }

    .yield-card__icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      overflow: hidden;
      margin-bottom: 10px;
    }

    .yield-card__icon svg {
      width: 56px;
      height: 56px;
    }

    .yield-card__name {
      font-family: var(--font-ui);
      font-size: 15px;
      font-weight: 600;
      color: #1a1a2e;
      margin-bottom: var(--space-8);
    }

    .yield-card__chip {
      background: rgba(117, 64, 239, .1);
      color: var(--color-purple-100);
      font-family: var(--font-ui);
      font-size: 12px;
      font-weight: 600;
      border-radius: var(--radius-full);
      padding: 4px 10px;
      white-space: nowrap;
    }

    .yield-table .note {
      font-family: var(--font-ui);
      font-weight: 600;
      margin: var(--space-16) 0;
      color: #1a1a2e;
    }

    .yield-table .disclaimer {
      font-family: var(--font-ui);
      font-size: 13px;
      color: var(--color-grey-400);
      font-style: italic;
      margin-bottom: var(--space-24);
    }

    /* ══════════════════════════════
       S6 — HOW IT WORKS
    ══════════════════════════════ */
    .how-it-works .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-32);
      margin: var(--space-48) 0;
      position: relative;
    }

    /* Connecting line */
    .how-it-works .steps::before {
      content: '';
      position: absolute;
      top: 32px;
      left: 12%;
      right: 12%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(117, 64, 239, .35), rgba(117, 64, 239, .35), transparent);
    }

    .step {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .step .icon-placeholder {
      width: 64px;
      height: 64px;
      margin: 0 auto var(--space-16);
      border-radius: 50%;
      font-family: var(--font-ui);
      font-size: 20px;
      font-weight: 600;
      line-height: 64px;
      background: var(--color-dark-900);
      border: 1px solid var(--color-success);
      color: var(--color-grey-400);
      position: relative;
      z-index: 2;
      box-shadow:
        0 0 0 6px rgba(28, 204, 141, .07),
        0 0 16px rgba(28, 204, 141, .15);
    }

    .step h3 {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 500;
      margin-bottom: var(--space-8);
      color: var(--color-white);
    }

    .step p {
      font-size: 14px;
      color: var(--color-grey-400);
      line-height: 1.5;
    }

    .how-closing {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 500;
      text-align: center;
      margin-bottom: var(--space-32);
      color: rgba(255, 255, 255, .65);
    }

    /* ══════════════════════════════
       S7 — CORE BENEFITS
    ══════════════════════════════ */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-24);
      margin: var(--space-32) 0;
    }

    .benefit-card {
      background: var(--color-white);
      border: 1px solid rgba(0, 0, 0, .06);
      border-radius: var(--radius-md);
      padding: var(--space-32);
      transition: transform var(--t-std), box-shadow var(--t-std);
    }

    .benefit-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .benefit-card .card-icon {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-sm);
      margin-bottom: var(--space-16);
      background: linear-gradient(135deg, rgba(117, 64, 239, .1), rgba(151, 71, 255, .06));
      border: 1px solid rgba(117, 64, 239, .15);
      font-size: 10px;
    }

    .benefit-card h3 {
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 500;
      margin-bottom: var(--space-8);
      color: #1a1a2e;
    }

    .benefit-card p {
      font-size: 15px;
      color: rgba(26, 26, 46, .62);
      line-height: 1.6;
    }

    /* ══════════════════════════════
       S8 — YIELD SOURCES
    ══════════════════════════════ */
    .yield-sources .sources-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-24);
      margin: var(--space-32) 0;
    }

    .source-block {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: var(--radius-md);
      padding: var(--space-32);
      transition: border-color var(--t-std);
    }

    .source-block:hover {
      border-color: rgba(117, 64, 239, .4);
    }

    .source-block .source-icon {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-sm);
      margin-bottom: var(--space-16);
      background: linear-gradient(135deg, rgba(117, 64, 239, .18), rgba(151, 71, 255, .09));
      border: 1px solid rgba(117, 64, 239, .22);
      font-size: 10px;
    }

    .source-block h3 {
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 500;
      margin-bottom: var(--space-8);
      color: var(--color-white);
    }

    .source-block p {
      font-size: 15px;
      color: var(--color-grey-400);
      line-height: 1.6;
    }

    .yield-sources .closing {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 500;
      margin-top: var(--space-32);
      color: rgba(255, 255, 255, .65);
    }

    /* ══════════════════════════════
       S9 — PLATFORM SCALE
    ══════════════════════════════ */
    .platform-scale .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-24);
      margin: var(--space-32) 0;
    }

    .stat-block {
      text-align: center;
      padding: var(--space-32);
      background: var(--color-white);
      border: 1px solid rgba(0, 0, 0, .06);
      border-radius: var(--radius-md);
    }

    .stat-block .stat-value {
      font-family: var(--font-display);
      font-size: clamp(24px, 3vw, 36px);
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: var(--space-8);
      color: #1a1a2e;
    }

    .stat-block .stat-label {
      font-family: var(--font-ui);
      font-size: 14px;
      color: rgba(26, 26, 46, .6);
    }

    .stat-block.statement {
      background: linear-gradient(135deg, rgba(117, 64, 239, .09), rgba(151, 71, 255, .05));
      border-color: rgba(117, 64, 239, .18);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .stat-block.statement .stat-label {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 16px;
      color: var(--color-purple-100);
    }

    /* ══════════════════════════════
       S10 — CUSTODY
    ══════════════════════════════ */
    .custody-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-48);
      align-items: center;
    }

    .custody ul {
      list-style: none;
      margin: var(--space-24) 0;
    }

    .custody ul li {
      padding: var(--space-12) 0 var(--space-12) 32px;
      position: relative;
      font-size: 16px;
      color: var(--color-dark-800);
    }

    .custody ul li::before {
      content: '🛡';
      position: absolute;
      left: 0;
    }

    .custody-visual-wrap {
      /* exact image aspect ratio 900×775 */
      aspect-ratio: 900 / 543;
      border-radius: 20px;
      overflow: hidden;
      line-height: 0;
    }

    .custody-img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    @media (max-width: 1023px) {

      /* Section becomes positioning context, clips overflowing image bottom */
      .custody {
        position: relative;
        overflow: hidden;
        /* image is 90vw wide × 0.603 ratio = 54vw tall; needs full height + gap below content */
        padding-bottom: calc(54vw + 16px);
      }

      /* Fade-overlay: section background dissolves over the top edge of the image,
         making the crop boundary visually clear */
      .custody::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 20px;
        background: linear-gradient(to bottom, transparent, rgba(251, 251, 253, 0.35));
        pointer-events: none;
        z-index: 2;
      }

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

      /* Image leaves grid flow — absolutely anchored to section bottom */
      .custody-visual-wrap {
        position: absolute;
        bottom: 0;
        left: 5%;
        right: 5%;
        /* push 20% of image height below section boundary */
        transform: translateY(20%);
        border-radius: 16px 16px 0 0;
        /* only top corners visible */
      }
    }

    /* ══════════════════════════════
       S11 — TESTIMONIALS
    ══════════════════════════════ */
    .testimonials-scroll-wrapper {
      position: relative;
      margin: var(--space-32) 0 0;
    }

    /* gradient fade — намёк что можно листать */
    .testimonials-scroll-wrapper::after {
      content: '';
      position: absolute;
      right: 0;
      top: 0;
      bottom: 16px;
      /* не перекрывать зону прокрутки */
      width: 80px;
      background: linear-gradient(to left, #f2f2f9 10%, transparent 100%);
      pointer-events: none;
      z-index: 1;
    }

    .testimonials-track {
      display: flex;
      gap: var(--space-24);
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 16px;
      /* скрыть scrollbar визуально */
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .testimonials-track::-webkit-scrollbar {
      display: none;
    }

    /* кнопки пролистывания — только десктоп */
    .testimonials-nav {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: var(--space-24);
      position: relative;
      z-index: 2;
    }

    .t-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1.5px solid rgba(117, 64, 239, 0.45);
      background: var(--color-white);
      color: var(--color-purple-100);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: background var(--t-std), border-color var(--t-std), color var(--t-std), opacity var(--t-std), box-shadow var(--t-std);
      flex-shrink: 0;
    }

    .t-btn svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .t-btn:hover:not(:disabled) {
      background: var(--color-purple-100);
      border-color: var(--color-purple-100);
      color: white;
    }

    .t-btn:disabled {
      opacity: 0.28;
      cursor: default;
    }

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

    .testimonial-card {
      flex: 0 0 calc(33.33% - 16px);
      scroll-snap-align: start;
      background: var(--color-white);
      border: 1px solid rgba(0, 0, 0, .06);
      border-radius: var(--radius-md);
      padding: var(--space-32);
      transition: box-shadow var(--t-std);
    }

    .testimonial-card:hover {
      box-shadow: var(--shadow-md);
    }

    .testimonial-card .quote-mark {
      font-family: Georgia, serif;
      font-size: 48px;
      color: var(--color-purple-100);
      opacity: .35;
      line-height: 1;
      margin-bottom: var(--space-8);
    }

    .testimonial-card .quote {
      font-size: 15px;
      color: rgba(26, 26, 46, .7);
      font-style: italic;
      margin-bottom: var(--space-16);
      line-height: 1.65;
    }

    .testimonial-card .author {
      font-family: var(--font-ui);
      font-size: 13px;
      font-weight: 600;
      color: rgba(26, 26, 46, .45);
    }

    /* ══════════════════════════════
       S12 — COMPARISON
    ══════════════════════════════ */
    .comparison {
      background: var(--color-dark-900);
    }

    .comparison h2 {
      color: var(--color-white);
    }

    .comparison .table-header {
      display: flex;
      margin-bottom: 10px;
    }

    .comparison .table-header span {
      font-family: var(--font-ui);
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.09em;
      color: rgba(255, 255, 255, .35);
      padding-left: 24px;
    }

    .comparison .th-feature {
      width: 33%;
    }

    .comparison .th-se {
      width: 34%;
      color: var(--color-success);
    }

    .comparison .th-defi {
      width: 33%;
    }

    .comparison .table-wrap {
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .07);
    }

    .comparison table {
      width: 100%;
      border-collapse: collapse;
      border-spacing: 0;
      margin: var(--space-24) 0;
    }

    .comparison th,
    .comparison td {
      padding: 16px 24px;
      text-align: left;
      font-size: 15px;
    }

    .comparison tbody tr {
      border-top: 1px solid rgba(255, 255, 255, .05);
    }

    .comparison tbody tr:nth-child(odd) {
      background: rgba(255, 255, 255, .025);
    }

    .comparison tbody tr:nth-child(even) {
      background: rgba(8, 10, 28, .5);
    }

    .comparison td:first-child {
      font-family: var(--font-ui);
      font-weight: 500;
      color: rgba(255, 255, 255, .5);
    }

    .comparison .col-se {
      font-family: var(--font-ui);
      font-weight: 600;
      color: var(--color-success);
    }

    .comparison .col-defi {
      font-family: var(--font-ui);
      color: rgba(255, 255, 255, .55);
    }

    /* ══════════════════════════════
       S13 — RISK
    ══════════════════════════════ */
    .risk ul {
      list-style: none;
      padding: 0;
      margin: var(--space-16) 0;
    }

    .risk ul li {
      padding: var(--space-8) 0 var(--space-8) 20px;
      position: relative;
      color: rgba(255, 255, 255, .62);
      font-size: 15px;
    }

    .risk ul li::before {
      content: '–';
      position: absolute;
      left: 0;
      color: var(--color-purple-light);
    }

    .risk .italic-note {
      font-style: italic;
      color: rgba(255, 255, 255, .45);
      margin: var(--space-16) 0;
      font-size: 15px;
    }

    /* ── Comparison mobile cards (desktop: hidden) ── */
    .comp-cards { display: none; }

    /* ══════════════════════════════
       S14 — FAQ
    ══════════════════════════════ */
    .faq-list {
      margin: var(--space-32) auto;
    }

    .faq-item {
      border-bottom: 1px solid rgba(26, 26, 46, .1);
    }

    .faq-item:first-child {
      border-top: 1px solid rgba(26, 26, 46, .1);
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      padding: 20px 0;
      background: none;
      border: none;
      font-family: var(--font-body);
      font-size: 17px;
      font-weight: 500;
      text-align: left;
      color: #1a1a2e;
      transition: color var(--t-fast);
    }

    .faq-question:hover {
      color: var(--color-purple-100);
    }

    .faq-question .chevron {
      font-size: 24px;
      font-weight: 300;
      color: var(--color-purple-100);
      transition: transform var(--t-std);
      flex-shrink: 0;
      margin-left: var(--space-16);
    }

    .faq-item.open .faq-question .chevron {
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--t-slow) ease, padding var(--t-slow) ease;
    }

    .faq-item.open .faq-answer {
      max-height: 300px;
      padding-bottom: var(--space-24);
    }

    .faq-answer p {
      font-size: 16px;
      color: rgba(26, 26, 46, .62);
      line-height: 1.7;
    }

    /* ══════════════════════════════
       FOOTER
    ══════════════════════════════ */
    .site-footer {
      background: #0a0b18;
      border-top: 1px solid rgba(255, 255, 255, .07);
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 32px 24px 40px;
      text-align: center;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 4px 0;
      margin-bottom: 12px;
    }

    .footer-links a {
      font-family: var(--font-ui);
      font-size: 14px;
      color: rgba(255, 255, 255, .55);
      text-decoration: none;
      padding: 0 10px;
      transition: color .2s;
    }

    .footer-links a:hover {
      color: rgba(255, 255, 255, .9);
    }

    .footer-sep {
      color: rgba(255, 255, 255, .2);
      font-size: 14px;
      user-select: none;
    }

    .footer-copy {
      font-family: var(--font-ui);
      font-size: 14px;
      color: rgba(255, 255, 255, .4);
      margin-bottom: 24px;
    }

    .footer-legal {
      border-top: 1px solid rgba(255, 255, 255, .06);
      padding-top: 20px;
      text-align: left;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footer-legal p {
      font-family: var(--font-ui);
      font-size: 12px;
      color: rgba(255, 255, 255, .3);
      line-height: 1.6;
      margin: 0;
    }

    .footer-legal a {
      color: var(--color-purple-100);
      text-decoration: none;
    }

    .footer-legal a:hover {
      text-decoration: underline;
    }

    /* ══════════════════════════════
       S15 — CLOSING CTA
    ══════════════════════════════ */
    .closing-cta {
      background: var(--gradient-hero);
      color: var(--color-white);
      text-align: center;
      padding: 120px var(--space-24);
      position: relative;
      overflow: hidden;
    }

    .closing-cta::before {
      content: '';
      position: absolute;
      bottom: -15%;
      left: 50%;
      transform: translateX(-50%);
      width: 900px;
      height: 600px;
      background: radial-gradient(circle at 50% 70%, rgba(117, 64, 239, .38) 0%, transparent 65%);
      pointer-events: none;
    }

    .closing-cta>* {
      position: relative;
      z-index: 1;
    }

    .closing-cta h2 {
      color: var(--color-white);
      font-size: clamp(28px, 5vw, 56px);
    }

    .closing-cta .sub {
      font-size: 18px;
      color: rgba(255, 255, 255, .65);
      max-width: 560px;
      margin: 0 auto var(--space-40);
      line-height: 1.65;
    }

    .closing-cta .cta-row {
      display: flex;
      gap: var(--space-16);
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ══════════════════════════════
       DRAWER
    ══════════════════════════════ */
    .drawer-overlay {
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(0, 0, 0, .6);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--t-slow);
    }

    .drawer-overlay.open {
      opacity: 1;
      pointer-events: auto;
    }

    .drawer {
      position: fixed;
      top: 0;
      right: 0;
      z-index: 201;
      width: min(480px, 40vw);
      height: 100vh;
      background: var(--color-dark-800);
      border-left: 1px solid rgba(255, 255, 255, .08);
      padding: var(--space-48) var(--space-40);
      transform: translateX(100%);
      transition: transform var(--t-slow);
      overflow-y: auto;
      display: flex;
      flex-direction: column;
    }

    .drawer.open {
      transform: translateX(0);
    }

    .drawer .close-btn {
      position: absolute;
      top: var(--space-16);
      right: var(--space-16);
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: var(--radius-sm);
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: var(--color-grey-400);
      transition: background var(--t-fast), color var(--t-fast);
    }

    .drawer .close-btn:hover {
      background: rgba(255, 255, 255, .12);
      color: var(--color-white);
    }

    .drawer .drawer-logo {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 20px;
      letter-spacing: -0.02em;
      color: var(--color-white);
      margin-bottom: var(--space-32);
    }

    .drawer h2 {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: var(--space-8);
      color: var(--color-white);
    }

    .drawer .drawer-sub {
      font-size: 15px;
      color: var(--color-grey-400);
      margin-bottom: var(--space-32);
    }

    .drawer label {
      display: block;
      font-family: var(--font-ui);
      font-size: 13px;
      font-weight: 500;
      margin-bottom: var(--space-8);
      color: var(--color-grey-400);
    }

    .drawer input[type="email"],
    .drawer input[type="password"] {
      width: 100%;
      padding: 12px 16px;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: var(--radius-sm);
      font-family: var(--font-ui);
      font-size: 16px;
      color: var(--color-white);
      margin-bottom: var(--space-16);
      outline: none;
      transition: border-color var(--t-std), background var(--t-std);
    }

    .drawer input::placeholder {
      color: var(--color-muted-purple);
    }

    .drawer input:focus {
      border-color: var(--color-purple-100);
      background: rgba(117, 64, 239, .08);
    }

    .drawer .btn-signup {
      width: 100%;
      padding: 14px;
      border: none;
      border-radius: var(--radius-full);
      background: var(--color-purple-100);
      color: var(--color-white);
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 500;
      margin-bottom: var(--space-24);
      transition: background var(--t-std), box-shadow var(--t-std);
    }

    .drawer .btn-signup:hover {
      background: var(--color-purple-hover);
      box-shadow: var(--shadow-purple);
    }

    .drawer .divider {
      display: flex;
      align-items: center;
      gap: var(--space-12);
      margin-bottom: var(--space-24);
      font-family: var(--font-ui);
      font-size: 13px;
      color: var(--color-grey-400);
    }

    .drawer .divider::before,
    .drawer .divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(255, 255, 255, .1);
    }

    .drawer .social-btns {
      display: flex;
      gap: var(--space-12);
      margin-bottom: var(--space-32);
    }

    .drawer .social-btn {
      flex: 1;
      padding: 12px;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: var(--radius-sm);
      font-family: var(--font-ui);
      font-size: 14px;
      font-weight: 500;
      color: var(--color-white);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-8);
      transition: background var(--t-fast);
    }

    .drawer .social-btn:hover {
      background: rgba(255, 255, 255, .1);
    }

    .drawer .login-link {
      text-align: center;
      font-family: var(--font-ui);
      font-size: 14px;
      color: var(--color-grey-400);
    }

    .drawer .login-link a {
      font-weight: 600;
      color: var(--color-purple-light);
      transition: color var(--t-fast);
    }

    .drawer .login-link a:hover {
      color: var(--color-white);
    }

    /* ── Mobile Drawer ── */
    @media (max-width: 767px) {
      .drawer {
        width: 100%;
        height: 88vh;
        top: auto;
        bottom: 0;
        right: 0;
        transform: translateY(100%);
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, .1);
        padding: var(--space-24) var(--space-24) var(--space-40);
      }

      .drawer.open {
        transform: translateY(0);
      }

      .drawer .drag-handle {
        width: 40px;
        height: 4px;
        background: rgba(255, 255, 255, .15);
        border-radius: var(--radius-full);
        margin: 0 auto var(--space-24);
      }
    }

    @media (min-width: 768px) {
      .drawer .drag-handle {
        display: none;
      }
    }

    /* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
    @media (max-width: 1023px) {
      .trust-bar .grid {
        grid-template-columns: repeat(3, 1fr);
      }

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

      .yield-sources .sources-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .platform-scale .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .how-it-works .steps {
        grid-template-columns: repeat(2, 1fr);
      }

      .how-it-works .steps::before {
        display: none;
      }

      /* планшет: карточки по 50% — видно ~1.5 карточки */
      .testimonial-card {
        flex: 0 0 calc(50% - 12px);
      }
    }

    @media (max-width: 767px) {
      .section {
        padding: 56px 20px;
      }

      /* phone visible ≈ 54vw + 72px breathing room between button and phone */
      .solution {
        padding-bottom: max(300px, calc(58vw + 72px));
      }

      /* custody image: full height (54vw) + gap — must override .section shorthand above */
      .custody {
        padding-bottom: calc(54vw + 16px);
      }

      .trust-bar {
        padding: 14px 16px;
      }

      .trust-bar .grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
      }

      .trust-bar .metric {
        padding: 8px 4px;
      }

      .trust-bar .metric .value {
        font-size: clamp(15px, 4vw, 20px);
        white-space: nowrap;
      }

      .trust-bar .metric .label {
        font-size: 10px;
        line-height: 1.3;
      }

      .trust-bar .metric:not(:last-child)::after {
        display: none;
      }

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

      .yield-sources .sources-grid {
        grid-template-columns: 1fr;
      }

      .platform-scale .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .how-it-works .steps {
        grid-template-columns: 1fr;
        gap: var(--space-24);
      }

      /* мобайл: 80% — пика следующей карточки как намёк */
      .testimonial-card {
        flex: 0 0 80%;
      }

      /* gradient под мобайл фон секции */
      .testimonials-scroll-wrapper::after {
        background: linear-gradient(to left, #f2f2f9 10%, transparent 100%);
        width: 48px;
      }

      /* hide table, show cards */
      .comparison .table-header,
      .comparison .table-wrap { display: none; }

      .comp-cards {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: var(--space-32);
      }

      .comp-card {
        border-radius: 12px;
        background: rgba(255,255,255,.05);
        padding: 14px 16px;
      }

      .comp-feat {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: .05em;
        text-transform: uppercase;
        color: rgba(255,255,255,.4);
        margin: 0 0 10px;
      }

      .comp-sides {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
      }

      .comp-side {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 0;
      }

      .comp-side.defi {
        padding-left: 14px;
        border-left: 1px solid rgba(255,255,255,.1);
      }

      .cs-label {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: .03em;
        color: rgba(255,255,255,.4);
      }

      .comp-side.se .cs-label { color: rgba(180,160,255,.65); }

      .cs-val {
        font-size: 13px;
        font-weight: 500;
        color: rgba(255,255,255,.7);
        line-height: 1.35;
      }

      .comp-side.se .cs-val {
        color: #1ccc8d;
        font-weight: 600;
      }

      .closing-cta .cta-row {
        flex-direction: column;
        align-items: center;
      }

      .hero {
        min-height: 85vh;
        padding: 100px 20px 60px;
      }

      .sticky-header nav a.nav-link {
        display: none;
      }
    }
