*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg: #080718;
    --navy: #1A1D4A;
    --blue-glow: #1D81D4;
    --blue-soft: #4A8CFF;
    --blue-dim: rgba(29, 129, 212, 0.15);
    --blue-secondary: #2791C8;
    --blue-deep: #2E3180;
    --orange: #d4651a;
    --white: #f0eff0;
    --grey: #7a7e8c;
    --grey-light: #a8acbb;
    --font-serif: 'Montserrat', sans-serif;
    --font-sans: 'DM Sans', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--font-sans);
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  body.modal-open {
    overflow: hidden;
  }

  /* ─── SCROLLBAR ─── */
  ::-webkit-scrollbar { width: 2px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--blue-glow); border-radius: 2px; }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 48px;
    background: linear-gradient(to bottom, rgba(8,7,24,0.9) 0%, transparent 100%);
    backdrop-filter: blur(0px);
    transition: backdrop-filter 0.4s, background 0.4s;
  }
  nav.scrolled {
    backdrop-filter: blur(20px);
    background: rgba(8,7,24,0.7);
    border-bottom: 1px solid rgba(29,129,212,0.08);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    opacity: 0.95;
    transition: opacity 0.3s;
  }
  .nav-logo:hover { opacity: 1; }
  .nav-logo svg { display: block; }

  .nav-btn {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 24px;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
  }
  .nav-btn:hover {
    border-color: var(--blue-soft);
    color: var(--blue-soft);
    box-shadow: 0 0 20px rgba(29,129,212,0.2);
  }

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

  .hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-video-wrap video {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: saturate(0.6) brightness(0.5);
  }
  .hero-video-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 40%, rgba(15,25,70,0.8) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 30% 60%, rgba(29,129,212,0.12) 0%, transparent 60%),
      radial-gradient(ellipse 50% 50% at 70% 30%, rgba(12,18,55,0.9) 0%, transparent 60%);
    z-index: 1;
  }

  /* Animated star field */
  .stars {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
  }
  .star {
    position: absolute;
    border-radius: 50%;
    background: white;
    animation: twinkle var(--dur, 4s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    opacity: 0;
  }
  @keyframes twinkle {
    0%, 100% { opacity: 0; }
    50% { opacity: var(--peak, 0.6); }
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 50% 50%, transparent 30%, rgba(8,7,24,0.6) 100%),
      linear-gradient(to bottom, rgba(8,7,24,0.2) 0%, transparent 30%, transparent 60%, rgba(8,7,24,0.9) 100%);
    z-index: 3;
  }

  .hero-glow {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29,129,212,0.08) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    z-index: 3;
    animation: pulse-glow 6s ease-in-out infinite;
  }
  @keyframes pulse-glow {
    0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%,-50%) scale(1.15); opacity: 1; }
  }

  .hero-content {
    position: relative;
    z-index: 4;
    max-width: 780px;
    padding: 0 32px;
  }

  .hero-prelude {
    font-family: var(--font-serif);
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.65;
    color: rgba(240,239,240,0.75);
    margin-bottom: 48px;
    animation: fadeUp 1.4s cubic-bezier(0.16,1,0.3,1) 0.3s both;
  }

  .hero-tagline {
    font-family: var(--font-sans);
    font-size: clamp(11px, 1.2vw, 13px);
    font-weight: 200;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--blue-soft);
    margin-bottom: 20px;
    animation: fadeUp 1.4s cubic-bezier(0.16,1,0.3,1) 0.6s both;
  }

  .hero-name {
    font-family: var(--font-serif);
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    color: var(--white);
    margin-bottom: 12px;
    animation: fadeUp 1.4s cubic-bezier(0.16,1,0.3,1) 0.75s both;
  }

  .hero-sub {
    font-family: var(--font-serif);
    font-size: clamp(12px, 1.4vw, 15px);
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--blue-soft);
    margin-bottom: 52px;
    animation: fadeUp 1.4s cubic-bezier(0.16,1,0.3,1) 0.9s both;
  }

  .hero-cta {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(29,129,212,0.5);
    padding: 16px 48px;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s;
    animation: fadeUp 1.4s cubic-bezier(0.16,1,0.3,1) 1.1s both;
    position: relative;
    overflow: hidden;
  }
  .hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(29,129,212,0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s;
  }
  .hero-cta:hover {
    border-color: var(--blue-soft);
    box-shadow: 0 0 40px rgba(29,129,212,0.3), inset 0 0 20px rgba(29,129,212,0.05);
    color: var(--blue-soft);
  }
  .hero-cta:hover::before { opacity: 1; }

  .hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.35;
    animation: fadeUp 1s ease 2s both;
  }
  .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--white));
    animation: scroll-pulse 2s ease-in-out infinite;
  }
  @keyframes scroll-pulse {
    0%, 100% { transform: scaleY(1); opacity: 0.5; }
    50% { transform: scaleY(1.3); opacity: 1; }
  }


  /* ─── HERO LOGO ─── */
  .hero-logo-wrap {
    width: clamp(240px, 38vw, 420px);
    margin: 0 auto 52px;
    animation: fadeUp 1.4s cubic-bezier(0.16,1,0.3,1) 0.75s both;
  }
  .hero-logo-wrap svg {
    width: 100%;
    height: auto;
    display: block;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ─── DIVIDER ─── */
  .section-divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(29,129,212,0.3), transparent);
    margin: 0 auto;
  }

  /* ─── SECTIONS SHARED ─── */
  section {
    padding: 120px 32px;
  }

  .section-inner {
    max-width: 900px;
    margin: 0 auto;
  }

  /* ─── SECTION 2: CONCEPT ─── */
  #concept {
    text-align: center;
  }

  .concept-eye {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(29,129,212,0.4), transparent);
    margin: 0 auto 60px;
  }

  .concept-text-a {
    font-family: var(--font-serif);
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.8;
    color: rgba(240,239,240,0.5);
    margin-bottom: 48px;
  }

  .concept-text-b {
    font-family: var(--font-serif);
    font-size: clamp(22px, 3.5vw, 40px);
    font-weight: 300;
    line-height: 1.5;
    color: var(--white);
    max-width: 620px;
    margin: 0 auto;
  }
  .concept-text-b em {
    font-style: italic;
    color: var(--blue-soft);
  }

  /* ─── VIDEO SECTION ─── */
  #film {
    padding: 80px 32px 100px;
  }

  .film-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .film-label {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 200;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--grey);
  }

  .film-player {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(42,110,245,0.1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
    cursor: pointer;
  }

  .film-player video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
  }

  .film-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(4,6,15,0.5);
    transition: opacity 0.4s;
    z-index: 2;
  }
  .film-overlay.hidden { opacity: 0; pointer-events: none; }

  .play-btn {
    width: 72px; height: 72px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
    padding-left: 4px;
  }
  .film-overlay:hover .play-btn {
    border-color: var(--blue-soft);
    background: rgba(42,110,245,0.12);
    box-shadow: 0 0 40px rgba(42,110,245,0.25);
    transform: scale(1.05);
  }

  .film-overlay-text {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 200;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
  }

  .film-controls {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(to top, rgba(4,6,15,0.9) 0%, transparent 100%);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .film-player:hover .film-controls,
  .film-player.playing .film-controls { opacity: 1; }

  .ctrl-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    opacity: 0.7;
    transition: opacity 0.2s;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .ctrl-btn:hover { opacity: 1; }

  .ctrl-progress {
    flex: 1;
    padding: 8px 0;
    cursor: pointer;
  }
  .ctrl-track {
    height: 2px;
    background: rgba(255,255,255,0.15);
    border-radius: 1px;
    overflow: hidden;
  }
  .ctrl-fill {
    height: 100%;
    background: var(--blue-soft);
    border-radius: 1px;
    width: 0%;
    transition: width 0.1s linear;
  }

  .ctrl-time {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 200;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
    flex-shrink: 0;
    min-width: 32px;
    text-align: right;
  }

  .sound-btn { margin-left: 4px; }

  /* ─── SECTION 4: WAITLIST ─── */
  #waitlist {
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  #waitlist::before {
    content: '';
    position: absolute;
    width: 800px; height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42,110,245,0.04) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
  }

  .waitlist-eyebrow {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 200;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--blue-soft);
    margin-bottom: 24px;
    opacity: 0.8;
  }

  .waitlist-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 300;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 64px;
  }
  .waitlist-title em { font-style: italic; color: rgba(240,239,240,0.5); }

  .waitlist-form {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
  }
  .form-field label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--grey);
  }
  .form-field input,
  .form-field select {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2px;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--white);
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    -webkit-appearance: none;
    width: 100%;
  }
  .form-field input::placeholder { color: rgba(255,255,255,0.2); }
  .form-field input:focus,
  .form-field select:focus {
    border-color: rgba(42,110,245,0.4);
    box-shadow: 0 0 20px rgba(42,110,245,0.08);
    background: rgba(42,110,245,0.03);
  }
  .form-field select option { background: #0a0f28; color: var(--white); }

  .radio-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .radio-option {
    flex: 1;
    min-width: 80px;
    position: relative;
  }
  .radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
  }
  .radio-option label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey);
    cursor: pointer;
    transition: all 0.3s;
  }
  .radio-option input[type="radio"]:checked + label {
    background: rgba(42,110,245,0.1);
    border-color: rgba(42,110,245,0.4);
    color: var(--blue-soft);
  }

  .consent-field {
    margin-top: 4px;
  }
  .consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--grey-light);
    line-height: 1.6;
  }
  .consent-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 2px;
    accent-color: var(--blue-soft);
    cursor: pointer;
  }
  .consent-label a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .consent-label a:hover {
    color: var(--blue-soft);
  }

  .form-submit {
    margin-top: 16px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(42,110,245,0.4);
    padding: 18px 48px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
  }
  .form-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(42,110,245,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .form-submit:hover {
    border-color: var(--blue-soft);
    box-shadow: 0 0 40px rgba(42,110,245,0.25);
    color: var(--blue-soft);
  }
  .form-submit:hover::before { opacity: 1; }
  .form-submit:active { transform: scale(0.98); }

  .form-note {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 200;
    letter-spacing: 0.2em;
    color: var(--grey);
    margin-top: 24px;
    opacity: 0.6;
  }

  .success-msg {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 48px;
  }
  .success-msg.show { display: flex; }
  .success-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(42,110,245,0.4);
    display: flex; align-items: center; justify-content: center;
    background: rgba(42,110,245,0.05);
    box-shadow: 0 0 30px rgba(42,110,245,0.2);
    font-size: 20px;
  }
  .success-msg p {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    color: rgba(240,239,240,0.7);
  }

  /* ─── FOOTER ─── */
  footer {
    padding: 48px 32px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.04);
  }
  .footer-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 14px;
  }
  footer p {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 200;
    letter-spacing: 0.2em;
    color: var(--grey);
    opacity: 0.55;
  }
  footer a {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 200;
    letter-spacing: 0.14em;
    color: var(--grey-light);
    text-decoration: underline;
    text-underline-offset: 3px;
    opacity: 0.9;
  }
  footer a:hover {
    color: var(--blue-soft);
  }

  /* ─── LEGAL PAGES ─── */
  body.legal-route > section:not(.legal-page),
  body.legal-route > footer {
    display: none !important;
  }
  body.legal-route nav {
    backdrop-filter: blur(20px);
    background: rgba(8,7,24,0.82);
    border-bottom: 1px solid rgba(29,129,212,0.08);
  }
  .legal-page {
    display: none;
    min-height: 100vh;
    padding: 132px 32px 96px;
  }
  .legal-page.active {
    display: block;
  }
  .legal-page-inner {
    max-width: 880px;
    margin: 0 auto;
  }
  .legal-back {
    display: inline-block;
    margin-bottom: 44px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--grey-light);
    text-decoration: none;
  }
  .legal-back:hover {
    color: var(--blue-soft);
  }
  .legal-copy h1 {
    font-family: var(--font-serif);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 300;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 24px;
  }
  .legal-copy h2 {
    font-family: var(--font-serif);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 300;
    line-height: 1.25;
    color: var(--white);
    margin: 52px 0 16px;
  }
  .legal-copy h3 {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue-soft);
    margin: 32px 0 10px;
  }
  .legal-copy p,
  .legal-copy li {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.78;
    color: rgba(240,239,240,0.86);
  }
  .legal-copy p {
    margin-bottom: 18px;
  }
  .legal-copy ul {
    padding-left: 22px;
    margin: 10px 0 22px;
  }
  .legal-copy li {
    margin-bottom: 8px;
  }
  .legal-copy strong {
    color: var(--white);
    font-weight: 400;
  }
  .legal-copy a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .legal-copy a:hover {
    color: var(--blue-soft);
  }

  /* ─── LEGAL MODALS ─── */
  .legal-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 1000;
  }
  .legal-modal.active {
    display: block;
  }
  .legal-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
  }
  .legal-modal-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    width: calc(100% - 32px);
    max-height: 82vh;
    overflow-y: auto;
    margin: 8vh auto 0;
    padding: 28px 24px 24px;
    border-radius: 12px;
    background: #0b1022;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  }
  .legal-modal-content h2 {
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: 300;
    margin-bottom: 16px;
    color: var(--white);
  }
  .legal-modal-content h3 {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 24px 0 10px;
    color: var(--blue-soft);
  }
  .legal-modal-content p,
  .legal-modal-content li {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(240,239,240,0.88);
  }
  .legal-modal-content ul {
    padding-left: 20px;
    margin: 8px 0 8px;
  }
  .legal-modal-content a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .legal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: transparent;
    color: var(--white);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.8;
  }
  .legal-close:hover {
    opacity: 1;
    color: var(--blue-soft);
  }

  /* ─── SCROLL REVEAL ─── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.35s; }
  .reveal-delay-4 { transition-delay: 0.5s; }

  /* ─── MOBILE ─── */
  @media (max-width: 768px) {
    nav { padding: 20px 24px; }
    .nav-logo { font-size: 16px; }
    section { padding: 80px 24px; }
    .screens-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .form-row { grid-template-columns: 1fr; }
    .hero-content { padding: 0 24px; }
    .legal-modal-content { margin-top: 5vh; max-height: 88vh; }
    .legal-page { padding: 112px 24px 72px; }
    .legal-back { margin-bottom: 32px; }
  }

  @media (max-width: 480px) {
    .screens-grid { grid-template-columns: repeat(2, 1fr); }
    .radio-group { gap: 6px; }
  }
