:root {
      --bg: #080808;
      --surface: #0f0f0f;
      --surface-raised: #141414;
      --line: rgba(255,255,255,.12);
      --line-strong: rgba(255,255,255,.24);
      --text: #f6f6f3;
      --muted: #929292;
      --red: #e20d18;
      --red-dark: #b30811;
      --max: 1440px;
      --pad: clamp(20px, 4.2vw, 72px);
      --radius: 3px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 100px; }
    body {
      margin: 0;
      min-width: 320px;
      color: var(--text);
      background: var(--bg);
      font-family: Inter, "Helvetica Neue", Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    body.locked { overflow: hidden; }
    button, input { font: inherit; }
    button, a { -webkit-tap-highlight-color: transparent; }
    a { color: inherit; text-decoration: none; }
    button { color: inherit; }
    ::selection { color: white; background: var(--red); }

    .noise {
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .035;
      z-index: 100;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
    }

    .shell {
      width: min(100%, var(--max));
      margin: 0 auto;
      padding-inline: var(--pad);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #b8b8b8;
      font-size: 11px;
      font-weight: 650;
      letter-spacing: .15em;
      text-transform: uppercase;
    }
    .eyebrow::before {
      content: "";
      width: 18px;
      height: 2px;
      background: var(--red);
    }

    .button {
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 0 22px;
      border: 1px solid transparent;
      border-radius: var(--radius);
      background: transparent;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
    }
    .button:hover { transform: translateY(-1px); }
    .button:disabled {
      opacity: .48;
      cursor: not-allowed;
      transform: none;
    }
    .button:disabled:hover { transform: none; }
    .button-red { background: var(--red); color: #fff; }
    .button-red:hover { background: #f31521; }
    .button-outline { border-color: var(--line-strong); }
    .button-outline:hover { border-color: #fff; background: rgba(255,255,255,.04); }
    .button svg { width: 15px; height: 15px; }
