  /* ───── HERO ───── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 48px 80px;
    text-align: center;
  }

  /* Radial glow behind hero */
  .hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    width: 900px;
    height: 600px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center,
      rgba(184,150,62,0.08) 0%,
      rgba(184,150,62,0.03) 40%,
      transparent 70%);
    pointer-events: none;
  }

  /* Grid lines replaced by Dark Veil WebGL canvas */
  .hero::after { display: none; }

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

  .stamp {
    font-family: 'Goldman', sans-serif;
    font-size: 10px;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 32px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .stamp::before, .stamp::after {
    content: '';
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
  }
  .stamp::after {
    background: linear-gradient(90deg, var(--gold), transparent);
  }

  .hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3.2rem, 6vw, 5.5rem);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    max-width: 800px;
  }

  .hero-title em {
    font-style: normal;
    color: var(--gold);
    font-weight: 300;
    display: block;
  }

  .hero-sub {
    font-family: 'IBM Plex Serif', serif;
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.6;
    margin-bottom: 48px;
  }

  .hero-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
  }

  .pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 1px solid var(--divider);
    background: rgba(30,37,48,0.6);
    backdrop-filter: blur(8px);
    transition: border-color 0.3s, transform 0.2s, background 0.3s;
  }

  .pill:hover {
    border-color: var(--gold);
    background: rgba(184,150,62,0.08);
    transform: translateY(-2px);
  }

  .pill-icon {
    width: 8px; height: 8px;
    background: var(--gold);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    flex-shrink: 0;
  }

  .pill span {
    font-family: 'Goldman', sans-serif;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--ink);
  }

  .hero-price {
    font-family: 'Goldman', sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: #556677;
    text-transform: uppercase;
  }
  .hero-price strong {
    color: var(--gold);
    font-size: 11px;
  }

  /* Hero CTA buttons */
  .hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
  }
  .hero-btn {
    font-family: 'Goldman', sans-serif;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 14px 36px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
  }
  .hero-btn-primary {
    background: var(--gold);
    color: #000;
    font-weight: 700;
    border: 1px solid var(--gold);
  }
  .hero-btn-primary:hover {
    background: var(--gold-light);
    box-shadow: 0 0 30px rgba(184,150,62,0.3);
  }
  .hero-btn-secondary {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--divider);
  }
  .hero-btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  /* Model logos strip */
  .hero-models {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--divider);
  }
  .hero-models-label {
    font-family: 'Goldman', sans-serif;
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #445566;
    white-space: nowrap;
  }
  .model-badge {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 0;
    transition: color 0.3s;
  }
  .model-badge:hover { color: var(--gold); }
  .model-dot {
    width: 3px; height: 3px;
    background: var(--divider);
    border-radius: 50%;
  }
