    /* ══════════════════════════════════════
   DESIGN TOKENS
   ══════════════════════════════════════ */
    :root {
      --bg-primary: #0a0e17;
      --bg-secondary: #111827;
      --bg-tertiary: #0f1726;
      --bg-card: #151d2e;
      --bg-card-hover: #1a2540;
      --text-primary: #e8edf5;
      --text-secondary: #8b95a8;
      --text-muted: #5a6478;
      --accent: #9b7aff;
      --accent-alt: #4dd6ff;
      --accent-warm: #ffb86b;
      --accent-glow: rgba(155, 122, 255, 0.12);
      --border: rgba(255, 255, 255, 0.06);
      --border-accent: rgba(155, 122, 255, 0.2);
      --font-body: 'DM Sans', system-ui, sans-serif;
      --font-mono: 'JetBrains Mono', 'SF Mono', monospace;
      --max-w: 1120px;
      --radius-sm: 8px;
      --radius-lg: 8px;
    }

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

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
    }

    body {
      font-family: var(--font-body);
      background: var(--bg-primary);
      background-image:
        radial-gradient(circle at top right, rgba(77, 214, 255, 0.08), transparent 28%),
        radial-gradient(circle at 20% 20%, rgba(255, 184, 107, 0.08), transparent 26%);
      color: var(--text-primary);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      color: var(--accent);
      text-decoration: none;
      transition: opacity 0.2s;
    }

    a:hover {
      opacity: 0.8;
    }

    a:focus-visible,
    button:focus-visible {
      outline: 2px solid var(--accent-alt);
      outline-offset: 3px;
    }

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

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

    .section {
      padding: 40px 0;
    }

    .section-label {
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }

    .section-title {
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 600;
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .section-desc {
      font-size: 17px;
      color: var(--text-secondary);
      max-width: 560px;
      line-height: 1.7;
    }

    /* ══════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════ */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 0 24px;
      backdrop-filter: blur(20px);
      background: rgba(10, 14, 23, 0.85);
      border-bottom: 1px solid var(--border);
    }

    .nav-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
      font-size: 18px;
      color: var(--text-primary);
    }

    .nav-logo .logo-mark {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      overflow: hidden;
    }

    .nav-logo .logo-mark img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      color: var(--text-secondary);
      font-size: 14px;
      font-weight: 500;
      transition: color 0.2s;
    }

    .nav-links a:hover {
      color: var(--text-primary);
      opacity: 1;
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      background: var(--accent);
      color: #ffffff;
      border-radius: var(--radius-sm);
      font-size: 14px;
      font-weight: 600;
      transition: background 0.2s, transform 0.15s;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    }

    .nav-links .nav-cta {
      color: #ffffff;
    }

    .nav-cta:hover {
      background: #b08fff;
      color: #000000;
      opacity: 1;
      transform: translateY(-1px);
    }

    .nav-links .nav-cta:hover {
      color: #000000;
    }

    .nav-cta svg {
      width: 16px;
      height: 16px;
    }

    /* Mobile nav toggle */
    .nav-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
    }

    .nav-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--text-secondary);
      margin: 4px 0;
      transition: 0.3s;
    }

    /* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
    .hero {
      padding: 120px 0 64px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(77, 214, 255, 0.14) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      left: -140px;
      bottom: -180px;
      width: 420px;
      height: 420px;
      background: radial-gradient(circle, rgba(255, 184, 107, 0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
      gap: 44px;
      align-items: center;
    }

    .hero-content {
      max-width: 680px;
    }

    .hero h1 {
      font-size: clamp(36px, 6vw, 64px);
      font-weight: 700;
      line-height: 1.08;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
      max-width: 720px;
    }

    .hero h1 .accent {
      color: var(--accent);
    }

    .hero p {
      font-size: 19px;
      color: var(--text-secondary);
      line-height: 1.7;
      margin-bottom: 36px;
      max-width: 640px;
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: var(--radius-sm);
      font-size: 15px;
      font-weight: 600;
      transition: all 0.2s;
      cursor: pointer;
      border: none;
      font-family: var(--font-body);
    }

    .btn-primary {
      background: var(--accent);
      color: var(--bg-primary);
    }

    .btn-primary:hover {
      background: #b08fff;
      opacity: 1;
      transform: translateY(-1px);
    }

    .btn-ghost {
      background: transparent;
      color: var(--text-primary);
      border: 1px solid var(--border);
    }

    .btn-ghost:hover {
      border-color: var(--text-muted);
      opacity: 1;
    }

    .btn svg {
      width: 18px;
      height: 18px;
    }

    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 560px;
    }

    .device-shell {
      position: relative;
      width: min(100%, 460px);
      padding: 14px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 28px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        linear-gradient(135deg, rgba(77, 214, 255, 0.14), rgba(155, 122, 255, 0.12) 45%, rgba(255, 184, 107, 0.08));
      box-shadow: 0 20px 80px rgba(0, 0, 0, 0.32);
      overflow: hidden;
    }

    .device-shell .device-art {
      margin-top: 0;
    }

    .hero-float {
      position: absolute;
      z-index: 2;
      max-width: 220px;
      padding: 14px 16px;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(10, 14, 23, 0.86);
      box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
      backdrop-filter: blur(14px);
    }

    .hero-float.top {
      top: 60px;
      right: -10px;
    }

    .hero-float.bottom {
      left: -28px;
      bottom: 58px;
    }

    .hero-float-label {
      display: block;
      margin-bottom: 6px;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent-alt);
    }

    .hero-float strong {
      display: block;
      margin-bottom: 6px;
      font-size: 15px;
      line-height: 1.3;
    }

    .hero-float p {
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    .proof-strip {
      padding: 0 0 40px;
    }

    .proof-strip-inner {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
      padding: 20px 24px;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, rgba(17, 24, 39, 0.94), rgba(10, 14, 23, 0.96));
    }

    .proof-item {
      display: grid;
      gap: 4px;
      min-width: 0;
    }

    .proof-item strong {
      font-size: 15px;
      line-height: 1.3;
    }

    .proof-item span {
      font-size: 13px;
      color: var(--text-secondary);
    }

    /* Hero illustration (replaces text mockup) */
    .device-art {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 24px;
    }

    /* Service card illustrations */
    .product-art-frame {
      position: relative;
      width: calc(100% + 56px);
      max-width: none;
      aspect-ratio: 2 / 1;
      margin: -32px -28px 22px;
      border-top-left-radius: var(--radius-lg);
      border-top-right-radius: var(--radius-lg);
      border-bottom: 1px solid var(--border);
      background: linear-gradient(135deg, rgba(155, 122, 255, 0.08), rgba(77, 214, 255, 0.04));
      overflow: hidden;
    }

    .product-art-frame::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 2px;
      background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 80deg,
        rgba(77, 214, 255, 0.95) 112deg,
        rgba(155, 122, 255, 0.95) 138deg,
        transparent 170deg,
        transparent 360deg
      );
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease;
      mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      mask-composite: exclude;
      -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
    }

    .product-card:hover .product-art-frame::after {
      animation: product-border-sweep 1.2s linear infinite;
      opacity: 1;
    }

    .product-art {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: filter 0.25s ease, transform 0.25s ease;
    }

    /* Why OpenLay spotlight illustration */
    .feature-art {
      display: block;
      width: 100%;
      height: auto;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
    }

    /* ══════════════════════════════════════
   PRODUCTS GRID
   ══════════════════════════════════════ */
    .products {
      background: var(--bg-secondary);
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 48px;
    }

    .product-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
      position: relative;
      overflow: hidden;
    }

    .product-card:hover {
      border-color: rgba(155, 122, 255, 0.34);
      background:
        linear-gradient(135deg, rgba(155, 122, 255, 0.09), rgba(77, 214, 255, 0.04)),
        var(--bg-card-hover);
      box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(155, 122, 255, 0.08);
      transform: translateY(-4px);
    }

    .product-card:hover .product-art {
      filter: saturate(1.14) brightness(1.08);
      transform: scale(1.015);
    }

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

    .product-card p {
      font-size: 15px;
      color: var(--text-secondary);
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .product-license {
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--text-muted);
    }

    /* ══════════════════════════════════════
   WHY OPENLAY (FEATURES)
   ══════════════════════════════════════ */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 48px;
    }

    .feature-spotlight {
      grid-column: span 2;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
      gap: 32px;
      align-items: center;
      background:
        linear-gradient(135deg, rgba(77, 214, 255, 0.06), rgba(255, 184, 107, 0.06)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
    }

    .feature-spotlight-copy p {
      max-width: 620px;
    }

    .feature-list {
      list-style: none;
      display: grid;
      gap: 10px;
      margin-top: 18px;
    }

    .feature-list li {
      position: relative;
      padding-left: 18px;
      color: var(--text-secondary);
      font-size: 15px;
    }

    .feature-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 9px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent-alt);
      box-shadow: 0 0 18px rgba(77, 214, 255, 0.45);
    }

    .feature-signal {
      display: grid;
      gap: 14px;
      padding-top: 8px;
    }

    .feature-signal-row {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 14px;
    }

    .feature-signal-row span {
      color: var(--text-secondary);
    }

    .feature-signal-row strong {
      color: var(--text-primary);
      font-size: 15px;
    }

    .feature-card {
      padding: 32px 28px;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      background: rgba(10, 14, 23, 0.24);
      transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
    }

    .feature-card:hover {
      border-color: rgba(155, 122, 255, 0.32);
      background:
        linear-gradient(135deg, rgba(155, 122, 255, 0.08), rgba(77, 214, 255, 0.04)),
        rgba(17, 24, 39, 0.56);
      box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(155, 122, 255, 0.08);
      transform: translateY(-3px);
    }

    .feature-heading {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 14px;
    }

    .feature-icon {
      width: 40px;
      height: 40px;
      flex: 0 0 40px;
      border-radius: 10px;
      background: var(--accent-glow);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    }

    .feature-card:hover .feature-icon {
      background: rgba(155, 122, 255, 0.2);
      color: #bfaaff;
      box-shadow: 0 0 24px rgba(155, 122, 255, 0.18);
    }

    .feature-icon svg {
      width: 20px;
      height: 20px;
    }

    .feature-kicker {
      margin-bottom: 6px;
      color: var(--accent-alt);
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .feature-card h3 {
      font-size: 17px;
      font-weight: 600;
      margin-bottom: 0;
    }

    .feature-card p {
      font-size: 15px;
      color: var(--text-secondary);
      line-height: 1.65;
    }

    /* ══════════════════════════════════════
   CONTACT
   ══════════════════════════════════════ */
    /* Contact + Legal use the default .section padding for consistent rhythm */

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
      gap: 44px;
      align-items: start;
    }

    .contact-copy {
      padding-top: 4px;
    }

    .contact-card {
      padding: 28px;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
        var(--bg-card);
    }

    .contact-card h3 {
      font-size: 24px;
      margin-bottom: 20px;
    }

    .contact-list {
      display: grid;
      gap: 16px;
    }

    .contact-item {
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

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

    .contact-label {
      display: block;
      margin-bottom: 6px;
      color: var(--accent-alt);
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .contact-value {
      font-size: 18px;
      font-weight: 600;
      color: var(--text-primary);
      word-break: break-word;
    }

    .contact-sub {
      margin-top: 6px;
      font-size: 14px;
      color: var(--text-secondary);
    }

    .contact-company-name {
      margin-bottom: 16px;
      line-height: 1.15;
    }

    .contact-company-copy {
      max-width: 480px;
      margin-bottom: 22px;
      color: var(--text-secondary);
      font-size: 16px;
    }

    .contact-pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 28px;
    }

    .contact-pill {
      display: inline-flex;
      align-items: center;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.03);
      color: var(--text-secondary);
      font-size: 13px;
    }

    .inline-contact-link {
      color: inherit;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    /* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
    .footer {
      border-top: 1px solid var(--border);
      padding: 48px 0;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 40px;
    }

    .footer-brand p {
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 12px;
      max-width: 280px;
      line-height: 1.6;
    }

    .footer-links {
      display: flex;
      gap: 56px;
    }

    .footer-col h4 {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-secondary);
      margin-bottom: 16px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col li {
      margin-bottom: 10px;
    }

    .footer-col a {
      font-size: 14px;
      color: var(--text-muted);
      transition: color 0.2s;
    }

    .footer-col a:hover {
      color: var(--text-primary);
      opacity: 1;
    }

    .footer-bottom {
      margin-top: 40px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: var(--text-muted);
    }

    .back-to-top {
      position: fixed;
      right: 18px;
      bottom: 18px;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(155, 122, 255, 0.18), rgba(77, 214, 255, 0.04)),
        rgba(10, 14, 23, 0.82);
      color: var(--text-primary);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
      backdrop-filter: blur(20px);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transform: translateY(12px);
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, border-color 0.2s ease;
      z-index: 30;
    }

    .back-to-top svg {
      width: 18px;
      height: 18px;
    }

    .back-to-top.is-visible {
      opacity: 0.95;
      visibility: visible;
      transform: translateY(0);
    }

    .back-to-top.is-lifted {
      bottom: 88px;
    }

    .back-to-top:hover {
      opacity: 1;
      border-color: rgba(155, 122, 255, 0.35);
    }

    /* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */
    @media (prefers-reduced-motion: no-preference) {
      @keyframes product-border-sweep {
        to {
          transform: rotate(1turn);
        }
      }

      .fade-in {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
      }

      .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .product-card:hover .product-art-frame::after {
        animation: none;
      }

      .fade-in {
        opacity: 1;
        transform: none;
      }
    }

    /* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
    @media (max-width: 900px) {

      .fade-in,
      .fade-in.visible {
        opacity: 1;
        transform: none;
      }

      .hero-inner,
      .feature-spotlight {
        grid-template-columns: 1fr;
      }

      .feature-spotlight {
        grid-column: auto;
      }

      .proof-strip-inner,
      .products-grid {
        grid-template-columns: 1fr;
      }

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

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

      .footer-links {
        gap: 32px;
      }

      .device-shell {
        min-height: auto;
      }

      .hero-float.top {
        right: 10px;
      }

      .hero-float.bottom {
        left: 10px;
      }
    }

    @media (max-width: 640px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 24px;
        right: 24px;
        padding: 18px;
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        background: rgba(10, 14, 23, 0.98);
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
      }

      .nav-links.is-open {
        display: flex;
      }

      .nav-toggle {
        display: block;
      }

      .hero {
        padding: 120px 0 80px;
      }

      .hero h1 {
        font-size: 32px;
      }

      .hero-actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
        justify-content: center;
      }

      .section {
        padding: 40px 0;
      }

      .footer-inner {
        flex-direction: column;
      }

      .footer-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 24px;
        width: 100%;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
      }

      .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 42px;
        height: 42px;
      }

      .back-to-top.is-lifted {
        bottom: 78px;
      }

      .contact-card {
        padding: 22px;
      }

      .device-shell {
        width: 100%;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: none;
        box-shadow: none;
        overflow: visible;
      }

      .proof-strip-inner {
        padding: 18px;
      }

      .hero-visual {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        min-height: auto;
      }

      .hero-float {
        position: static;
        max-width: none;
        width: 100%;
        margin-top: 0;
      }
    }

/* ══════════════════════════════════════
   LEGAL MODALS
   ══════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 520px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  transform: translateY(16px);
  transition: transform 0.25s ease;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.modal-overlay.is-open .modal-box {
  transform: translateY(0);
}

.modal-title {
  margin-bottom: 20px;
  font-size: 24px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.legal-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-alt);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-value {
  font-size: 16px;
  font-weight: 400;
}

.legal-question {
  margin-top: 20px;
  color: var(--text-secondary);
  font-size: 14px;
}

.legal-question a {
  color: var(--accent);
}
