:root {
      color-scheme: dark;
      --bg: #071015;
      --ink: #f6fbff;
      --muted: #a9bac7;
      --line: rgba(255,255,255,.16);
      --cyan: #36d7ff;
      --teal: #22c7a9;
      --gold: #e6b354;
      --green: #51d88a;
      --red: #ff776d;
      --violet: #9ea7ff;
      --danger: #ffb4a9;
    }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      min-height: 100vh;
      background: var(--bg);
      color: var(--ink);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
    }
    .hero {
      min-height: 88vh;
      display: grid;
      align-items: center;
      position: relative;
      overflow: hidden;
      background-image:
        linear-gradient(90deg, rgba(3,8,14,.98) 0%, rgba(3,8,14,.86) 38%, rgba(3,8,14,.34) 70%, rgba(3,8,14,.62) 100%),
        linear-gradient(180deg, rgba(3,8,14,.05), rgba(3,8,14,.58)),
        url('/static/monstro-trader-hero.png');
      background-size: cover;
      background-position: center;
    }
    .hero-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      opacity: .58;
      mix-blend-mode: screen;
      pointer-events: none;
      z-index: 0;
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 170px;
      background: linear-gradient(180deg, transparent, var(--bg));
      pointer-events: none;
    }
    nav {
      position: absolute;
      z-index: 2;
      top: 0;
      left: 0;
      right: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 22px clamp(18px, 5vw, 70px);
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      letter-spacing: 0;
    }
    .brand-mark {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      background: linear-gradient(135deg, var(--cyan), var(--teal));
      box-shadow: 0 0 28px rgba(54,215,255,.35);
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .ghost {
      color: var(--muted);
      text-decoration: none;
      font-size: 14px;
    }
    .content {
      position: relative;
      z-index: 2;
      width: min(760px, calc(100% - 36px));
      margin-left: clamp(18px, 7vw, 90px);
      padding-top: 54px;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(54,215,255,.28);
      border-radius: 999px;
      padding: 8px 12px;
      color: #cdf5ff;
      background: rgba(4,20,28,.45);
      backdrop-filter: blur(10px);
      font-size: 13px;
      margin-bottom: 18px;
    }
    h1 {
      margin: 0;
      max-width: 720px;
      font-size: clamp(44px, 7vw, 88px);
      line-height: .95;
      letter-spacing: 0;
    }
    .lead {
      max-width: 620px;
      margin: 22px 0 0;
      color: var(--muted);
      font-size: clamp(17px, 2vw, 21px);
      line-height: 1.55;
    }
    .hero-bullets {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin-top: 20px;
      padding: 0;
      list-style: none;
    }
    .hero-bullets li {
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 8px;
      padding: 8px 10px;
      background: rgba(255,255,255,.055);
      color: #eaf8ff;
      font-size: 13px;
    }
    .actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      margin-top: 30px;
    }
    button, .button {
      appearance: none;
      border: 0;
      min-height: 46px;
      border-radius: 8px;
      padding: 0 18px;
      font-weight: 800;
      cursor: pointer;
      font-size: 14px;
    }
    .primary {
      color: #041015;
      background: linear-gradient(135deg, var(--cyan), var(--teal));
      box-shadow: 0 18px 42px rgba(34,199,169,.24);
    }
    .secondary {
      color: var(--ink);
      background: rgba(255,255,255,.08);
      border: 1px solid var(--line);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
    }
    .stats {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      width: min(1180px, calc(100% - 36px));
      margin: -48px auto 0;
      position: relative;
      z-index: 2;
    }
    .stat {
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 16px;
      background: rgba(10,22,30,.78);
      backdrop-filter: blur(16px);
      min-height: 96px;
    }
    .stat span {
      display: block;
      color: var(--muted);
      font-size: 12px;
      margin-bottom: 8px;
    }
    .stat strong {
      display: block;
      font-size: 18px;
    }
    .details {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      width: min(1180px, calc(100% - 36px));
      margin: 28px auto 44px;
    }
    .detail {
      border: 1px solid rgba(255,255,255,.11);
      border-radius: 8px;
      padding: 18px;
      background: rgba(255,255,255,.035);
      min-height: 160px;
    }
    .detail h2 {
      margin: 0 0 8px;
      font-size: 18px;
    }
    .detail p {
      margin: 0;
      color: var(--muted);
      line-height: 1.55;
    }
    .section-title {
      width: min(1180px, calc(100% - 36px));
      margin: 48px auto 16px;
    }
    .section-title span {
      display: inline-flex;
      border: 1px solid rgba(54,215,255,.22);
      border-radius: 999px;
      padding: 7px 10px;
      color: #b9f1ff;
      background: rgba(54,215,255,.08);
      font-size: 12px;
      font-weight: 800;
    }
    .section-title h2 {
      margin: 12px 0 0;
      font-size: clamp(28px, 4vw, 48px);
      line-height: 1.02;
      letter-spacing: 0;
    }
    .section-title p {
      max-width: 760px;
      margin: 12px 0 0;
      color: var(--muted);
      line-height: 1.55;
      font-size: 17px;
    }
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      width: min(1180px, calc(100% - 36px));
      margin: 0 auto 28px;
    }
    .feature {
      border: 1px solid rgba(255,255,255,.11);
      border-radius: 8px;
      padding: 16px;
      min-height: 172px;
      background: rgba(255,255,255,.038);
    }
    .feature strong {
      display: block;
      margin-bottom: 8px;
      font-size: 17px;
    }
    .feature p {
      margin: 0;
      color: var(--muted);
      line-height: 1.45;
    }
    .feature .tag {
      display: inline-flex;
      margin-bottom: 12px;
      border-radius: 999px;
      padding: 5px 8px;
      font-size: 11px;
      font-weight: 900;
      color: #061016;
      background: var(--cyan);
    }
    .feature.green .tag { background: var(--green); }
    .feature.gold .tag { background: var(--gold); }
    .feature.violet .tag { background: var(--violet); }
    .feature.red .tag { background: var(--red); }
    .flow {
      width: min(1180px, calc(100% - 36px));
      margin: 0 auto 32px;
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 10px;
    }
    .flow-step {
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 8px;
      padding: 14px;
      background: rgba(3,16,23,.72);
      min-height: 132px;
    }
    .flow-step span {
      display: block;
      color: var(--gold);
      font-size: 12px;
      font-weight: 900;
      margin-bottom: 8px;
    }
    .flow-step strong {
      display: block;
      margin-bottom: 6px;
    }
    .flow-step p {
      margin: 0;
      color: var(--muted);
      line-height: 1.42;
      font-size: 13px;
    }
    .safety-band {
      width: min(1180px, calc(100% - 36px));
      margin: 0 auto 48px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 8px;
      padding: 20px;
      background: linear-gradient(135deg, rgba(18,84,64,.52), rgba(17,25,44,.78));
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      align-items: start;
    }
    .safety-band h2 { margin: 0 0 10px; }
    .safety-band p { margin: 0; color: #d5e4ef; line-height: 1.55; }
    .check-list {
      display: grid;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .check-list li {
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 8px;
      padding: 9px 10px;
      background: rgba(255,255,255,.055);
      color: #eef9ff;
      line-height: 1.35;
    }
    .final-cta {
      width: min(1180px, calc(100% - 36px));
      margin: 0 auto 56px;
      border: 1px solid rgba(54,215,255,.18);
      border-radius: 8px;
      padding: 24px;
      background: rgba(255,255,255,.04);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
    }
    .final-cta h2 { margin: 0 0 8px; }
    .final-cta p { margin: 0; color: var(--muted); line-height: 1.5; }
    .modal {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      background: rgba(1,7,10,.76);
      z-index: 20;
    }
    .modal.open { display: flex; }
    .login-box {
      width: min(430px, 100%);
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 10px;
      padding: 22px;
      background: rgba(9,22,31,.96);
      box-shadow: 0 32px 90px rgba(0,0,0,.42);
    }
    .login-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 18px;
    }
    .login-head h2 {
      margin: 0;
      font-size: 22px;
    }
    .login-head p {
      margin: 6px 0 0;
      color: var(--muted);
      line-height: 1.4;
    }
    .close {
      width: 38px;
      padding: 0;
      background: rgba(255,255,255,.08);
      color: var(--ink);
      border: 1px solid var(--line);
    }
    label {
      display: block;
      color: var(--muted);
      font-size: 12px;
      margin-bottom: 7px;
    }
    input {
      width: 100%;
      height: 46px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(0,0,0,.24);
      color: var(--ink);
      padding: 0 12px;
      font-size: 15px;
      outline: none;
      margin-bottom: 14px;
    }
    input:focus { border-color: rgba(54,215,255,.72); }
    .error {
      display: none;
      color: var(--danger);
      margin: 0 0 12px;
      font-size: 13px;
    }
    .error.show { display: block; }
    .login-submit { width: 100%; }
    @media (max-width: 900px) {
      nav { padding: 18px; }
      .ghost { display: none; }
      .content { margin-left: 18px; padding-top: 74px; }
      .hero { min-height: 86vh; background-position: 62% center; }
      .stats, .details, .feature-grid, .flow, .safety-band { grid-template-columns: 1fr; }
      .stats { margin-top: 18px; }
      .final-cta { align-items: stretch; flex-direction: column; }
      .final-cta .primary { width: 100%; }
    }
    @media (min-width: 901px) and (max-width: 1180px) {
      .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .flow { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }
