  /* =================================================================
     MyZiggy — Homepage · Production
     Single file · Vanilla HTML / CSS / minimal JS
     ================================================================= */

  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg-0);
    color: var(--text-0);
    font-size: 15px; line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }
  button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
  a { color: inherit; text-decoration: none; }
  ::-webkit-scrollbar { width: 10px; height: 10px; }
  ::-webkit-scrollbar-track { background: transparent; }
  ::-webkit-scrollbar-thumb { background: #1a2338; border-radius: 5px; }

  :root {
    /* Surfaces */
    --bg-0: #04070e;
    --bg-1: #070b14;
    --bg-2: #0c1220;
    --bg-3: #111829;
    /* Lines */
    --line: #141c30;
    --line-2: #1d273e;
    --line-3: #283453;
    /* Text */
    --text-0: #f2f6fb;
    --text-1: #c9d2e1;
    --text-2: #8794ac;
    --text-3: #5d6a82;
    --text-4: #3d4860;
    /* Accent */
    --accent: #00d4b0;
    --accent-2: #22d3ee;
    --accent-soft: rgba(0,212,176,0.10);
    --accent-line: rgba(0,212,176,0.32);
    /* Violet — Integrated / Execution only */
    --violet: #a78bfa;
    --violet-soft: rgba(167,139,250,0.10);
    --violet-line: rgba(167,139,250,0.32);
    /* Status */
    --bull: #10b981;
    --bull-soft: rgba(16,185,129,0.10);
    --bear: #ef4444;
    --bear-soft: rgba(239,68,68,0.10);
    --warn: #f59e0b;
    --warn-soft: rgba(245,158,11,0.10);
    /* Placeholder highlight */
    --placeholder: #f59e0b;

    --container: 1240px;
    --r-sm: 4px;
    --r-md: 6px;
    --r-lg: 10px;
    --mono: "JetBrains Mono", "SF Mono", "Menlo", "Consolas", "Roboto Mono", ui-monospace, monospace;

    --brand:        #4ddbc1;   /* mint accent (matches logo) */
    --brand-2:      #4dd6ff;
    --warn:         #ffb86b;
  }

  /* ====== UTIL ====== */
  .container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
  .mono { font-family: var(--mono); font-variant-numeric: tabular-nums; letter-spacing: -0.2px; }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--mono);
    font-size: 11px; font-weight: 500; letter-spacing: 1.4px; text-transform: uppercase;
    color: var(--accent);
    padding: 5px 10px; border-radius: var(--r-sm);
    background: var(--accent-soft); border: 1px solid var(--accent-line);
  }
  .eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

  .h1 {
    font-size: clamp(38px, 4.8vw, 60px);
    line-height: 1.04; letter-spacing: -1.6px; font-weight: 700;
    color: var(--text-0); margin: 0;
  }
  .h1 .dim { color: var(--text-2); }
  .h2 {
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.1; letter-spacing: -0.9px; font-weight: 700;
    color: var(--text-0); margin: 0 0 14px;
  }
  .h2 .dim { color: var(--text-2); }
  .h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.3px; color: var(--text-0); margin: 0 0 8px; }
  .lede { color: var(--text-1); font-size: 16.5px; line-height: 1.6; max-width: 640px; font-weight: 400; }
  .lede.center { margin: 0 auto; }

  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    height: 44px; padding: 0 20px; border-radius: var(--r-md);
    font-size: 14px; font-weight: 600; letter-spacing: -0.1px;
    transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
    border: 1px solid transparent;
    white-space: nowrap;
  }
  .btn svg { width: 16px; height: 16px; }
  .btn-primary { background: var(--accent); color: #031712; border-color: var(--accent); }
  .btn-primary:hover { background: #19dbbb; border-color: #19dbbb; transform: translateY(-1px); }
  .btn-violet {
    background: linear-gradient(92deg, #22d3ee 0%, #a78bfa 100%);
    color: #0b0a1f; border-color: transparent;
  }
  .btn-violet:hover { transform: translateY(-1px); filter: brightness(1.06); }
  .btn-ghost { background: transparent; border-color: var(--line-2); color: var(--text-0); }
  .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
  .btn-sm { height: 38px; padding: 0 14px; font-size: 13px; }
  .btn-lg { height: 50px; padding: 0 24px; font-size: 14.5px; }

  .section { padding: 72px 0; position: relative; }
  .section + .section { padding-top: 56px; }
  .section-head { max-width: 760px; margin: 0 auto 36px; }
  .section-head.center { text-align: center; }
  .section-head .eyebrow { margin-bottom: 14px; }
  .section-head .h2 { margin-top: 4px; margin-bottom: 10px; }
  .section-head .lede { margin-top: 8px; }

  /* Visible placeholder marker */
  .ph {
    font-family: var(--mono); font-size: 11px; font-weight: 700;
    color: var(--placeholder); letter-spacing: 0.3px;
    background: rgba(245,158,11,0.10); border: 1px dashed rgba(245,158,11,0.45);
    padding: 1px 6px; border-radius: 3px;
    text-transform: uppercase;
  }
  .ph-lg { font-size: 13px; padding: 3px 8px; }

  /* ====== HEADER ====== */
  .header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(4,7,14,0.82);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 15px 0;
  }
  .header-inner { display: flex; align-items: center; gap: 24px; height: 64px; }
  .logo-wrap { display: flex; align-items: center; gap: 10px; cursor: pointer; }
  .logo-mark {
    width: 30px; height: 30px; border-radius: 6px;
    background: var(--bg-3); border: 1px solid var(--line-3);
    display: grid; place-items: center;
    font-family: var(--mono); font-weight: 700; font-size: 13px; color: var(--accent);
    position: relative;
  }
  .logo-mark::after { content: ''; position: absolute; inset: 3px; border: 1px solid var(--line-2); border-radius: 3px; }
  .logo-text { display: flex; flex-direction: column; line-height: 1; }
  .logo-word { font-size: 17px; font-weight: 700; letter-spacing: -0.4px; color: var(--text-0); }
  .logo-tag { font-family: var(--mono); font-size: 9.5px; letter-spacing: 1.6px; font-weight: 500; color: var(--text-3); text-transform: uppercase; margin-top: 3px; }
  .nav { display: flex; align-items: center; gap: 2px; margin-left: 16px; }
  .nav a { padding: 7px 12px; border-radius: var(--r-sm); font-size: 13.5px; font-weight: 500; color: var(--text-2); }
  .nav a:hover { color: var(--text-0); }
  .header-spacer { flex: 1; }
  .header-actions { display: flex; align-items: center; gap: 10px; }
  .mobile-toggle { display: none; width: 38px; height: 38px; border-radius: var(--r-md); background: var(--bg-2); border: 1px solid var(--line-2); color: var(--text-0); place-items: center; }

  /* ====== RANKED STRIP · Top 10 model output · no scroll ====== */
  .ranked-strip {
    background: var(--bg-1);
    border-bottom: 1px solid var(--line);
    height: 34px;
    display: flex;
    align-items: stretch;
    font-family: var(--mono);
    overflow: hidden;
  }
  .ranked-strip .container {
    padding: 0; max-width: none;
    display: flex; align-items: stretch;
    width: 100%;
  }
  .rs-label {
    display: inline-flex; align-items: center;
    padding: 0 14px;
    border-right: 1px solid var(--line);
    font-size: 9.5px; font-weight: 500;
    letter-spacing: 1.6px; text-transform: uppercase;
    color: var(--text-3);
    flex-shrink: 0;
    white-space: nowrap;
  }
  .rs-items {
    list-style: none; padding: 0; margin: 0;
    display: flex; align-items: stretch;
    flex: 1 1 auto;
    min-width: 0;
  }
  .rs-items li {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 6px;
    padding: 0 10px;
    border-right: 1px solid var(--line);
    font-size: 10.5px;
    flex: 1 1 0;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
  }
  .rs-items li:last-child { border-right: 0; }
  .rs-rank {
    color: var(--text-3);
    font-size: 10px; font-weight: 400;
    letter-spacing: 0.2px;
    flex-shrink: 0;
  }
  .rs-sym {
    color: var(--text-1);
    font-size: 10.5px; font-weight: 500;
    letter-spacing: 0.2px;
    flex-shrink: 0;
  }
  .rs-sep { color: var(--line-3); font-size: 10px; opacity: 0.55; flex-shrink: 0; }
  .rs-score {
    color: var(--text-3);
    font-size: 10px; font-weight: 400;
    letter-spacing: 0.1px;
    opacity: 0.75;
    flex-shrink: 0;
  }
  .rs-dir {
    font-size: 9.5px; font-weight: 500;
    letter-spacing: 1.1px; text-transform: uppercase;
    flex-shrink: 0;
  }
  .rs-dir.long  { color: rgba(16, 185, 129, 0.55); }
  .rs-dir.short { color: rgba(239, 68, 68, 0.55); }
  .rs-status {
    font-size: 10px; font-weight: 700;
    letter-spacing: 1.2px; text-transform: uppercase;
    flex-shrink: 1;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .rs-status.valid { color: var(--bull); }
  .rs-status.near  { color: var(--accent); }
  .rs-status.wait  { color: var(--text-3); font-weight: 500; }

  @media (max-width: 1180px) {
    .rs-items li { padding: 0 8px; gap: 5px; font-size: 10px; }
    .rs-rank, .rs-score, .rs-dir, .rs-status { font-size: 9.5px; }
    .rs-sym { font-size: 10px; }
  }
  @media (max-width: 960px) {
    .ranked-strip { height: auto; min-height: 32px; }
    .ranked-strip .container { flex-wrap: wrap; }
    .rs-label { width: 100%; border-right: 0; border-bottom: 1px solid var(--line); padding: 6px 14px; }
    .rs-items { flex-wrap: wrap; }
    .rs-items li { flex: 1 1 50%; min-width: 50%; padding: 6px 12px; border-bottom: 1px solid var(--line); }
    .rs-items li:nth-last-child(-n+2) { border-bottom: 0; }
    .rs-items li:nth-child(2n) { border-right: 0; }
  }

  /* ====== HERO ====== */
  .hero {
    position: relative; overflow: hidden;
    padding: 64px 0 52px;
    background:
      repeating-linear-gradient(0deg, transparent 0, transparent 79px, rgba(40,52,83,0.18) 79px, rgba(40,52,83,0.18) 80px),
      repeating-linear-gradient(90deg, transparent 0, transparent 79px, rgba(40,52,83,0.14) 79px, rgba(40,52,83,0.14) 80px),
      var(--bg-0);
  }
  .hero::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
      radial-gradient(ellipse at 20% 40%, rgba(0,212,176,0.09), transparent 45%),
      radial-gradient(ellipse at 85% 60%, rgba(167,139,250,0.08), transparent 45%);
  }
  .hero-second.hero::before{
    content: unset!important;
  }
  .hero-inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; text-align: center; }
  .hero-eyebrow { margin-bottom: 16px; }
  .hero .h1 { margin-bottom: 14px; }
  .hero-bridge {
    display: inline-block; margin-bottom: 16px;
    color: var(--accent); font-family: var(--mono);
    font-size: 12.5px; font-weight: 500; letter-spacing: 0.3px;
    padding: 8px 14px; border-radius: var(--r-sm);
    background: var(--accent-soft); border: 1px solid var(--accent-line);
    max-width: 780px; line-height: 1.5;
  }
  .hero-sub { color: var(--text-1); font-size: 17px; line-height: 1.55; max-width: 680px; margin: 0 auto 14px; }
  .hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; margin-top: 2px; }
  .hero-trust {
    display: flex; flex-wrap: wrap; gap: 20px; justify-content: center;
    padding-top: 16px; border-top: 1px solid var(--line);
    color: var(--text-3); font-family: var(--mono); font-size: 10.5px; letter-spacing: 1.2px; text-transform: uppercase;
    max-width: 820px; margin: 0 auto;
  }
  .hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
  .hero-trust svg { width: 12px; height: 12px; color: var(--accent); }

  /* ====== PROOF BAR ====== */
  .proof {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-1);
  }
  .proof-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
  }
  .proof-cell {
    padding: 28px 28px;
    border-right: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 6px;
  }
  .proof-cell:last-child { border-right: 0; }
  .proof-val {
    font-family: var(--mono);
    font-size: 28px; font-weight: 700; color: var(--text-0);
    letter-spacing: -0.8px;
    line-height: 1;
  }
  .proof-val .slash { color: var(--text-3); margin: 0 2px; font-weight: 500; }
  .proof-val .unit { font-size: 14px; color: var(--text-2); font-weight: 500; letter-spacing: 0; margin-left: 4px; }
  .proof-lbl {
    font-family: "Inter", sans-serif;
    font-size: 13px; color: var(--text-1); font-weight: 500;
    letter-spacing: -0.1px;
    margin-top: 6px; line-height: 1.4;
  }
  .proof-ctx {
    font-family: var(--mono);
    font-size: 10.5px; color: var(--text-3);
    letter-spacing: 0.3px;
    margin-top: 4px;
  }
  .proof-foot {
    padding: 14px 32px;
    border-top: 1px solid var(--line);
    color: var(--text-3); font-family: var(--mono); font-size: 10.5px;
    letter-spacing: 0.3px; text-align: center;
    background: var(--bg-0);
  }
  .proof-foot a { color: var(--accent); }

  /* ====== NOT A BOT ====== */
  .nab { }
  .nab-intro { color: var(--text-1); font-size: 16px; line-height: 1.6; max-width: 680px; margin: 0 auto 32px; text-align: center; }
  .nab-table {
    border: 1px solid var(--line-2); border-radius: var(--r-lg);
    background: var(--bg-1);
    overflow: hidden;
    margin-bottom: 32px;
  }
  .nab-head { display: grid; grid-template-columns: 1fr 1fr 1.05fr; border-bottom: 1px solid var(--line); }
  .nab-head > div {
    padding: 18px 22px;
    font-family: var(--mono); font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 600;
    color: var(--text-3); border-right: 1px solid var(--line);
  }
  .nab-head > div:last-child { border-right: 0; color: var(--accent); }
  .nab-row {
    display: grid; grid-template-columns: 1fr 1fr 1.05fr;
    border-bottom: 1px solid var(--line);
  }
  .nab-row:last-child { border-bottom: 0; }
  .nab-row > div {
    padding: 16px 22px;
    font-size: 13.5px; color: var(--text-1); line-height: 1.5;
    border-right: 1px solid var(--line);
  }
  .nab-row > div:last-child {
    border-right: 0; color: var(--text-0); font-weight: 500;
    background: rgba(0,212,176,0.03);
  }
  .nab-close {
    font-size: clamp(20px, 2.2vw, 28px); font-weight: 600; text-align: center;
    color: var(--text-0); letter-spacing: -0.5px; line-height: 1.3;
    max-width: 820px; margin: 6px auto 0;
  }
  .nab-close strong {
    background: linear-gradient(92deg, var(--accent) 0%, var(--violet) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    font-weight: 700;
  }

  /* ====== HOW IT WORKS ====== */
  .hiw-workflow {
    max-width: 1120px; margin: 0 auto 24px;
    border: 1px solid var(--line-2);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--bg-1);
  }
  .hiw-workflow img {
    display: block; width: 100%; height: auto;
    opacity: 0.95;
  }
  .hiw-grid { display: grid; grid-template-columns: 1fr 24px 1fr 24px 1fr; gap: 0; }
  .hiw-step {
    border: 1px solid var(--line); background: var(--bg-1);
    border-radius: var(--r-lg); padding: 28px 28px 24px;
    transition: border-color .2s ease;
  }
  .hiw-step:hover { border-color: var(--line-3); }
  .hiw-step .n {
    font-family: var(--mono); font-size: 11px; color: var(--accent);
    letter-spacing: 1.6px; text-transform: uppercase; font-weight: 600;
    margin-bottom: 18px; display: flex; align-items: center; gap: 10px;
  }
  .hiw-step .n .bar { width: 24px; height: 1px; background: var(--accent); opacity: 0.6; }
  .hiw-step h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.3px; color: var(--text-0); margin: 0 0 10px; }
  .hiw-step p { color: var(--text-1); font-size: 14px; margin: 0 0 14px; line-height: 1.55; }
  .hiw-step .mech {
    font-family: var(--mono); font-size: 11px; color: var(--text-3);
    letter-spacing: 0.3px; padding-top: 12px; border-top: 1px solid var(--line);
  }
  .hiw-conn { display: flex; align-items: center; justify-content: center; }
  .hiw-conn-line { height: 1px; width: 100%; background: repeating-linear-gradient(90deg, var(--line-3) 0 4px, transparent 4px 8px); }

  /* ====== ONE REAL TRADE ====== */
  .ort { background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .ort-intro { color: var(--text-1); font-size: 15.5px; line-height: 1.55; max-width: 680px; margin: 0 auto 24px; text-align: center; }

  /* System trade example — execution log readout */
  #real-trade.section { padding-top: 40px; padding-bottom: 48px; }
  #real-trade .section-head { margin-bottom: 14px; }
  #real-trade .exlog { margin-top: -4px; }
  #real-trade .section-head.reveal,
  #real-trade .exlog-chart.reveal,
  #real-trade .exlog.reveal { opacity: 1; transform: none; transition: none; }

  .exlog-chart {
    max-width: 1120px; margin: 0 auto 24px;
    border: 1px solid var(--line-2);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--bg-1);
  }
  .exlog-chart img {
    display: block; width: 100%; height: auto;
    opacity: 0.95;
  }

  .exlog {
    max-width: 1120px; margin: 0 auto;
    font-family: var(--mono);
    color: var(--text-1);
  }

  /* A · compact system header strip */
  .exlog-header {
    display: flex; flex-wrap: wrap;
    border-top: 1px solid var(--line-2);
    border-bottom: 1px solid var(--line-2);
  }
  .exlog-h-item {
    display: inline-flex; align-items: baseline; gap: 10px;
    padding: 10px 18px;
    border-right: 1px solid var(--line);
    font-size: 12px;
  }
  .exlog-h-item:last-child { border-right: 0; }
  .exlog-h-item .k {
    font-size: 9.5px; letter-spacing: 1.4px; text-transform: uppercase;
    color: var(--text-3); font-weight: 500;
  }
  .exlog-h-item .v {
    color: var(--text-0); font-weight: 600; letter-spacing: -0.1px;
  }
  .exlog-h-item .v.bull { color: var(--bull); }
  .exlog-h-item .v.bear { color: var(--bear); }
  .exlog-h-item .v.violet { color: var(--violet); }
  .exlog-h-item .v.status-closed {
    color: var(--bull); font-size: 10.5px; font-weight: 700;
    padding: 2px 8px; border-radius: 2px;
    background: var(--bull-soft); border: 1px solid var(--bull-line);
    letter-spacing: 1.4px; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .exlog-h-item .v.status-closed::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--bull);
  }

  /* B · event log table */
  .exlog-table { display: flex; flex-direction: column; }
  .exlog-col-head {
    display: grid;
    grid-template-columns: 110px 140px 220px 1fr;
    gap: 18px;
    padding: 10px 18px;
    font-size: 9.5px; font-weight: 500;
    letter-spacing: 1.4px; text-transform: uppercase;
    color: var(--text-3);
    border-bottom: 1px solid var(--line-2);
  }
  .exlog-phase-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--line-2), transparent 80%);
  }
  .exlog-row {
    display: grid;
    grid-template-columns: 110px 140px 220px 1fr;
    gap: 18px;
    padding: 9px 18px;
    align-items: baseline;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
  }
  .exlog-row:last-of-type { border-bottom: 0; }
  .exlog-row .tm {
    color: var(--accent); font-weight: 600; letter-spacing: 0.2px;
  }
  .exlog-row .ph {
    font-size: 9.5px; font-weight: 700;
    letter-spacing: 1.4px; text-transform: uppercase;
    padding: 2px 7px; border-radius: 2px;
    display: inline-block; width: fit-content;
    border: 1px solid transparent;
  }
  .exlog-row .ph.setup {
    color: var(--text-2);
    background: rgba(135,148,172,0.08);
    border-color: var(--line-3);
  }
  .exlog-row .ph.execution {
    color: var(--accent);
    background: var(--accent-soft);
    border-color: var(--accent-line);
  }
  .exlog-row .ph.management {
    color: var(--violet);
    background: var(--violet-soft);
    border-color: var(--violet-line);
  }
  .exlog-row .ph.exit {
    color: var(--bull);
    background: var(--bull-soft);
    border-color: var(--bull-line);
  }
  .exlog-row .ev {
    color: var(--text-0); font-weight: 600; letter-spacing: -0.1px; font-size: 13px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }
  .exlog-row .st {
    color: var(--text-2); font-size: 12px; line-height: 1.5;
  }

  /* C · control verification panel */
  .exlog-verify {
    margin-top: 0;
    border-top: 1px solid var(--line-2);
    border-bottom: 1px solid var(--line-2);
  }
  .exlog-verify-head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 18px 10px;
    border-bottom: 1px dashed var(--line);
  }
  .exlog-verify-head .vlabel {
    font-size: 10px; font-weight: 600;
    letter-spacing: 1.6px; text-transform: uppercase;
    color: var(--accent);
    display: inline-flex; align-items: center; gap: 8px;
  }
  .exlog-verify-head .vlabel::before {
    content: ''; width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(0,212,176,0.18);
  }
  .exlog-verify-head .vnote {
    font-size: 9.5px; font-weight: 500;
    color: var(--text-3); letter-spacing: 1.2px; text-transform: uppercase;
  }
  .exlog-verify-rows {
    display: grid; grid-template-columns: repeat(4, 1fr);
  }
  .exlog-verify-rows .vrow {
    display: flex; flex-direction: column; gap: 6px;
    padding: 12px 18px;
    border-right: 1px solid var(--line);
  }
  .exlog-verify-rows .vrow:last-child { border-right: 0; }
  .exlog-verify-rows .vrow .vk {
    font-size: 9.5px; font-weight: 500;
    letter-spacing: 1.4px; text-transform: uppercase;
    color: var(--text-3);
  }
  .exlog-verify-rows .vrow .vv {
    font-size: 13px; font-weight: 700;
    color: var(--text-1); letter-spacing: -0.1px;
  }
  .exlog-verify-rows .vrow.verified .vv {
    color: var(--bull);
    display: inline-flex; align-items: center; gap: 6px;
  }
  .exlog-verify-rows .vrow.verified .vv::before {
    content: '✓'; font-size: 12px; line-height: 1;
  }

  @media (max-width: 1000px) {
    .exlog-col-head, .exlog-row {
      grid-template-columns: 92px 110px 1fr;
      gap: 14px;
    }
    .exlog-col-head span:last-child,
    .exlog-row .st {
      grid-column: 1 / -1; padding-left: 0; padding-top: 4px;
    }
    .exlog-verify-rows { grid-template-columns: repeat(2, 1fr); }
    .exlog-verify-rows .vrow:nth-child(2n) { border-right: 0; }
    .exlog-verify-rows .vrow:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  }
  @media (max-width: 640px) {
    .exlog-h-item { padding: 8px 14px; flex: 1 1 auto; border-bottom: 1px solid var(--line); }
    .exlog-col-head, .exlog-row { grid-template-columns: 80px 1fr; gap: 8px 14px; padding: 9px 14px; }
    .exlog-col-head span:nth-child(2),
    .exlog-row .ph { grid-column: 2 / -1; width: fit-content; }
    .exlog-col-head span:nth-child(3),
    .exlog-row .ev { grid-column: 1 / -1; padding-top: 2px; }
    .exlog-col-head span:last-child,
    .exlog-row .st { grid-column: 1 / -1; padding-top: 2px; }
    .exlog-verify-rows { grid-template-columns: 1fr; }
    .exlog-verify-rows .vrow { border-right: 0 !important; border-bottom: 1px solid var(--line); }
    .exlog-verify-rows .vrow:last-child { border-bottom: 0; }
  }
  .trade-card {
    max-width: 920px; margin: 0 auto;
    background: var(--bg-0);
    border: 1px solid var(--line-2);
    border-radius: var(--r-lg);
    overflow: hidden;
  }
  .trade-head {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 16px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--bg-2);
    flex-wrap: wrap;
  }
  .trade-head .ttl {
    font-family: var(--mono); font-size: 12px; color: var(--text-1);
    letter-spacing: 0.3px;
  }
  .trade-head .ttl strong { color: var(--text-0); margin: 0 6px; }
  .trade-head .tag {
    font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
    padding: 4px 9px; border-radius: 3px;
    background: var(--bull-soft); color: var(--bull); border: 1px solid rgba(16,185,129,0.35);
  }
  .trade-log { padding: 18px 22px; font-family: var(--mono); font-size: 13px; }
  .trade-row {
    display: grid; grid-template-columns: 110px 1fr 1fr;
    gap: 14px; padding: 6px 0; align-items: baseline;
    color: var(--text-1);
  }
  .trade-row .t { color: var(--accent); }
  .trade-row .ev { color: var(--text-0); font-weight: 500; }
  .trade-row .d { color: var(--text-2); font-size: 12px; text-align: left; }

  .trade-divider {
    margin: 14px 0 8px;
    padding-top: 10px;
    border-top: 1px dashed var(--line);
    font-family: var(--mono); font-size: 10.5px; color: var(--text-3);
    letter-spacing: 1.4px; text-transform: uppercase;
  }
  .trade-pnl {
    display: grid; grid-template-columns: 110px 1fr 1fr;
    gap: 14px; padding: 6px 0; align-items: baseline;
    color: var(--text-1); font-family: var(--mono); font-size: 13.5px;
  }
  .trade-pnl .lbl { color: var(--text-2); grid-column: 1 / span 2; font-weight: 500; }
  .trade-pnl .val { color: var(--text-0); font-weight: 700; text-align: right; }
  .trade-pnl .val.bull { color: var(--bull); }

  .trade-callout {
    margin: 18px 22px 22px;
    padding: 18px 22px;
    border: 1px solid var(--accent-line);
    border-radius: var(--r-md);
    background: linear-gradient(180deg, rgba(0,212,176,0.06), rgba(0,212,176,0.02));
  }
  .trade-callout .hd {
    font-family: var(--mono); font-size: 10.5px; color: var(--accent);
    letter-spacing: 1.6px; text-transform: uppercase; font-weight: 700;
    margin-bottom: 10px;
  }
  .trade-callout .line {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 0;
    font-family: var(--mono); font-size: 15px; color: var(--text-0);
    border-bottom: 1px dashed rgba(0,212,176,0.25);
  }
  .trade-callout .line:last-child { border-bottom: 0; }
  .trade-callout .line .k { color: var(--text-2); letter-spacing: 0.3px; }
  .trade-callout .line .v { color: var(--accent); font-weight: 700; font-size: 18px; letter-spacing: -0.3px; }

  .trade-caption {
    max-width: 780px; margin: 20px auto 0;
    color: var(--text-2); font-size: 14px; line-height: 1.55;
  }
  .trade-caption strong { color: var(--text-0); font-weight: 600; }

  /* ====== SERVICES ====== */
  .svc-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 24px; }
  .svc-card {
    position: relative;
    background: var(--bg-1); border: 1px solid var(--line-2);
    border-radius: var(--r-lg);
    padding: 30px 30px 28px;
    display: flex; flex-direction: column;
  }
  .svc-card.integrated {
    border-color: transparent;
    background:
      linear-gradient(var(--bg-1), var(--bg-1)) padding-box,
      linear-gradient(135deg, rgba(34,211,238,0.55), rgba(167,139,250,0.55)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 30px 80px -40px rgba(167,139,250,0.35);
  }
  .svc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
  .svc-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--mono); font-size: 10.5px; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 600;
    padding: 5px 9px; border-radius: var(--r-sm);
    color: var(--accent); background: var(--accent-soft); border: 1px solid var(--accent-line);
  }
  .svc-card.integrated .svc-badge { color: var(--violet); background: var(--violet-soft); border-color: var(--violet-line); }
  .svc-rec {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--mono); font-size: 10px; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 700;
    padding: 5px 9px; border-radius: var(--r-sm);
    background: linear-gradient(92deg, #22d3ee, #a78bfa); color: #0b0a1f;
  }
  .svc-card h3 { font-size: 26px; letter-spacing: -0.7px; font-weight: 700; color: var(--text-0); margin: 0 0 8px; }
  .svc-card.integrated h3 { font-size: 30px; }
  .svc-tag { font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.3px; color: var(--accent); font-weight: 500; margin: 0 0 14px; }
  .svc-card.integrated .svc-tag { color: var(--violet); }
  .svc-sub { color: var(--text-1); font-size: 15px; margin: 0 0 22px; line-height: 1.55; max-width: 560px; }

  .svc-pull {
    margin: 18px 0 22px;
    font-size: 20px; font-weight: 700; letter-spacing: -0.4px;
    padding: 14px 16px;
    border-left: 2px solid var(--violet);
    background: var(--violet-soft);
    color: var(--text-0);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
  }

  .svc-group { margin-bottom: 20px; }
  .svc-group-label {
    font-family: var(--mono); font-size: 10.5px;
    color: var(--text-3); letter-spacing: 1.4px; text-transform: uppercase; font-weight: 600;
    margin-bottom: 10px;
  }
  .svc-card.integrated .svc-group-label.enforce { color: var(--violet); }
  .feat-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
  .feat-list li {
    display: flex; align-items: flex-start; gap: 12px;
    color: var(--text-1); font-size: 13.5px; line-height: 1.5;
  }
  .feat-list li .chk {
    flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
    background: var(--accent-soft); border: 1px solid var(--accent-line);
    display: grid; place-items: center; color: var(--accent);
    margin-top: 2px;
  }
  .feat-list li .chk svg { width: 10px; height: 10px; }
  .svc-card.integrated .feat-list.enforce li .chk { background: var(--violet-soft); border-color: var(--violet-line); color: var(--violet); }
  .svc-card.integrated .feat-list.control li .chk { background: var(--bg-3); border-color: var(--line-3); color: var(--text-1); }

  .svc-foot {
    margin-top: auto; display: flex; justify-content: space-between; align-items: center;
    padding-top: 20px; border-top: 1px solid var(--line); gap: 14px;
  }
  .svc-foot .note { color: var(--text-3); font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.8px; text-transform: uppercase; }

  /* ====== CALIBRATION ====== */
  .cal { background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .cal-title-block { text-align: center; margin-bottom: 28px; }
  .cal-title-block .h2 { margin-bottom: 10px; }
  .cal-title-block .sub { color: var(--text-1); font-size: 16px; line-height: 1.55; max-width: 680px; margin: 12px auto 0; }
  .cal-title-block .sub strong { color: var(--text-0); }
  .cal-preview {
    max-width: 820px; margin: 0 auto;
    background: var(--bg-0); border: 1px solid var(--line-2); border-radius: var(--r-lg);
    overflow: hidden;
  }
  .cal-preview-head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 22px; border-bottom: 1px solid var(--line);
    background: var(--bg-2);
    font-family: var(--mono); font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase;
  }
  .cal-preview-head .l { color: var(--text-3); }
  .cal-preview-head .l strong { color: var(--text-0); margin-left: 6px; font-weight: 600; letter-spacing: -0.2px; font-family: "Inter", sans-serif; text-transform: none; font-size: 13.5px; }
  .cal-preview-head .r { color: var(--accent); }
  .cal-table { width: 100%; border-collapse: collapse; }
  .cal-table tr { border-bottom: 1px solid var(--line); }
  .cal-table tr:last-child { border-bottom: 0; }
  .cal-table td {
    padding: 14px 22px;
    font-size: 14px;
  }
  .cal-table td:first-child { color: var(--text-1); }
  .cal-table td:last-child {
    text-align: right;
    font-family: var(--mono); color: var(--text-0); font-weight: 700;
    letter-spacing: -0.2px;
  }
  .cal-table tr.emph { background: rgba(0,212,176,0.04); }
  .cal-table tr.emph td:first-child { color: var(--text-0); font-weight: 600; }
  .cal-table tr.emph td:last-child { color: var(--accent); }

  .cal-actions {
    display: flex; gap: 12px; justify-content: center; margin-top: 24px; flex-wrap: wrap;
  }

  .cal-note {
    color: var(--text-3); font-size: 13px; text-align: center; margin-top: 18px;
    max-width: 680px; margin-left: auto; margin-right: auto;
  }

  /* ====== SECURITY ====== */
  .sec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
  .sec-copy .eyebrow { margin-bottom: 16px; }
  .sec-copy .h2 { margin-bottom: 14px; }
  .sec-copy .lede { margin-bottom: 18px; }
  .sec-alert {
    padding: 14px 16px;
    background: var(--accent-soft); border: 1px solid var(--accent-line);
    border-radius: var(--r-md);
    color: var(--text-0); font-size: 14px; line-height: 1.55;
    margin-bottom: 24px;
  }
  .sec-alert strong { color: var(--accent); font-weight: 600; display: block; margin-bottom: 3px; }
  .sec-pillars { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 12px; }
  .sec-pillars li { padding: 16px; background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--r-md); }
  .sec-pillars .ic {
    width: 30px; height: 30px; border-radius: var(--r-sm);
    background: var(--bg-3); border: 1px solid var(--line-2);
    display: grid; place-items: center; color: var(--accent);
    margin-bottom: 12px;
  }
  .sec-pillars .ic svg { width: 15px; height: 15px; }
  .sec-pillars h4 { font-size: 13.5px; font-weight: 600; margin: 0 0 4px; color: var(--text-0); }
  .sec-pillars p { font-size: 12.5px; color: var(--text-2); margin: 0; line-height: 1.5; }

  .api-viz {
    background: var(--bg-1); border: 1px solid var(--line-2);
    border-radius: var(--r-lg); padding: 20px;
  }
  .api-viz-head {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 12px; border-bottom: 1px solid var(--line); margin-bottom: 16px;
  }
  .api-viz-head .title {
    font-family: var(--mono); font-size: 10.5px; color: var(--text-3);
    letter-spacing: 1.4px; text-transform: uppercase; font-weight: 500;
  }
  .api-viz-head .title strong { color: var(--text-0); font-weight: 600; margin-left: 6px; }
  .api-viz-head .status {
    font-family: var(--mono); font-size: 10.5px; color: var(--bull);
    letter-spacing: 1.4px; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .api-viz-head .status .d { width: 7px; height: 7px; border-radius: 50%; background: var(--bull); box-shadow: 0 0 0 3px rgba(16,185,129,0.18); }

  .api-flow { display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: center; margin-bottom: 20px; }
  .api-node {
    background: var(--bg-2); border: 1px solid var(--line-2);
    border-radius: var(--r-md); padding: 16px 14px; text-align: center;
  }
  .api-node .nm { font-family: var(--mono); font-size: 10px; color: var(--text-3); letter-spacing: 1.4px; text-transform: uppercase; margin-bottom: 8px; }
  .api-node .ic {
    width: 40px; height: 40px; border-radius: var(--r-md);
    background: var(--bg-3); border: 1px solid var(--line-2);
    display: grid; place-items: center; margin: 0 auto 8px; color: var(--accent);
  }
  .api-node .ic svg { width: 20px; height: 20px; }
  .api-node .lb { font-size: 12.5px; color: var(--text-0); font-weight: 600; letter-spacing: -0.1px; }
  .api-node .sub { font-family: var(--mono); font-size: 10px; color: var(--text-3); margin-top: 3px; }
  .api-arrow { display: flex; flex-direction: column; align-items: center; gap: 4px; }
  .api-arrow .a { display: flex; align-items: center; gap: 4px; font-family: var(--mono); font-size: 9.5px; letter-spacing: 1.2px; font-weight: 600; }
  .api-arrow .a.up { color: var(--accent); }
  .api-arrow .a.dn { color: var(--text-2); }
  .api-arrow .line { width: 70px; height: 1px; background: repeating-linear-gradient(90deg, var(--line-3) 0 4px, transparent 4px 7px); }
  .api-arrow svg { width: 11px; height: 11px; }
  .api-perms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .api-perm {
    padding: 12px; background: var(--bg-2); border: 1px solid var(--line);
    border-radius: var(--r-md);
    display: flex; flex-direction: column; gap: 6px;
  }
  .api-perm.on { border-color: rgba(16,185,129,0.4); background: linear-gradient(180deg, rgba(16,185,129,0.04), transparent); }
  .api-perm.off { border-color: rgba(239,68,68,0.4); background: linear-gradient(180deg, rgba(239,68,68,0.04), transparent); }
  .api-perm .k {
    font-family: var(--mono); font-size: 10px; letter-spacing: 1.3px;
    text-transform: uppercase; color: var(--text-3); font-weight: 500;
    display: flex; justify-content: space-between; align-items: center;
  }
  .api-perm.on .k strong { color: var(--bull); }
  .api-perm.off .k strong { color: var(--bear); }
  .api-perm .lb { font-size: 12px; font-weight: 600; color: var(--text-0); }
  .api-perm .desc { font-size: 11px; color: var(--text-2); line-height: 1.45; }
  .api-perm .state {
    font-family: var(--mono); font-size: 10px; font-weight: 700;
    letter-spacing: 1.3px; text-transform: uppercase;
    padding: 2px 6px; border-radius: 3px; align-self: flex-start;
  }
  .api-perm.on .state { color: var(--bull); background: var(--bull-soft); }
  .api-perm.off .state { color: var(--bear); background: var(--bear-soft); }

  /* ====== BEHIND MYZIGGY ====== */
  .behind-card {
    max-width: 820px; margin: 0 auto;
    background: var(--bg-1); border: 1px solid var(--line-2);
    border-radius: var(--r-lg); padding: 36px 36px;
  }
  .behind-head { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
  .behind-photo {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--violet) 100%);
    display: grid; place-items: center;
    font-family: var(--mono); color: #050c17; font-weight: 800; font-size: 18px;
    flex-shrink: 0;
  }
  .behind-head .meta { flex: 1; }
  .behind-head .name { font-size: 19px; font-weight: 700; color: var(--text-0); letter-spacing: -0.3px; margin-bottom: 2px; }
  .behind-head .title { font-family: var(--mono); font-size: 11.5px; color: var(--text-2); letter-spacing: 0.3px; }
  .behind-body p { color: var(--text-1); font-size: 14.5px; line-height: 1.65; margin: 0 0 14px; }
  .behind-body p:last-child { margin-bottom: 0; }
  .behind-body strong { color: var(--text-0); font-weight: 600; }
  .behind-reg {
    margin-top: 22px; padding-top: 20px;
    border-top: 1px solid var(--line);
    font-family: var(--mono); font-size: 11.5px; color: var(--text-2);
    letter-spacing: 0.2px; line-height: 1.7;
  }
  .behind-links {
    display: flex; gap: 16px; flex-wrap: wrap;
    margin-top: 18px;
    font-family: var(--mono); font-size: 11.5px;
  }
  .behind-links a {
    color: var(--accent);
    padding: 4px 8px; border: 1px solid var(--accent-line);
    border-radius: 3px;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .behind-links a:hover { background: var(--accent-soft); }

  /* ====== PRICING ====== */
  .pricing-wrap {
    border: 1px solid var(--line-2); border-radius: var(--r-lg);
    background: var(--bg-1);
    overflow: hidden;
    margin-bottom: 20px;
  }
  .pricing-table { width: 100%; border-collapse: collapse; }
  .pricing-table thead th {
    padding: 22px 20px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: bottom;
    background: var(--bg-2);
  }
  .pricing-table thead th:first-child {
    font-family: var(--mono); font-size: 11px; color: var(--text-3);
    letter-spacing: 1.4px; text-transform: uppercase; font-weight: 500;
    width: 44%;
  }
  .pricing-table thead th.plan { text-align: center; width: 18.67%; }
  .pricing-table thead th.plan.rec { background: linear-gradient(180deg, rgba(34,211,238,0.06), rgba(167,139,250,0.06)), var(--bg-2); position: relative; }
  .pricing-table thead th.plan.rec::before {
    content: 'RECOMMENDED';
    position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
    font-family: var(--mono); font-size: 9.5px; font-weight: 700; letter-spacing: 1.4px;
    padding: 4px 9px; border-radius: 3px;
    background: linear-gradient(92deg, #22d3ee, #a78bfa); color: #0b0a1f;
    white-space: nowrap;
  }
  .pricing-table thead th .plan-name {
    display: block; font-size: 16px; font-weight: 700; color: var(--text-0);
    letter-spacing: -0.3px; text-transform: none; margin-bottom: 6px; font-family: "Inter", sans-serif;
  }
  .pricing-table thead th .plan-price {
    display: block; font-family: var(--mono); font-size: 22px; font-weight: 700; color: var(--text-0);
    letter-spacing: -0.5px;
  }
  .pricing-table thead th .plan-price small {
    font-size: 12px; color: var(--text-3); font-weight: 500; margin-left: 3px; letter-spacing: 0.3px;
  }
  .pricing-table thead th .plan-sub {
    display: block; font-family: var(--mono); font-size: 10.5px; color: var(--text-3);
    letter-spacing: 0.3px; margin-top: 6px; font-weight: 500;
  }

  .pricing-table tbody th {
    padding: 14px 20px;
    text-align: left; font-weight: 500; font-size: 14px; color: var(--text-1);
    border-bottom: 1px solid var(--line);
  }
  .pricing-table tbody td {
    padding: 14px 20px; text-align: center; border-bottom: 1px solid var(--line);
    font-family: var(--mono); font-size: 13px; color: var(--text-2);
  }
  .pricing-table tbody td.rec { background: rgba(167,139,250,0.03); }
  .pricing-table tbody tr:last-child th, .pricing-table tbody tr:last-child td { border-bottom: 0; }
  .pricing-table .chk { color: var(--accent); }
  .pricing-table .chk.v { color: var(--violet); }
  .pricing-table .minus { color: var(--text-4); }
  .pricing-table .chk svg, .pricing-table .minus svg { width: 16px; height: 16px; vertical-align: middle; }

  .pricing-table tfoot td {
    padding: 18px 20px;
    border-top: 1px solid var(--line);
    background: var(--bg-2);
    text-align: center;
  }
  .pricing-table tfoot .btn { width: 100%; justify-content: center; }

  .mistake-cost {
    padding: 20px 24px;
    border: 1px solid var(--line-2); border-radius: var(--r-md);
    background: var(--bg-0);
    margin-bottom: 10px;
  }
  .mistake-cost .lbl {
    font-family: var(--mono); font-size: 11px; color: var(--text-3);
    letter-spacing: 1.4px; text-transform: uppercase; font-weight: 500;
    margin-bottom: 10px;
  }
  .mistake-cost p { color: var(--text-1); margin: 0 0 8px; font-size: 14px; line-height: 1.6; }
  .mistake-cost p.close { color: var(--text-0); font-weight: 600; font-size: 14.5px; margin-top: 12px; }
  .mistake-cost .list { font-family: var(--mono); font-size: 13px; color: var(--text-1); line-height: 1.8; }
  .mistake-cost .list strong { color: var(--accent); font-weight: 700; }

  .pricing-trust {
    padding: 14px 22px;
    background: var(--bg-1); border: 1px solid var(--line);
    border-radius: var(--r-md);
    display: flex; gap: 20px; flex-wrap: wrap; justify-content: center;
    color: var(--text-2); font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.3px; text-transform: uppercase;
    margin-top: 14px;
  }
  .pricing-trust span { display: inline-flex; align-items: center; gap: 7px; }
  .pricing-trust svg { width: 12px; height: 12px; color: var(--accent); }

  /* ====== FREE DAILY BRIEF ====== */
  .brief {
    max-width: 680px; margin: 0 auto; text-align: center;
    padding: 36px 32px 32px;
    border: 1px solid var(--line-2); border-radius: var(--r-lg);
    background: var(--bg-1);
  }
  .brief .h2 { margin-bottom: 10px; }
  .brief p { color: var(--text-1); font-size: 15px; line-height: 1.55; margin: 0 auto 18px; max-width: 580px; }
  .brief p strong { color: var(--text-0); }
  .brief-form {
    display: flex; gap: 8px; max-width: 480px; margin: 0 auto 14px;
    flex-wrap: wrap;
  }
  .brief-form input {
    flex: 1; min-width: 240px; height: 44px;
    background: var(--bg-2); border: 1px solid var(--line-2);
    border-radius: var(--r-md); padding: 0 14px;
    font-size: 14px; color: var(--text-0); outline: none;
    font-family: inherit;
  }
  .brief-form input:focus { border-color: var(--accent); }
  .brief-form input::placeholder { color: var(--text-4); }
  .brief-form .btn { height: 44px; }
  .brief-foot {
    font-family: var(--mono); font-size: 10.5px; color: var(--text-3);
    letter-spacing: 0.3px;
  }

  /* ====== FAQ ====== */
  .faq-list { max-width: 820px; margin: 0 auto; }
  .faq-item {
    border-top: 1px solid var(--line);
    padding: 16px 0;
  }
  .faq-item:last-child { border-bottom: 1px solid var(--line); }
  .faq-q {
    display: flex; justify-content: space-between; align-items: flex-start; gap: 14px;
    cursor: pointer;
    font-size: 15.5px; color: var(--text-0); font-weight: 600;
    letter-spacing: -0.2px;
    list-style: none;
  }
  .faq-q::-webkit-details-marker { display: none; }
  .faq-q .sign {
    flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
    display: grid; place-items: center;
    color: var(--accent);
    background: var(--accent-soft); border: 1px solid var(--accent-line);
    transition: transform .2s ease;
  }
  .faq-q .sign svg { width: 11px; height: 11px; }
  details[open] .faq-q .sign { transform: rotate(45deg); }
  .faq-a { padding-top: 12px; color: var(--text-1); font-size: 14.5px; line-height: 1.65; max-width: 720px; }
  .faq-a strong { color: var(--text-0); font-weight: 600; }

  /* ====== FINAL CTA ====== */
  .final-cta {
    position: relative; overflow: hidden;
    border-radius: var(--r-lg);
    border: 1px solid var(--line-2);
    padding: 44px 44px 40px;
    background:
      radial-gradient(ellipse at 15% 40%, rgba(0,212,176,0.09), transparent 45%),
      radial-gradient(ellipse at 85% 60%, rgba(167,139,250,0.09), transparent 45%),
      var(--bg-1);
    text-align: center;
  }
  .final-cta .eyebrow { margin-bottom: 12px; }
  .final-cta .h2 { margin-bottom: 10px; }
  .final-cta .sub { color: var(--text-1); font-size: 15px; max-width: 580px; margin: 0 auto 20px; line-height: 1.5; }
  .final-cta .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  .final-cta .trust {
    display: inline-flex; flex-wrap: wrap; gap: 20px;
    margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line);
    color: var(--text-3); font-family: var(--mono); font-size: 10.5px;
    letter-spacing: 1.2px; text-transform: uppercase; justify-content: center;
  }
  .final-cta .trust span { display: inline-flex; align-items: center; gap: 7px; }
  .final-cta .trust svg { width: 12px; height: 12px; color: var(--accent); }

  /* ====== FOOTER ====== */
  .footer {
    border-top: 1px solid var(--line);
    padding: 40px 0 22px;
    background: var(--bg-1);
    color: var(--text-2); font-size: 13px;
  }
  .footer-top {
    display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px;
    padding-bottom: 26px; border-bottom: 1px solid var(--line);
    align-items: start;
  }
  .footer h5 {
    font-family: var(--mono); font-size: 10.5px; font-weight: 500;
    letter-spacing: 1.6px; text-transform: uppercase; color: var(--text-3); margin: 0 0 12px;
  }
  .footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
  .footer ul a { color: var(--text-1); }
  .footer ul a:hover { color: var(--accent); }
  .footer-brand p { margin: 12px 0 12px; max-width: 340px; color: var(--text-2); line-height: 1.5; font-size: 13px; }
  .footer-bottom {
    padding-top: 18px;
    color: var(--text-3); font-size: 11.5px; line-height: 1.6;
    font-family: var(--mono); letter-spacing: 0.1px;
  }
  .footer-bottom p { margin: 0 0 8px; }
  .footer-copy { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 10px; }

  /* ====== UPGRADES ====== */
  .hero-audience {
    font-family: var(--mono);
    font-size: 11.5px; font-weight: 500;
    color: var(--text-3); letter-spacing: 1.4px; text-transform: uppercase;
    display: inline-block;
    padding: 8px 16px 0;
    margin: 0 auto 18px;
    border-top: 1px solid var(--line-2);
  }
  .nab-lede {
    max-width: 780px; margin: 0 auto 24px;
    text-align: center;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 600; color: var(--text-0);
    letter-spacing: -0.3px; line-height: 1.4;
  }
  .screenshot-section { padding: 18px 0; background: var(--bg-0); }
  .screenshot-section + .screenshot-section { padding-top: 0; }
  .section + .screenshot-section { padding-top: 8px; }
  .screenshot-section + .section { padding-top: 40px; }
  .screenshot-section:last-of-type { padding-bottom: 20px; }
  .screenshot-frame {
    max-width: 1120px; margin: 0 auto;
    border: 1px solid var(--line-2); border-radius: var(--r-lg);
    overflow: hidden; background: var(--bg-1);
    box-shadow: 0 30px 80px -40px rgba(0,0,0,0.8);
  }
  .screenshot-canvas {
    aspect-ratio: 16/9;
    display: grid; place-items: center;
    background:
      repeating-linear-gradient(0deg, transparent 0, transparent 39px, rgba(40,52,83,0.22) 39px, rgba(40,52,83,0.22) 40px),
      repeating-linear-gradient(90deg, transparent 0, transparent 39px, rgba(40,52,83,0.16) 39px, rgba(40,52,83,0.16) 40px),
      var(--bg-0);
    overflow: hidden;
  }
  .screenshot-canvas img {
    width: 100%; height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
  }
  .screenshot-caption {
    font-family: var(--mono); font-size: 11.5px; color: var(--text-1);
    letter-spacing: 0.3px; text-align: center; margin: 0; line-height: 1.5;
  }
  .screenshot-disclosure {
    font-family: var(--mono); font-size: 10px; color: var(--text-3);
    letter-spacing: 0.6px; text-align: center; margin: 0;
    text-transform: uppercase; font-weight: 500;
  }
  .screenshot-chrome {
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    padding: 10px 16px;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 1.4px; text-transform: uppercase; font-weight: 600;
  }
  .screenshot-badge {
    color: var(--accent);
    background: var(--accent-soft); border: 1px solid var(--accent-line);
    padding: 3px 8px; border-radius: 3px;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .screenshot-badge .dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
    box-shadow: 0 0 0 3px rgba(0,212,176,0.18);
  }
  .screenshot-view-name { color: var(--text-2); letter-spacing: 1.2px; }
  .screenshot-foot {
    padding: 14px 18px;
    background: var(--bg-2); border-top: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 6px; align-items: center;
  }
  .screenshot-frame.embedded { margin: 24px 0 26px; }
  .screenshot-frame.embedded .screenshot-canvas { aspect-ratio: 16/9; }

  .brief-social {
    color: var(--text-2); font-size: 13.5px; font-style: italic;
    margin: -8px auto 22px; max-width: 540px; line-height: 1.5;
  }

  .pricing-close {
    max-width: 780px; margin: 20px auto 0;
    text-align: center;
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 500; color: var(--text-0);
    letter-spacing: -0.3px; line-height: 1.45;
    padding: 20px 28px;
    background: var(--bg-1); border: 1px solid var(--line-2);
    border-radius: var(--r-md);
    margin-bottom: 12px;
  }
  .pricing-close strong {
    background: linear-gradient(92deg, var(--accent) 0%, var(--violet) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    font-weight: 700;
  }
  .pricing-annual {
    display: inline-flex; align-items: center; gap: 10px;
    margin: 0 auto 20px;
    padding: 8px 14px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-line);
    border-radius: var(--r-sm);
    font-family: var(--mono);
    font-size: 12px; color: var(--accent);
    letter-spacing: 0.3px; font-weight: 500;
  }
  .pricing-annual svg { width: 13px; height: 13px; }
  .pricing-annual-wrap { text-align: center; }
  .pricing-setup {
    margin-top: 12px; padding: 14px 22px;
    background: var(--bg-1); border: 1px solid var(--line);
    border-radius: var(--r-md);
    color: var(--text-1); font-size: 13.5px;
    text-align: center; line-height: 1.5;
  }
  .pricing-setup strong { color: var(--text-0); font-weight: 600; }

  /* ====== RESPONSIVE ====== */
  .mobile-nav {
    display: none; padding: 14px 32px 20px;
    border-top: 1px solid var(--line);
    background: rgba(4,7,14,0.96); backdrop-filter: blur(14px);
  }
  .mobile-nav.open { display: block; }
  .mobile-nav a { display: block; padding: 10px 0; color: var(--text-0); font-weight: 500; border-bottom: 1px solid var(--line); }
  .mobile-nav a:last-of-type { border-bottom: 0; }
  .mobile-nav .btn { width: 100%; justify-content: center; margin-top: 14px; }

  @media (max-width: 1080px) {
    .sec-grid { grid-template-columns: 1fr; gap: 36px; }
    .svc-grid { grid-template-columns: 1fr; gap: 20px; }
    .svc-card.integrated h3 { font-size: 26px; }
    .proof-grid { grid-template-columns: 1fr 1fr; }
    .proof-cell:nth-child(2) { border-right: 0; }
    .proof-cell:nth-child(1), .proof-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
    .nab-head, .nab-row { grid-template-columns: 1fr; }
    .nab-row > div, .nab-head > div { border-right: 0; border-bottom: 1px solid var(--line); }
    .nab-row > div:last-child, .nab-head > div:last-child { border-bottom: 0; }
  }
  @media (max-width: 860px) {
    .container { padding: 0 18px; }
    .nav { display: none; }
    .mobile-toggle { display: grid; }
    .header-actions .btn-sm.hide-sm { display: none; }
    /* ranked-strip responsive rules live with the component above */
    .section { padding: 52px 0; }
    .section + .section { padding-top: 44px; }
    .section-head { margin-bottom: 28px; }
    .hero { padding: 40px 0 36px; }
    .final-cta { padding: 36px 20px; }
    .screenshot-section { padding: 12px 0; }
    .section + .screenshot-section { padding-top: 4px; }
    .screenshot-section + .section { padding-top: 32px; }
    .footer { padding: 28px 0 18px; }
    .footer-top { padding-bottom: 18px; gap: 28px; }
    .hiw-grid { grid-template-columns: 1fr; gap: 14px; }
    .hiw-conn { display: none; }
    .sec-pillars { grid-template-columns: 1fr; }
    .api-flow { grid-template-columns: 1fr; gap: 10px; }
    .api-arrow { flex-direction: row; }
    .api-arrow .line { width: 100%; max-width: 140px; }
    .api-perms { grid-template-columns: 1fr; }
    .proof-grid { grid-template-columns: 1fr; }
    .proof-cell { border-right: 0; border-bottom: 1px solid var(--line); }
    .proof-cell:last-child { border-bottom: 0; }
    .pricing-table thead th:first-child { display: none; }
    .pricing-table thead th.plan { width: 33.33%; }
    .pricing-table tbody th { display: block; padding: 16px 16px 6px; background: var(--bg-2); font-weight: 600; color: var(--text-0); font-size: 12.5px; text-transform: uppercase; letter-spacing: 1.2px; }
    .pricing-table tbody td { border-bottom: 1px solid var(--line); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
    .trade-row, .trade-pnl { grid-template-columns: 90px 1fr; }
    .trade-row .d { grid-column: 2; padding-left: 0; padding-top: 2px; }
    .trade-pnl .val { grid-column: 2; text-align: left; }
  }
  .wrap-logo{
    max-width: 80px;
  }
   .wrap-logo img{
     width: 100%;
  }
  @media (max-width: 520px) {
    .footer-top { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
  }

  .reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
  .reveal.in { opacity: 1; transform: none; }


    /* =========================================================
     HERO
     ========================================================= */
  .hero{padding:84px 0 56px;position:relative;overflow:hidden}
  .hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:56px;align-items:center}
  .eyebrow{
    display:inline-flex;align-items:center;gap:8px;
    padding:6px 12px;border-radius:999px;
    background:rgba(77,219,193,.08);
    border:1px solid rgba(77,219,193,.22);
    color:var(--brand);font-size:12.5px;font-weight:600;letter-spacing:.3px;
  }
  .eyebrow .dot{width:6px;height:6px;border-radius:50%;background:var(--brand);box-shadow:0 0 12px var(--brand)}
  h1.h-display{
    font-size:clamp(40px, 6vw, 68px);
    line-height:1.04;letter-spacing:-.02em;font-weight:700;
    margin:18px 0 18px;
  }
  h1.h-display .accent{
    background:linear-gradient(180deg,#fff,#cfd5e6);
    -webkit-background-clip:text;background-clip:text;color:transparent;
  }
  .lead{
    color:var(--text-dim);font-size:18px;max-width:560px;margin:0 0 14px;
  }
  .sub-lead{
    color:var(--text-mute);font-size:15.5px;max-width:560px;margin:0 0 22px;
    border-left:2px solid var(--brand);padding-left:14px;
  }
  .urgency{
    display:inline-flex;align-items:center;gap:8px;
    color:var(--brand);font-family:var(--mono);font-size:12.5px;
    letter-spacing:.08em;text-transform:uppercase;font-weight:600;
    margin-bottom:22px;
  }
  .urgency .live{
    width:8px;height:8px;border-radius:50%;background:var(--brand);
    box-shadow:0 0 0 0 rgba(77,219,193,.5);
    animation:pulse 2s infinite;
  }
  @keyframes pulse{
    0%{box-shadow:0 0 0 0 rgba(77,219,193,.5)}
    70%{box-shadow:0 0 0 10px rgba(77,219,193,0)}
    100%{box-shadow:0 0 0 0 rgba(77,219,193,0)}
  }
  .hero-ctas{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:22px;margin-top: 15px;}
  .hero-meta{display:flex;flex-wrap:wrap;gap:18px;color:var(--text-mute);font-size:13.5px}
  .hero-meta span{display:inline-flex;align-items:center;gap:6px}
  .hero-meta span::before{content:"";width:6px;height:6px;border-radius:50%;background:var(--line-2)}

  /* Video placeholder card */
  .video-card{
    position:relative;aspect-ratio:16/10;border-radius:var(--radius-lg);
    background:
      linear-gradient(180deg, rgba(77,219,193,.05), rgba(77,214,255,.04)),
      var(--surface);
    border:1px solid var(--line);
    box-shadow:var(--shadow-2);
    overflow:hidden;
    display:flex;align-items:center;justify-content:center;
  }
  .video-card::before{
    content:"";position:absolute;inset:0;
    background-image:
      linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size:32px 32px;
    mask-image:radial-gradient(circle at 50% 50%, #000 30%, transparent 75%);
  }
  .video-tag{
    position:absolute;top:14px;left:14px;
    font-family:var(--mono);font-size:11px;letter-spacing:.12em;
    color:var(--brand);background:rgba(11,13,18,.6);
    border:1px solid rgba(77,219,193,.28);
    padding:6px 10px;border-radius:8px;text-transform:uppercase;
  }
  .video-meta{
    position:absolute;bottom:14px;left:14px;right:14px;display:flex;justify-content:space-between;
    color:var(--text-mute);font-size:12px;font-family:var(--mono);
  }
  .play-btn{
    position:relative;z-index:2;
    width:74px;height:74px;border-radius:50%;
    background:rgba(11,13,18,.7);
    border:1px solid rgba(77,219,193,.4);
    display:flex;align-items:center;justify-content:center;
    box-shadow:0 0 0 6px rgba(77,219,193,.06), 0 0 40px rgba(77,219,193,.18);
    color:var(--brand);
  }
  .play-btn svg{margin-left:4px}

  /* =========================================================
     SECTIONS
     ========================================================= */
  section{padding:84px 0;position:relative}
  .section-head{max-width:760px;margin:0 0 44px}
  .section-eyebrow{
    color:var(--brand);font-family:var(--mono);font-size:12px;
    letter-spacing:.18em;text-transform:uppercase;margin-bottom:14px;
  }
  h2.h-section{
    font-size:clamp(28px, 3.4vw, 42px);line-height:1.1;letter-spacing:-.015em;
    margin:0 0 14px;font-weight:700;
  }
  .section-lead{color:var(--text-dim);font-size:17px;max-width:680px}

  /* =========================================================
     PROBLEM SECTION
     ========================================================= */
  .problem{
    background:linear-gradient(180deg, transparent, rgba(255,111,122,.04) 60%, transparent);
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
  }
  .problem-grid{
    display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-top:30px;
  }
  .problem-card{
    background:var(--surface);
    border:1px solid var(--line);
    padding:18px;border-radius:var(--radius);
    display:flex;flex-direction:column;gap:10px;min-height:130px;
    transition:border-color .2s ease, transform .2s ease;
  }
  .problem-card:hover{border-color:var(--line-2);transform:translateY(-2px)}
  .problem-card .x{
    width:28px;height:28px;border-radius:8px;
    display:flex;align-items:center;justify-content:center;
    background:rgba(255,111,122,.1);color:var(--bad);
    border:1px solid rgba(255,111,122,.25);font-weight:700;
  }
  .problem-card h4{margin:0;font-size:15px;color:var(--text)}
  .problem-card p{margin:0;font-size:13.5px;color:var(--text-mute)}

  /* =========================================================
     EXAMPLE DAILY OUTPUT
     ========================================================= */
  .daily-card{
    background:linear-gradient(180deg,#0e1320,#0a0d15);
    border:1px solid var(--line-2);
    border-radius:var(--radius-lg);
    overflow:hidden;
    box-shadow:var(--shadow-2);
  }
  .daily-head{
    display:flex;align-items:center;justify-content:space-between;
    padding:14px 20px;border-bottom:1px solid var(--line);
    background:linear-gradient(180deg,rgba(77,219,193,.04),transparent);
    gap:12px;flex-wrap:wrap;
  }
  .daily-head .title{display:flex;gap:10px;align-items:center;font-weight:600}
  .daily-head .title .dot{
    width:8px;height:8px;border-radius:50%;background:var(--brand);
    box-shadow:0 0 0 0 rgba(77,219,193,.5);animation:pulse 2s infinite;
  }
  .daily-head .meta{
    display:flex;align-items:center;gap:14px;flex-wrap:wrap;
  }
  .daily-head .meta .pill{
    font-family:var(--mono);font-size:11px;letter-spacing:.12em;text-transform:uppercase;
    color:var(--text-mute);padding:4px 9px;border-radius:6px;
    border:1px solid var(--line);background:rgba(255,255,255,.02);
  }
  .daily-head .meta .pill.live{
    color:var(--brand);border-color:rgba(77,219,193,.3);background:rgba(77,219,193,.06);
  }
  .daily-head .meta .pill.sample{
    color:var(--text-mute);border-color:var(--line-2);background:rgba(255,255,255,.02);
  }
  .daily-head .stamp{font-family:var(--mono);font-size:12px;color:var(--text-mute);letter-spacing:.06em}
  .setup-name{
    display:block;font-family:var(--mono);font-size:11px;color:var(--text-mute);
    letter-spacing:.08em;text-transform:uppercase;margin-top:3px;font-weight:500;
  }
  .rr{
    font-family:var(--mono);font-weight:700;font-size:13px;color:var(--brand);
  }
  .rr.muted{color:var(--text-mute);font-weight:600}
  .daily-table{width:100%;border-collapse:collapse}
  .daily-table th, .daily-table td{
    padding:14px 18px;text-align:left;font-size:14.5px;
    border-bottom:1px solid var(--line);
  }
  .daily-table th{
    color:var(--text-mute);font-weight:600;font-size:11.5px;
    text-transform:uppercase;letter-spacing:.12em;
    background:rgba(255,255,255,.015);
  }
  .daily-table tr:last-child td{border-bottom:0}
  .daily-table tbody tr{transition:background .2s ease;cursor:pointer}
  .daily-table tbody tr:hover{background:rgba(77,219,193,.03)}
  .daily-table .rank-cell{font-family:var(--mono);font-weight:700}
  .daily-table .rank-cell.r1{color:var(--rank-1);text-shadow:0 0 6px rgba(77,219,193,.4)}
  .daily-table .rank-cell.r2{color:var(--rank-2)}
  .daily-table .rank-cell.r3{color:var(--rank-3);opacity:.75}
  .daily-table tr:nth-child(3){opacity:.85}
  .daily-table .asset{
    display:flex;align-items:center;gap:10px;
    font-weight:700;letter-spacing:.05em;flex-wrap:wrap;
  }

  /* COIN ICON COMPONENT (reusable for table + allocation + chips)
     COIN ICONS REQUIRED: place SVG files in images/coins/ */
  .coin{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-weight:700;
    letter-spacing:.05em;
  }
  .coin img{
    width:24px;
    height:24px;
    border-radius:50%;
    background:#0b0d12;
    border:1px solid rgba(255,255,255,0.10);
    padding:2px;
    flex:0 0 24px;
    box-shadow:
      0 2px 6px rgba(0,0,0,.6),
      0 0 10px rgba(0,0,0,.4);
    transition:transform .15s ease, box-shadow .2s ease;
  }
  .coin-symbol{
    font-family:var(--mono);
    font-weight:700;
    letter-spacing:.08em;
    font-size:13px;
  }
  .coin img.broken{display:none}
  .coin img.broken + .coin-symbol{margin-left:0}
  .coin:hover img{transform:scale(1.06)}
  .asset-chip:hover img{transform:scale(1.08)}

  /* Rank-based glow for top setups (works via sibling combinator
     since .rank-cell and .asset live in adjacent <td>s) */
  .rank-cell.r1 .coin img,
  .rank-cell.r1 + .asset .coin img{
    box-shadow:
      0 0 0 2px rgba(77,219,193,.15),
      0 0 14px rgba(77,219,193,.6),
      0 0 28px rgba(77,219,193,.25);
  }
  .rank-cell.r2 .coin img,
  .rank-cell.r2 + .asset .coin img{
    box-shadow:0 0 10px rgba(77,214,255,.45);
  }
  .rank-cell.r3 .coin img,
  .rank-cell.r3 + .asset .coin img{
    box-shadow:0 0 6px rgba(180,139,255,.35);
  }
  .dir-pill{
    display:inline-block;padding:3px 9px;border-radius:6px;font-family:var(--mono);
    font-size:11.5px;font-weight:700;letter-spacing:.05em;
  }
  .dir-pill.long{background:rgba(77,219,193,.1);color:var(--brand);border:1px solid rgba(77,219,193,.28)}
  .dir-pill.short{background:rgba(180,139,255,.1);color:var(--rank-3);border:1px solid rgba(180,139,255,.28)}
  .zone{font-family:var(--mono);color:var(--text-dim);font-size:13px}
  .status-pill{
    display:inline-flex;align-items:center;gap:6px;
    padding:4px 10px;border-radius:999px;font-size:12px;font-weight:600;
    border:1px solid var(--line-2);
  }
  .status-pill .sd{width:6px;height:6px;border-radius:50%}
  .status-pill.valid{
    color:var(--brand);background:rgba(77,219,193,.12);border-color:rgba(77,219,193,.3);
    box-shadow:0 0 12px rgba(77,219,193,.25);
  }
  .status-pill.valid .sd{background:var(--brand);box-shadow:0 0 10px var(--brand)}
  .status-pill.near{color:var(--brand-2);background:rgba(77,214,255,.08);border-color:rgba(77,214,255,.3)}
  .status-pill.near .sd{background:var(--brand-2)}
  .status-pill.monitor{color:var(--text-mute);background:rgba(255,255,255,.03);border-color:var(--line-2)}
  .status-pill.monitor .sd{background:var(--text-mute)}
  .check-row{display:inline-flex;gap:5px}
  .check-row span{
    width:18px;height:18px;border-radius:5px;display:inline-flex;
    align-items:center;justify-content:center;font-family:var(--mono);font-size:11px;
    border:1px solid var(--line-2);color:var(--text-mute);
  }
  .check-row span.ok{color:var(--brand);background:rgba(77,219,193,.1);border-color:rgba(77,219,193,.3)}
  .check-row span.no{color:var(--bad);background:rgba(255,111,122,.06);border-color:rgba(255,111,122,.25)}
  .daily-foot{
    padding:12px 20px;font-family:var(--mono);font-size:11.5px;color:var(--text-mute);
    background:rgba(255,255,255,.015);
    border-top:1px solid var(--line);
  }

  /* =========================================================
     LIVE SYSTEM SNAPSHOT
     ========================================================= */
  .live-dot{
    display:inline-block;width:8px;height:8px;border-radius:50%;
    background:var(--brand);margin-right:8px;vertical-align:middle;
    box-shadow:0 0 0 0 rgba(77,219,193,.5);animation:pulse 2s infinite;
  }
  .snapshot-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
  .snap-card{
    background:linear-gradient(180deg,#0e1320,#0a0d15);
    border:1px solid var(--line-2);border-radius:var(--radius-lg);
    padding:22px 24px;display:flex;flex-direction:column;gap:14px;
    box-shadow:0 20px 60px rgba(0,0,0,.45);
  }
  .snap-head{
    display:flex;justify-content:space-between;align-items:center;
    flex-wrap:wrap;gap:8px;
  }
  .snap-eyebrow{
    display:inline-flex;align-items:center;gap:8px;
    color:var(--brand);font-family:var(--mono);font-size:11.5px;
    letter-spacing:.18em;text-transform:uppercase;font-weight:700;
  }
  .snap-eyebrow .dot{
    width:7px;height:7px;border-radius:50%;background:var(--brand);
    box-shadow:0 0 0 0 rgba(77,219,193,.5);animation:pulse 2s infinite;
  }
  .snap-stamp{
    font-family:var(--mono);font-size:12px;color:var(--text-mute);letter-spacing:.06em;
  }
  .snap-top{
    display:flex;justify-content:space-between;align-items:center;
    gap:14px;flex-wrap:wrap;
    padding-bottom:12px;border-bottom:1px solid var(--line);
  }
  .snap-asset{display:flex;align-items:center;gap:12px;flex-wrap:wrap}
  .snap-asset .coin img{
    width:30px;height:30px;flex:0 0 30px;
    box-shadow:0 0 0 2px rgba(77,219,193,.15),0 0 14px rgba(77,219,193,.5),0 0 28px rgba(77,219,193,.22);
  }
  .snap-symbol{font-size:16px !important;letter-spacing:.1em !important}
  .snap-rows{display:flex;flex-direction:column;gap:8px}
  .snap-row{
    display:flex;justify-content:space-between;align-items:center;gap:10px;
    font-family:var(--mono);font-size:13px;
  }
  .snap-row .lbl{color:var(--text-mute);text-transform:uppercase;letter-spacing:.12em;font-size:10.5px}
  .snap-row .val{color:var(--text);font-weight:700;letter-spacing:.04em}
  .snap-row .val-ok{color:var(--brand)}
  .snap-foot{margin-top:auto;padding-top:6px;display:flex;align-items:center;gap:10px}
  .pre-tag{
    display:inline-flex;align-items:center;gap:6px;
    font-family:var(--mono);font-size:10.5px;font-weight:700;
    letter-spacing:.12em;text-transform:uppercase;
    color:var(--brand);padding:3px 8px;border-radius:6px;
    background:rgba(77,219,193,.06);border:1px solid rgba(77,219,193,.25);
  }
  .pre-tag .d{width:6px;height:6px;border-radius:50%;background:var(--brand);box-shadow:0 0 8px var(--brand)}
  .snap-foot-note{font-family:var(--mono);font-size:11.5px;color:var(--text-mute);letter-spacing:.08em}

  /* Today's status list inside snap card */
  .snap-status-list{display:flex;flex-direction:column;gap:0}
  .snap-status-row{
    display:flex;align-items:center;justify-content:space-between;gap:12px;
    padding:10px 0;border-bottom:1px dashed var(--line);
  }
  .snap-status-row:last-child{border-bottom:0}
  .snap-status{
    display:inline-flex;align-items:center;gap:6px;
    font-family:var(--sans);font-size:13px;font-weight:600;
    padding:4px 10px;border-radius:999px;
    border:1px solid var(--line-2);
  }
  .snap-status .od{width:6px;height:6px;border-radius:50%}
  .snap-status.none{
    color:var(--warn);background:rgba(255,184,107,.06);border-color:rgba(255,184,107,.28);
  }
  .snap-status.none .od{background:var(--warn);box-shadow:0 0 6px rgba(255,184,107,.5)}

  /* Trust line + CTAs */
  .snap-trust{
    display:flex;align-items:center;justify-content:center;gap:10px;
    margin:24px 0 18px;
    color:var(--text-dim);font-family:var(--mono);font-size:13px;letter-spacing:.04em;
  }
  .snap-trust .td{
    width:8px;height:8px;border-radius:50%;background:var(--brand);
    box-shadow:0 0 8px var(--brand);
  }
  .snap-ctas{display:flex;justify-content:center;gap:12px;flex-wrap:wrap}

  @media (max-width: 780px){
    .snapshot-grid{grid-template-columns:1fr}
  }

  /* =========================================================
     PRODUCT BLOCKS
     ========================================================= */
  .product{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}
  .product.reverse{grid-template-areas:"media copy";}
  .product.reverse .product-media{grid-area:media}
  .product.reverse .product-copy{grid-area:copy}
  .product-copy h2{margin-top:10px}
  .product-pill{
    display:inline-flex;align-items:center;gap:8px;
    padding:5px 11px;border-radius:999px;
    background:var(--surface);border:1px solid var(--line);
    color:var(--text-dim);font-size:12.5px;font-weight:600;letter-spacing:.2px;
  }
  .product-pill .num{color:var(--brand);font-family:var(--mono)}

  .ranked-list{
    list-style:none;padding:0;margin:24px 0 28px;
    display:flex;flex-direction:column;gap:10px;
  }
  .ranked-list li{
    display:flex;align-items:center;gap:14px;
    padding:14px 16px;border-radius:12px;
    background:var(--surface);border:1px solid var(--line);
  }
  .rank-badge{
    width:34px;height:34px;border-radius:9px;flex:0 0 34px;
    display:flex;align-items:center;justify-content:center;
    font-family:var(--mono);font-weight:700;font-size:14px;
    background:rgba(77,219,193,.08);color:var(--rank-1);
    border:1px solid rgba(77,219,193,.25);
  }
  .ranked-list li.r2 .rank-badge{background:rgba(77,214,255,.08);color:var(--rank-2);border-color:rgba(77,214,255,.25)}
  .ranked-list li.r3 .rank-badge{background:rgba(180,139,255,.08);color:var(--rank-3);border-color:rgba(180,139,255,.25)}
  .ranked-list li.none .rank-badge{background:rgba(255,255,255,.04);color:var(--text-mute);border-color:var(--line)}
  .ranked-list .r-title{font-weight:600}
  .ranked-list .r-sub{color:var(--text-mute);font-size:13px}

  .feature-line{
    display:flex;gap:10px;align-items:flex-start;
    color:var(--text-dim);margin:10px 0;font-size:15px;
  }
  .feature-line svg{flex:0 0 18px;margin-top:3px;color:var(--brand)}

  /* Product clarity split (Decision Engine vs Bot one-liners) */
  .product-split{
    display:grid;grid-template-columns:1fr 1fr;gap:12px;
    margin:18px 0 26px;
  }
  .product-split p{
    margin:0;padding:14px 16px;border-radius:12px;
    background:var(--surface);border:1px solid var(--line);
    color:var(--text-dim);font-size:14.5px;line-height:1.5;
  }
  .product-split p:first-child{border-color:rgba(77,214,255,.25)}
  .product-split p:last-child{border-color:rgba(77,219,193,.3)}
  .product-split p strong{color:var(--text);display:block;font-weight:700}

  /* Competitive section */
  .compete-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:30px}
  .compete-card{
    background:var(--surface);border:1px solid var(--line);
    border-radius:var(--radius-lg);padding:26px;
    display:flex;flex-direction:column;gap:14px;
  }
  .compete-card.ko{border-color:rgba(255,111,122,.25);background:linear-gradient(180deg,rgba(255,111,122,.04),transparent),var(--surface)}
  .compete-card.ok{border-color:rgba(77,219,193,.3);background:linear-gradient(180deg,rgba(77,219,193,.04),transparent),var(--surface)}
  .compete-tag{
    align-self:flex-start;font-family:var(--mono);font-size:11.5px;letter-spacing:.12em;
    text-transform:uppercase;font-weight:700;padding:6px 12px;border-radius:999px;
  }
  .compete-tag.ko{color:var(--bad);background:rgba(255,111,122,.08);border:1px solid rgba(255,111,122,.28)}
  .compete-tag.ok{color:var(--brand);background:rgba(77,219,193,.08);border:1px solid rgba(77,219,193,.3)}
  .compete-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:10px}
  .compete-list li{display:flex;gap:10px;align-items:flex-start;color:var(--text-dim);font-size:15px}
  .compete-list li .m{
    flex:0 0 20px;height:20px;border-radius:6px;font-family:var(--mono);
    display:inline-flex;align-items:center;justify-content:center;font-size:12px;font-weight:700;margin-top:1px;
  }
  .compete-card.ko .m{color:var(--bad);background:rgba(255,111,122,.08);border:1px solid rgba(255,111,122,.28)}
  .compete-card.ok .m{color:var(--brand);background:rgba(77,219,193,.08);border:1px solid rgba(77,219,193,.3)}

  /* Allocation visual */
  .alloc{
    background:var(--surface);border:1px solid var(--line);
    border-radius:var(--radius);padding:18px;margin-top:18px;
  }
  .alloc-row{
    display:grid;grid-template-columns:80px 1fr 70px;gap:14px;align-items:center;
    padding:10px 0;border-bottom:1px dashed var(--line);
  }
  .alloc-row:last-child{border-bottom:0}
  .alloc-asset{font-family:var(--mono);font-weight:700;letter-spacing:.05em;display:inline-flex;align-items:center;gap:8px}
  .alloc-bar{height:10px;border-radius:6px;background:var(--bg-2);overflow:hidden;border:1px solid var(--line)}
  .alloc-fill{height:100%;width:0;background:linear-gradient(90deg,var(--brand),var(--brand-2));border-radius:6px;transition:width 1s ease}
  .alloc-row:nth-child(1) .alloc-fill{background:linear-gradient(90deg, var(--rank-1), var(--brand))}
  .alloc-row:nth-child(2) .alloc-fill{background:linear-gradient(90deg, var(--rank-2), var(--brand-2))}
  .alloc-row:nth-child(3) .alloc-fill{background:linear-gradient(90deg, var(--rank-3), #8f7cff)}
  .alloc-pct{text-align:right;font-family:var(--mono);color:var(--text-dim);font-size:13.5px}
  .alloc-row.zero .alloc-fill{background:rgba(255,255,255,.08)}
  .alloc-row.zero .alloc-pct{color:var(--text-mute)}

  /* =========================================================
     WHY THESE ASSETS
     ========================================================= */
  .assets-strip{
    display:flex;justify-content:center;gap:14px;flex-wrap:wrap;margin:0 0 36px;
  }
  .asset-chip{
    display:inline-flex;align-items:center;gap:8px;padding:10px 18px;
    border-radius:999px;background:var(--surface);border:1px solid var(--line-2);
    font-family:var(--mono);font-weight:700;letter-spacing:.05em;
    transition:border-color .2s ease, background .2s ease, transform .15s ease;
  }
  .asset-chip:hover{
    border-color:rgba(77,219,193,.4);
    background:linear-gradient(180deg,rgba(77,219,193,.04),transparent),var(--surface);
    transform:translateY(-1px);
  }
  .asset-chip .coin img{width:28px;height:28px;flex:0 0 28px}
  .alloc-asset .coin img{width:22px;height:22px;flex:0 0 22px}
  .why-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:14px}
  .why-card{
    background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);
    padding:18px;display:flex;flex-direction:column;gap:8px;min-height:130px;
  }
  .why-card .icon{
    width:34px;height:34px;border-radius:9px;
    display:flex;align-items:center;justify-content:center;
    background:rgba(77,219,193,.07);color:var(--brand);
    border:1px solid rgba(77,219,193,.22);
  }
  .why-card h4{margin:0;font-size:15px}
  .why-card p{margin:0;font-size:13.5px;color:var(--text-mute)}

  /* =========================================================
     RULE ENGINE
     ========================================================= */
  .rule-engine{
    background:linear-gradient(180deg, rgba(77,219,193,.04), transparent 60%);
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
  }
  .rule-card{
    background:linear-gradient(180deg, #0e1320, #0a0d15);
    border:1px solid var(--line-2);
    border-radius:var(--radius-lg);
    padding:36px 40px;
    box-shadow:var(--shadow-2), 0 0 0 1px rgba(77,219,193,.05);
    font-family:var(--mono);font-size:15.5px;line-height:1.85;
    position:relative;overflow:hidden;
  }
  .rule-card::before{
    content:"";position:absolute;inset:0;
    background:radial-gradient(800px 200px at 80% 0%, rgba(77,219,193,.08), transparent 60%);
    pointer-events:none;
  }
  .rule-card .kw{
    color:var(--brand);font-weight:700;font-size:18px;letter-spacing:.05em;
    display:inline-block;padding:2px 10px;border-radius:6px;
    background:rgba(77,219,193,.06);border:1px solid rgba(77,219,193,.25);
  }
  .rule-card .kw-then{color:var(--brand-2);background:rgba(77,214,255,.06);border-color:rgba(77,214,255,.25)}
  .rule-card .kw-else{color:var(--warn);background:rgba(255,184,107,.05);border-color:rgba(255,184,107,.25)}
  .rule-card .rule-line{display:flex;align-items:center;gap:12px;color:var(--text-dim)}
  .rule-card .rule-line .check{
    width:20px;height:20px;border-radius:5px;
    background:rgba(77,219,193,.1);color:var(--brand);
    display:inline-flex;align-items:center;justify-content:center;
    border:1px solid rgba(77,219,193,.3);font-size:12px;
  }
  .rule-card .rule-and{color:var(--text-mute);padding-left:32px;font-size:12.5px;letter-spacing:.1em}
  .rule-card .indent{padding-left:32px}
  .rule-card .result{
    margin-top:14px;padding:14px 18px;border-radius:10px;
    background:rgba(77,219,193,.08);border:1px solid rgba(77,219,193,.3);
    color:var(--brand);font-weight:700;font-size:16px;
  }
  .rule-card .result.deny{
    background:rgba(255,184,107,.05);border-color:rgba(255,184,107,.25);color:var(--warn);
  }

  /* =========================================================
     GOOD vs BAD TRADE
     ========================================================= */
  .vs-grid{
    display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:30px;
  }
  .vs-card{
    background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-lg);
    padding:26px;display:flex;flex-direction:column;gap:14px;position:relative;
  }
  .vs-card.good{border-color:rgba(77,219,193,.35);background:linear-gradient(180deg,rgba(77,219,193,.04),transparent),var(--surface)}
  .vs-card.bad{border-color:rgba(255,111,122,.3);background:linear-gradient(180deg,rgba(255,111,122,.04),transparent),var(--surface)}
  .vs-tag{
    display:inline-flex;align-items:center;gap:8px;align-self:flex-start;
    padding:6px 12px;border-radius:999px;font-family:var(--mono);font-size:11.5px;
    letter-spacing:.12em;text-transform:uppercase;font-weight:700;
  }
  .vs-tag.ok{color:var(--brand);background:rgba(77,219,193,.08);border:1px solid rgba(77,219,193,.28)}
  .vs-tag.ko{color:var(--bad);background:rgba(255,111,122,.08);border:1px solid rgba(255,111,122,.28)}
  .vs-card h3{margin:0;font-size:22px;letter-spacing:-.01em}
  .vs-list{list-style:none;padding:0;margin:8px 0 0;display:flex;flex-direction:column;gap:10px}
  .vs-list li{display:flex;gap:10px;align-items:flex-start;color:var(--text-dim);font-size:14.5px}
  .vs-list li .ic{
    flex:0 0 20px;height:20px;border-radius:6px;
    display:inline-flex;align-items:center;justify-content:center;font-family:var(--mono);font-weight:700;font-size:12px;margin-top:1px;
  }
  .vs-list li .ic.y{color:var(--brand);background:rgba(77,219,193,.1);border:1px solid rgba(77,219,193,.3)}
  .vs-list li .ic.n{color:var(--bad);background:rgba(255,111,122,.08);border:1px solid rgba(255,111,122,.28)}
  .vs-result{
    margin-top:6px;padding:12px 14px;border-radius:10px;font-weight:600;font-family:var(--mono);
    font-size:14px;letter-spacing:.03em;
  }
  .vs-card.good .vs-result{background:rgba(77,219,193,.08);color:var(--brand);border:1px solid rgba(77,219,193,.3)}
  .vs-card.bad .vs-result{background:rgba(255,184,107,.05);color:var(--warn);border:1px solid rgba(255,184,107,.25)}
  .vs-summary{
    margin-top:24px;text-align:center;color:var(--text-dim);font-size:16px;
  }
  .vs-summary strong{color:var(--text)}

  /* =========================================================
     RISK / TRUST GRID
     ========================================================= */
  .trust-grid{
    display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-top:30px;
  }
  .trust-card{
    background:var(--surface);border:1px solid var(--line);
    border-radius:var(--radius);padding:20px;
    display:flex;flex-direction:column;gap:10px;
  }
  .trust-card .icon{
    width:34px;height:34px;border-radius:9px;
    display:flex;align-items:center;justify-content:center;
    background:rgba(77,219,193,.07);color:var(--brand);
    border:1px solid rgba(77,219,193,.22);
  }
  .trust-card h4{margin:0;font-size:15.5px}
  .trust-card p{margin:0;color:var(--text-mute);font-size:13.5px}

  /* =========================================================
     FOUNDER CARD
     ========================================================= */
  #founder{padding:64px 0}
  .founder-card{
    display:flex;align-items:flex-start;gap:24px;
    background:linear-gradient(180deg,#0e1320,#0a0d15);
    border:1px solid var(--line-2);
    border-radius:var(--radius-lg);
    padding:30px 32px;
    box-shadow:var(--shadow-2);
    max-width:880px;margin:0 auto;
  }
  .founder-avatar{
    position:relative;
    width:84px;height:84px;flex:0 0 84px;border-radius:50%;
    overflow:hidden;
    background:
      radial-gradient(circle at 30% 30%, rgba(77,219,193,.35), transparent 60%),
      linear-gradient(180deg,#0f3a32,#0a2823);
    border:1px solid rgba(77,219,193,.4);
    box-shadow:0 0 0 2px rgba(77,219,193,.08), 0 0 24px rgba(77,219,193,.18);
    display:flex;align-items:center;justify-content:center;
    color:var(--brand);font-family:var(--sans);font-weight:800;font-size:28px;letter-spacing:-.02em;
  }
  .founder-photo{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
    display:block;
    opacity:0;
    transition:opacity .25s ease;
  }
  /* Image fades in only after successful load */
  .founder-photo.loaded{
    opacity:1;
  }
  /* Hide broken image completely */
  .founder-photo.broken{
    display:none;
  }
  /* Initials visible by default */
  .founder-initials{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
    visibility:visible;
  }
  /* Hide initials ONLY after image successfully loads */
  .founder-photo.loaded ~ .founder-initials{
    visibility:hidden;
  }
  .founder-eyebrow{
    font-family:var(--mono);font-size:11.5px;letter-spacing:.18em;
    text-transform:uppercase;color:var(--brand);font-weight:700;margin-bottom:6px;
  }
  .founder-name{
    margin:0 0 12px;font-size:22px;letter-spacing:-.01em;font-weight:700;color:var(--text);
  }
  .founder-role{color:var(--text-mute);font-weight:500;font-size:15px}
  .founder-bio{
    margin:0 0 16px;color:var(--text-dim);font-size:15px;line-height:1.6;max-width:640px;
  }
  .founder-links{display:flex;gap:14px;flex-wrap:wrap;align-items:center}
  .founder-link{
    display:inline-flex;align-items:center;gap:8px;
    padding:9px 14px;border-radius:9px;font-size:13.5px;font-weight:600;
    background:rgba(77,219,193,.06);
    border:1px solid rgba(77,219,193,.28);
    color:var(--brand);
    transition:border-color .15s ease, background .15s ease, transform .15s ease;
  }
  .founder-link:hover{
    border-color:rgba(77,219,193,.5);
    background:rgba(77,219,193,.10);
    transform:translateY(-1px);
  }
  .founder-link-ghost{
    background:transparent;border-color:var(--line-2);color:var(--text-dim);
  }
  .founder-link-ghost:hover{
    border-color:var(--line-2);background:rgba(255,255,255,.02);color:var(--text);
  }
  @media (max-width: 640px){
    .founder-card{flex-direction:column;padding:24px}
    .founder-avatar{width:64px;height:64px;flex:0 0 64px;font-size:22px}
  }

  /* =========================================================
     ONBOARDING STEPS
     ========================================================= */
  .steps-grid{
    display:grid;grid-template-columns:repeat(6,1fr);gap:14px;margin-top:30px;
  }
  .step-card{
    background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);
    padding:20px;display:flex;flex-direction:column;gap:10px;position:relative;min-height:160px;
  }
  .step-card .num{
    font-family:var(--mono);font-weight:700;font-size:13px;color:var(--brand);
    background:rgba(77,219,193,.08);border:1px solid rgba(77,219,193,.28);
    border-radius:8px;padding:4px 8px;align-self:flex-start;letter-spacing:.05em;
  }
  .step-card h4{margin:0;font-size:15px}
  .step-card p{margin:0;font-size:13px;color:var(--text-mute)}

  /* =========================================================
     TRUST STATEMENT (manifesto block)
     ========================================================= */
  .manifesto{
    text-align:center;padding:120px 0;
    background:
      radial-gradient(900px 400px at 50% 0%, rgba(77,219,193,.06), transparent 60%);
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
  }
  .manifesto .label{
    color:var(--brand);font-family:var(--mono);font-size:12px;
    letter-spacing:.18em;text-transform:uppercase;margin-bottom:18px;
  }
  .manifesto h2{
    font-size:clamp(28px, 4vw, 44px);line-height:1.2;letter-spacing:-.015em;
    font-weight:700;max-width:880px;margin:0 auto 18px;
  }
  .manifesto h2 em{
    font-style:normal;
    background:linear-gradient(180deg,var(--brand),var(--brand-2));
    -webkit-background-clip:text;background-clip:text;color:transparent;
  }
  .manifesto p{
    color:var(--text-dim);font-size:18px;max-width:680px;margin:0 auto;
  }

  /* =========================================================
     PROOF BLOCK
     ========================================================= */
  .proof{
    padding:84px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line);
    background:radial-gradient(900px 400px at 50% 0%, rgba(77,219,193,.05), transparent 60%);
  }
  .proof-grid{
    display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:8px;
  }
  .proof-stat{
    background:var(--surface);border:1px solid var(--line);
    border-radius:var(--radius-lg);padding:28px 22px;text-align:center;
  }
  .proof-stat .num{
    font-family:var(--mono);font-size:clamp(28px,3vw,38px);font-weight:700;
    letter-spacing:-.01em;color:var(--brand);
  }
  .proof-stat .lbl{
    color:var(--text-mute);font-size:13px;margin-top:8px;
    text-transform:uppercase;letter-spacing:.12em;
  }
  .proof-note{
    text-align:center;color:var(--text-mute);font-size:13px;
    margin-top:28px;font-family:var(--mono);letter-spacing:.04em;line-height:1.6;
  }
  @media (max-width:980px){.proof-grid{grid-template-columns:repeat(2,1fr)}}
  @media (max-width:560px){.proof-grid{grid-template-columns:1fr}}

  /* =========================================================
     PRICING
     ========================================================= */
  .price-grid{
    display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:34px;
  }
  .price-card{
    background:var(--surface);border:1px solid var(--line);
    border-radius:var(--radius-lg);padding:28px;
    display:flex;flex-direction:column;
    position:relative;
  }
  .price-card.featured{
    border-color:rgba(77,219,193,.4);
    background:
      radial-gradient(600px 200px at 50% -50%, rgba(77,219,193,.08), transparent 60%),
      var(--surface);
    box-shadow:0 30px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(77,219,193,.18);
  }
  .price-card .badge{
    position:absolute;top:-11px;left:50%;transform:translateX(-50%);
    background:var(--brand);color:#062019;font-size:11.5px;font-weight:700;
    padding:5px 11px;border-radius:999px;letter-spacing:.12em;text-transform:uppercase;
  }
  .price-name{font-size:14px;color:var(--text-dim);text-transform:uppercase;letter-spacing:.18em;font-weight:600}
  .price-amount{font-size:42px;font-weight:700;letter-spacing:-.02em;margin:8px 0 0}
  .price-amount span{font-size:15px;color:var(--text-mute);font-weight:500;letter-spacing:0;margin-left:4px}
  .price-best{
    color:var(--brand);font-size:12.5px;font-weight:600;font-family:var(--mono);
    letter-spacing:.04em;margin:6px 0 4px;
  }
  .price-tagline{color:var(--text-dim);font-size:14.5px;margin:2px 0 18px}
  .price-list{list-style:none;padding:0;margin:0 0 22px;display:flex;flex-direction:column;gap:9px}
  .price-list li{display:flex;gap:10px;color:var(--text-dim);font-size:14.5px}
  .price-list li::before{
    content:"";flex:0 0 16px;height:16px;border-radius:50%;
    background:rgba(77,219,193,.1);
    border:1px solid rgba(77,219,193,.28);
    margin-top:3px;
    background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%234ddbc1' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-position:center;background-repeat:no-repeat;
  }
  .price-card .btn{margin-top:auto}
  .price-microcopy{
    text-align:center;color:var(--text-mute);font-size:13.5px;
    margin-top:24px;font-family:var(--mono);letter-spacing:.04em;
  }
  .price-microcopy-sub{
    text-align:center;color:var(--text-dim);font-size:14px;
    margin-top:8px;line-height:1.5;
  }
  .price-fineprint{
    text-align:center;margin-top:14px;
    color:var(--text-mute);font-size:12.5px;
    display:flex;justify-content:center;align-items:center;gap:10px;flex-wrap:wrap;
  }
  .price-fineprint .dot-sep{color:var(--line-2)}
  /* Rank-1 emphasis: tint the coin symbol in the top-ranked row */
  .rank-cell.r1 + .asset .coin-symbol{color:var(--rank-1)}

  /* =========================================================
     NOT FOR EVERYONE
     ========================================================= */
  .nfe-grid{
    display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:30px;
  }
  .nfe-card{
    background:var(--surface);border:1px solid var(--line);
    border-radius:var(--radius-lg);padding:28px;
  }
  .nfe-card.ko{border-color:rgba(255,111,122,.25)}
  .nfe-card.ok{border-color:rgba(77,219,193,.3)}
  .nfe-card h3{margin:0 0 16px;font-size:18px;display:flex;align-items:center;gap:10px}
  .nfe-card h3 .tg{
    font-family:var(--mono);font-size:11.5px;letter-spacing:.12em;text-transform:uppercase;
    padding:4px 9px;border-radius:6px;font-weight:700;
  }
  .nfe-card.ko h3 .tg{color:var(--bad);background:rgba(255,111,122,.08);border:1px solid rgba(255,111,122,.28)}
  .nfe-card.ok h3 .tg{color:var(--brand);background:rgba(77,219,193,.08);border:1px solid rgba(77,219,193,.3)}
  .nfe-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:10px}
  .nfe-list li{display:flex;gap:10px;color:var(--text-dim);font-size:15px}
  .nfe-list li .m{
    flex:0 0 20px;height:20px;border-radius:6px;font-family:var(--mono);
    display:inline-flex;align-items:center;justify-content:center;font-size:12px;font-weight:700;margin-top:1px;
  }
  .nfe-card.ko .nfe-list li .m{color:var(--bad);background:rgba(255,111,122,.08);border:1px solid rgba(255,111,122,.28)}
  .nfe-card.ok .nfe-list li .m{color:var(--brand);background:rgba(77,219,193,.08);border:1px solid rgba(77,219,193,.3)}

  /* =========================================================
     FAQ
     ========================================================= */
  .faq-list{display:flex;flex-direction:column;gap:10px;margin-top:24px}
  details.faq{
    background:var(--surface);border:1px solid var(--line);
    border-radius:var(--radius);padding:18px 22px;
    transition:border-color .2s ease;
  }
  details.faq[open]{border-color:var(--line-2);background:var(--surface-2)}
  details.faq summary{
    cursor:pointer;list-style:none;
    display:flex;justify-content:space-between;align-items:center;gap:16px;
    font-weight:600;font-size:16px;color:var(--text);
  }
  details.faq summary::-webkit-details-marker{display:none}
  details.faq summary::after{
    content:"+";font-family:var(--mono);font-size:22px;color:var(--text-mute);
    transition:transform .2s ease;
  }
  details.faq[open] summary::after{content:"−";color:var(--brand)}
  details.faq p{margin:14px 0 0;color:var(--text-dim);font-size:15px;line-height:1.65}

  /* =========================================================
     FINAL CTA
     ========================================================= */
  .final-cta{
    text-align:center;padding:120px 0;
    border-top:1px solid var(--line);
    background:
      radial-gradient(900px 400px at 50% 0%, rgba(77,219,193,.07), transparent 60%),
      radial-gradient(900px 400px at 50% 100%, rgba(77,214,255,.05), transparent 60%);
  }
  .final-cta h2{
    font-size:clamp(34px, 5vw, 56px);line-height:1.05;letter-spacing:-.02em;
    margin:0 0 28px;font-weight:700;
  }
  .final-cta .ctas{display:flex;justify-content:center;gap:12px;flex-wrap:wrap}

 
  .foot-bottom a{color:var(--text-dim)}

  /* =========================================================
     UTILITIES
     ========================================================= */
  .reveal{opacity:0;transform:translateY(14px);transition:opacity .7s ease, transform .7s ease}
  .reveal.in{opacity:1;transform:none}

  /* =========================================================
     RESPONSIVE
     ========================================================= */
  @media (max-width: 1080px){
    .why-grid{grid-template-columns:repeat(3,1fr)}
    .steps-grid{grid-template-columns:repeat(3,1fr)}
    .trust-grid{grid-template-columns:repeat(3,1fr)}
    .problem-grid{grid-template-columns:repeat(2,1fr)}
  }
  @media (max-width: 980px){
    .hero{padding:56px 0 36px}
    .hero-grid{grid-template-columns:1fr;gap:36px}
    .product{grid-template-columns:1fr;gap:32px}
    .product.reverse{grid-template-areas:"copy" "media"}
    .trust-grid{grid-template-columns:repeat(2,1fr)}
    .why-grid{grid-template-columns:repeat(2,1fr)}
    .steps-grid{grid-template-columns:repeat(2,1fr)}
    .price-grid{grid-template-columns:1fr;gap:14px}
    .vs-grid{grid-template-columns:1fr}
    .nfe-grid{grid-template-columns:1fr}
    .compete-grid{grid-template-columns:1fr}
    .product-split{grid-template-columns:1fr}
    .foot-grid{grid-template-columns:1fr 1fr;gap:30px}
    .nav-links{display:none}
    .menu-btn{display:inline-flex;align-items:center;justify-content:center}
    .nav-mobile{
      display:none;flex-direction:column;gap:6px;
      padding:14px 24px 22px;border-bottom:1px solid var(--line);
      background:var(--bg);
    }
    .nav-mobile.open{display:flex}
    .nav-mobile a{padding:10px 0;color:var(--text-dim);border-bottom:1px solid var(--line)}
    .nav-ctas .btn-ghost{display:none}
    section{padding:64px 0}
    .brand img{width:140px}
    .rule-card{padding:26px}
  }
  @media (max-width: 640px){
    .problem-grid{grid-template-columns:1fr}
    .trust-grid{grid-template-columns:1fr}
    .why-grid{grid-template-columns:1fr}
    .steps-grid{grid-template-columns:1fr}
    .nav-ctas .btn-ghost{display:none}
    .hero-ctas .btn{flex:1;min-width:140px}
    .foot-grid{grid-template-columns:1fr}
    .daily-table th:nth-child(4), .daily-table td:nth-child(4){display:none}
    .daily-table th:nth-child(5), .daily-table td:nth-child(5){display:none}
    .daily-table th:nth-child(7), .daily-table td:nth-child(7){display:none}
    .setup-name{display:none}
    .brand img{width:130px}
    .manifesto, .final-cta{padding:80px 0}
  }

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh; /* full screen hero */
}
/* Video styling */
.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures full cover */
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Overlay (important for readability) */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
        background: rgb(0 0 0 / 40%);
    z-index: 1;
}

/* Keep your content above video */
.hero-inner {
    position: relative;
    z-index: 2;
}