/* ================================================================
   SuperOAB — AAA Game Landing Page
   2026 · Cinematic Dark + Red/Blue Accent Design
   GSAP + Lenis powered
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

/* ───── Tokens ───── */
:root {
  /* Palette */
  --clr-bg:        #080a12;
  --clr-surface:   #0e1019;
  --clr-surface-2: #151722;
  --clr-surface-3: #1c1f2e;
  --clr-border:    rgba(255,255,255,0.06);

  --clr-red:       #E22534;
  --clr-red-dark:  #B81D2A;
  --clr-blue:      #2A5FCC;
  --clr-blue-light:#4E8FFF;
  --clr-gold:      #E22534;
  --clr-gold-dark: #B81D2A;
  --clr-purple:    #1E4BA8;
  --clr-teal:      #4E8FFF;

  --clr-text:      #e8eaf0;
  --clr-text-dim:  rgba(232,234,240,0.55);
  --clr-text-mute: rgba(232,234,240,0.35);

  /* Glass */
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);

  /* Shadows */
  --shadow-card: 0 8px 32px rgba(0,0,0,0.35);
  --shadow-glow-red: 0 0 60px rgba(226,37,52,0.15);
  --shadow-glow-gold: 0 0 60px rgba(226,37,52,0.15);
  --shadow-glow-blue: 0 0 60px rgba(42,95,204,0.15);

  /* Radius */
  --r-sm: 8px;
  --r:    12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 32px;

  /* Fonts */
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Sizes */
  --container: 1200px;
  --nav-h: 72px;
}

/* ─── Scroll Reveal (CSS-first, JS adds .visible) ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal="up"]    { transform: translateY(48px); }
[data-reveal="down"]  { transform: translateY(-32px); }
[data-reveal="left"]  { transform: translateX(-48px) translateY(0); }
[data-reveal="right"] { transform: translateX(48px) translateY(0); }
[data-reveal="scale"] { transform: scale(0.9) translateY(32px); }
[data-reveal].visible {
  opacity: 1;
  transform: none;
}
/* Stagger delays via CSS custom property */
[data-reveal][style*="--d"] {
  transition-delay: var(--d, 0s);
}

html {
  /* Lenis manages scroll, CSS smooth-scroll is disabled */
  scroll-behavior: auto;
}

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color .25s; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.15; font-weight: 700; }

/* ───── Utilities ───── */
.text-gradient {
  background: linear-gradient(135deg, var(--clr-red), #FF4D5E, var(--clr-blue));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

.section-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ───── Particle Canvas ───── */
#particleCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

/* ================================================================
   NAVIGATION
   ================================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(8,10,18,0.65);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid var(--clr-border);
  transition: all .35s;
}

nav.scrolled {
  background: rgba(8,10,18,0.92);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.logo-icon { font-size: 24px; }
.logo-text .accent,
.nav-logo .accent {
  background: linear-gradient(135deg, var(--clr-red), #FF4D5E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-text .super,
.nav-logo .super {
  background: linear-gradient(135deg, var(--clr-blue), #4D8AFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex; gap: 32px; list-style: none; align-items: center;
}
.nav-links a {
  color: var(--clr-text-dim);
  font-size: 14px; font-weight: 500;
  position: relative;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--clr-red);
  transition: width .3s;
}
.nav-links a:hover { color: var(--clr-text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--clr-red), var(--clr-red-dark)) !important;
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: var(--r-sm);
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: .03em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(226,37,52,0.3);
  transition: all .3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(226,37,52,0.45) !important;
}

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border: none; background: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--clr-text); border-radius: 2px;
  transition: all .3s;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 48px) 24px 64px;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(42,95,204,0.12), transparent),
    radial-gradient(ellipse 60% 40% at 20% 60%, rgba(226,37,52,0.08), transparent),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(42,95,204,0.08), transparent);
  z-index: -2;
}

.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

/* Floating orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); z-index: -1;
  animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb--1 {
  width: 400px; height: 400px;
  background: rgba(42,95,204,0.14);
  top: 10%; left: -5%;
  animation-delay: 0s;
}
.hero-orb--2 {
  width: 300px; height: 300px;
  background: rgba(226,37,52,0.1);
  bottom: 20%; right: -5%;
  animation-delay: -4s;
}
.hero-orb--3 {
  width: 250px; height: 250px;
  background: rgba(42,95,204,0.1);
  top: 40%; right: 10%;
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-content { max-width: 780px; margin-bottom: 56px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--clr-blue-light);
  padding: 8px 20px;
  background: rgba(42,95,204,0.1);
  border: 1px solid rgba(42,95,204,0.25);
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--clr-blue-light);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}

.hero h1,
.hero .split-heading {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--clr-text-dim);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-subtitle strong { color: var(--clr-text); font-weight: 600; }

.hero-store-badges {
  display: flex; gap: 12px;
  justify-content: center; align-items: center;
  flex-wrap: wrap;
}
.store-badge {
  height: 56px; display: flex; align-items: center;
  transition: transform .3s ease, filter .3s ease;
}
.store-badge img {
  height: 56px; width: auto;
}
.store-badge:hover {
  transform: scale(1.05);
}
.store-badge--ios {
  height: 40px; opacity: .5;
  cursor: default;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 5px;
  overflow: hidden;
}
.store-badge--ios svg {
  height: 40px; width: auto;
}

/* ─── Scroll Indicator ─── */
.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  color: var(--clr-text-mute);
  font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--clr-red), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: .3; transform: scaleY(.6); }
}

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--clr-red), var(--clr-red-dark));
  color: #fff;
  font-weight: 800; font-size: 14px;
  letter-spacing: .04em; text-transform: uppercase;
  border-radius: var(--r);
  border: none; cursor: pointer;
  box-shadow: 0 8px 28px rgba(226,37,52,0.3), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0; transition: opacity .3s;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(226,37,52,0.45), var(--shadow-glow-red);
}
.btn-primary:hover::after { opacity: 1; }

.btn-primary--large { padding: 18px 44px; font-size: 15px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  background: var(--glass);
  color: var(--clr-text);
  font-weight: 600; font-size: 14px;
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: all .3s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

/* ─── Phone Mockups ─── */
.hero-showcase { width: 100%; max-width: 900px; margin: 0 auto; }

.phone-group {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 12px;
  perspective: 1200px;
}

.phone-mock { position: relative; will-change: transform; }

.phone-frame {
  border-radius: 28px;
  overflow: hidden;
  background: var(--clr-surface);
  border: 3px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(255,255,255,0.04);
}
.phone-frame img { display: block; }

.phone-mock--left {
  transform: rotateY(12deg) scale(0.88) translateY(-8px);
  z-index: 1;
}
.phone-mock--left .phone-frame img { width: 180px; }

.phone-mock--center {
  transform: scale(1.05);
  z-index: 3;
}
.phone-mock--center .phone-frame {
  border-color: rgba(42,95,204,0.25);
  box-shadow: var(--shadow-card), 0 0 80px rgba(42,95,204,0.12);
}
.phone-mock--center .phone-frame img { width: 200px; }

.phone-mock--right {
  transform: rotateY(-12deg) scale(0.88) translateY(-8px);
  z-index: 1;
}
.phone-mock--right .phone-frame img { width: 180px; }

.phone-glow {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 60px;
  background: radial-gradient(ellipse, rgba(42,95,204,0.25), transparent 70%);
  z-index: -1;
}
.phone-glow--gold {
  background: radial-gradient(ellipse, rgba(226,37,52,0.2), transparent 70%);
}

/* ================================================================
   STATS BAND
   ================================================================ */
.stats-band {
  position: relative; z-index: 2;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 48px 24px;
}

.stats-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-pill { text-align: center; min-width: 160px; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 42px; font-weight: 700;
  background: linear-gradient(135deg, var(--clr-red), #FF4D5E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--clr-text-mute);
  line-height: 1.4;
}

.stat-divider {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, transparent, var(--clr-border), transparent);
}

/* ================================================================
   SECTION HEADINGS
   ================================================================ */
.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--clr-blue);
  padding: 6px 16px;
  background: rgba(78,143,255,0.08);
  border: 1px solid rgba(78,143,255,0.15);
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-label--light {
  color: var(--clr-red);
  background: rgba(226,37,52,0.08);
  border-color: rgba(226,37,52,0.2);
}

.section-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 16px;
}
.section-title--light { color: var(--clr-text); }

/* Word reveal overflow */
.section-title .word {
  overflow: hidden;
  vertical-align: bottom;
}

.section-desc {
  font-size: 17px;
  color: var(--clr-text-dim);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-desc--light { color: var(--clr-text-dim); }

/* ================================================================
   FEATURES
   ================================================================ */
.features {
  position: relative; z-index: 2;
  padding: 100px 0;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 56px;
}

.feature-card {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  text-align: left;
  transition: all .4s cubic-bezier(.22,1,.36,1);
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.feature-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(42,95,204,0.06), rgba(226,37,52,0.03));
  opacity: 0; transition: opacity .4s;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(42,95,204,0.25);
  box-shadow: var(--shadow-card), var(--shadow-glow-blue);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon-wrap {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r);
  background: linear-gradient(135deg, rgba(42,95,204,0.12), rgba(226,37,52,0.08));
  font-size: 26px;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}

.feature-card h3 {
  font-size: 17px; font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -.01em;
  position: relative; z-index: 1;
}

.feature-card p {
  font-size: 14px;
  color: var(--clr-text-dim);
  line-height: 1.65;
  position: relative; z-index: 1;
}

/* ================================================================
   GALLERY
   ================================================================ */
.gallery {
  position: relative; z-index: 2;
  padding: 100px 0;
  text-align: center;
  background: var(--clr-surface);
  overflow: hidden;
}

.gallery-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(42,95,204,0.05) 0, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(226,37,52,0.04) 0, transparent 50%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 56px;
  position: relative; z-index: 1;
}

.gallery-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  transition: all .35s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
.gallery-item img {
  width: 100%; display: block;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.gallery-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(42,95,204,0.18);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover {
  border-color: var(--clr-blue);
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(42,95,204,0.2), var(--shadow-glow-blue);
  z-index: 5;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ─── Lightbox ─── */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(12px);
  z-index: 2000;
  align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn .3s;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 90vh;
  border-radius: var(--r-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  font-size: 36px; color: white;
  cursor: pointer; z-index: 10;
  background: none; border: none;
  opacity: .7; transition: opacity .2s;
}
.lightbox-close:hover { opacity: 1; }

@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* ================================================================
   OFFICES TIMELINE
   ================================================================ */
.offices {
  position: relative; z-index: 2;
  padding: 100px 0;
  text-align: center;
}

.office-timeline {
  position: relative;
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.office-stage {
  position: relative;
  will-change: transform;
}

.stage-number {
  font-family: var(--font-heading);
  font-size: 52px; font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, rgba(226,37,52,0.15), rgba(226,37,52,0.03));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stage-card {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all .4s cubic-bezier(.22,1,.36,1);
}
.stage-card:hover {
  transform: translateY(-6px);
  border-color: rgba(226,37,52,0.2);
  box-shadow: var(--shadow-card), var(--shadow-glow-red);
}

.stage-card img {
  width: 100%; aspect-ratio: 1;
  object-fit: cover;
  border-bottom: 1px solid var(--clr-border);
}

.stage-info {
  padding: 20px 16px;
}
.stage-info h4 {
  font-size: 16px; font-weight: 700;
  margin-bottom: 6px;
}
.stage-info p {
  font-size: 13px;
  color: var(--clr-text-dim);
  line-height: 1.5;
}

/* ================================================================
   OFFICE DIVERSITY SHOWCASE
   ================================================================ */
.office-showcase {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.office-showcase::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(42,95,204,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.showcase-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.showcase-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: pointer;
  transition: all .45s cubic-bezier(.22,1,.36,1);
  border: 1px solid var(--clr-border);
  background: var(--clr-surface-2);
}
.showcase-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  box-shadow: 
    inset 0 0 30px rgba(226,37,52,0.15),
    0 8px 40px rgba(226,37,52,0.2),
    0 0 80px rgba(42,95,204,0.1);
}
.showcase-card:hover::after {
  opacity: 1;
}
.showcase-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(226,37,52,0.3);
  z-index: 2;
}

.showcase-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
  display: block;
}
.showcase-card:hover img {
  transform: scale(1.08);
}

.showcase-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 12px 12px;
  background: linear-gradient(0deg, rgba(10,12,24,0.95) 0%, rgba(10,12,24,0.6) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: all .4s ease;
}
.showcase-overlay span {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--clr-text);
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(226,37,52,0.15);
  border: 1px solid rgba(226,37,52,0.25);
  backdrop-filter: blur(6px);
  transition: all .3s ease;
}
.showcase-card:hover .showcase-overlay span {
  background: rgba(226,37,52,0.3);
  border-color: rgba(226,37,52,0.5);
  box-shadow: 0 0 12px rgba(226,37,52,0.25);
}

.showcase-counter {
  margin-top: 48px;
  text-align: center;
  font-size: 15px;
  color: var(--clr-text-dim);
  letter-spacing: .02em;
}
.counter-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  background: linear-gradient(135deg, var(--clr-red), var(--clr-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 1024px) {
  .showcase-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
}
@media (max-width: 768px) {
  .showcase-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .showcase-overlay span { font-size: 11px; }
}
@media (max-width: 480px) {
  .showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .showcase-overlay span { font-size: 10px; padding: 3px 6px; }
  .counter-number { font-size: 18px; }
}

/* ================================================================
   DOWNLOAD / CTA
   ================================================================ */
.download {
  position: relative; z-index: 2;
  padding: 100px 0;
  overflow: hidden;
}

.download-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(226,37,52,0.03), transparent 60%),
    linear-gradient(315deg, rgba(42,95,204,0.04), transparent 60%);
}

.download-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.download-content { text-align: left; }

.download-badges {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 20px;
}

.store-badge {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 24px;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--r);
  transition: all .3s;
  color: var(--clr-text);
}
.store-badge:hover {
  border-color: var(--clr-red);
  box-shadow: 0 4px 16px rgba(226,37,52,0.12);
  transform: translateY(-2px);
}
.store-badge svg { flex-shrink: 0; }
.store-badge small {
  font-size: 10px; display: block;
  color: var(--clr-text-mute);
  text-transform: uppercase; letter-spacing: .08em;
}
.store-badge span { font-weight: 700; font-size: 16px; }

.store-badge--disabled {
  opacity: .45; cursor: not-allowed; pointer-events: none;
}

.download-visual {
  display: flex; justify-content: center;
}

.phone-mock--solo .phone-frame img { width: 260px; }
.phone-mock--solo .phone-frame {
  border-color: rgba(226,37,52,0.15);
  box-shadow: var(--shadow-card), 0 0 100px rgba(226,37,52,0.12);
}

/* ================================================================
   CTA STRIP
   ================================================================ */
.cta-strip {
  position: relative; z-index: 2;
  padding: 80px 24px;
  text-align: center;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.cta-strip-inner { max-width: 700px; margin: 0 auto; }

.cta-strip h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}

.cta-strip p {
  font-size: 16px;
  color: var(--clr-text-dim);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  position: relative; z-index: 2;
  padding: 64px 24px 24px;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 700;
  margin-bottom: 16px;
}
.footer-logo .accent {
  background: linear-gradient(135deg, var(--clr-red), #FF4D5E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-logo .super {
  background: linear-gradient(135deg, var(--clr-blue), #4D8AFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-brand p {
  font-size: 14px; color: var(--clr-text-dim);
  line-height: 1.6; max-width: 320px;
}

.footer-col h4 {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--clr-text-mute);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px; color: var(--clr-text-dim);
  transition: color .25s;
}
.footer-col a:hover { color: var(--clr-red); }

.footer-contact {
  display: flex; flex-direction: column; gap: 10px;
}
.footer-contact a, .footer-contact span {
  font-size: 14px; color: var(--clr-text-dim);
}
.footer-contact a:hover { color: var(--clr-red); }

.footer-bottom {
  max-width: var(--container);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--clr-border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--clr-text-mute);
}
.footer-bottom a { color: var(--clr-text-dim); }
.footer-bottom a:hover { color: var(--clr-red); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(8,10,18,0.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--clr-border);
  }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }

  .phone-mock--left, .phone-mock--right {
    display: none;
  }
  .phone-mock--center {
    transform: scale(1);
  }
  .phone-mock--center .phone-frame img { width: 220px; }

  .stats-inner { gap: 24px; }
  .stat-divider { display: none; }

  .download-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .download-content { text-align: center; }
  .download-badges { justify-content: center; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .hero h1,
  .hero .split-heading { font-size: 32px; }

  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 8px; }
  .office-timeline { grid-template-columns: 1fr 1fr; }

  .hero-store-badges { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .stat-number { font-size: 32px; }

  .scroll-indicator { display: none; }
}

/* ================================================================
   PAGES — backward compat for secondary pages
   ================================================================ */
.page-container,
.legal-container {
  max-width: 800px;
  margin: calc(var(--nav-h) + 40px) auto 80px;
  padding: 0 24px;
}

.page-container h1,
.legal-container h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 24px;
}

.page-container h2,
.legal-container h2 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
}

.page-container p,
.legal-container p {
  color: var(--clr-text-dim);
  line-height: 1.8;
  margin-bottom: 16px;
}

.page-container ul,
.legal-container ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.page-container li,
.legal-container li {
  color: var(--clr-text-dim);
  margin-bottom: 8px;
  line-height: 1.7;
}

.page-container a,
.legal-container a {
  color: var(--clr-blue-light);
}
.page-container a:hover,
.legal-container a:hover {
  text-decoration: underline;
}

/* ================================================================
   SECONDARY PAGES — Premium Design System
   ================================================================ */

/* ─── Page Hero (Secondary Pages) ─── */
.page-hero {
  position: relative;
  text-align: center;
  padding: calc(var(--nav-h) + 64px) 24px 56px;
  overflow: hidden;
  z-index: 1;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 10%, rgba(42,95,204,0.12), transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(226,37,52,0.06), transparent 60%);
  z-index: -1;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
}

.page-hero .eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--clr-blue-light);
  padding: 6px 18px;
  background: rgba(42,95,204,0.1);
  border: 1px solid rgba(42,95,204,0.2);
  border-radius: 100px;
  margin-bottom: 20px;
  animation: fadeInDown 0.6s ease-out both;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 30%, var(--clr-blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInDown 0.7s ease-out 0.1s both;
}

.page-hero p {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--clr-text-dim);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  animation: fadeInDown 0.8s ease-out 0.2s both;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Legal Page Layout ─── */
.legal-page {
  max-width: 820px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.legal-header {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--clr-border);
}

.legal-header .tag,
.tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--clr-red);
  padding: 5px 14px;
  background: rgba(226,37,52,0.08);
  border: 1px solid rgba(226,37,52,0.18);
  border-radius: 100px;
  margin-bottom: 16px;
}

.legal-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--clr-text);
  margin-bottom: 8px;
}

.legal-meta {
  font-size: 13px;
  color: var(--clr-text-mute);
  font-weight: 500;
}

/* ─── Legal Highlight Box ─── */
.legal-highlight {
  background: linear-gradient(135deg, rgba(42,95,204,0.06), rgba(226,37,52,0.04));
  border: 1px solid rgba(42,95,204,0.15);
  border-left: 4px solid var(--clr-blue);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  margin-bottom: 40px;
}
.legal-highlight p {
  font-size: 15px;
  color: var(--clr-text-dim);
  line-height: 1.7;
  margin: 0;
}
.legal-highlight a {
  color: var(--clr-blue-light);
  font-weight: 600;
  transition: color .2s;
}
.legal-highlight a:hover { text-decoration: underline; }

/* ─── Legal Sections ─── */
.legal-section {
  margin-bottom: 36px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  animation: fadeInUp 0.5s ease-out both;
}
.legal-section:last-child { border-bottom: none; }

.legal-section h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 14px;
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.legal-section h2::before {
  content: '';
  width: 4px; height: 20px;
  background: linear-gradient(180deg, var(--clr-blue), var(--clr-red));
  border-radius: 4px;
  flex-shrink: 0;
}

.legal-section p {
  font-size: 15px;
  color: var(--clr-text-dim);
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-section p:last-child { margin-bottom: 0; }

.legal-section ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 14px;
}
.legal-section li {
  position: relative;
  font-size: 15px;
  color: var(--clr-text-dim);
  line-height: 1.75;
  padding-left: 20px;
  margin-bottom: 10px;
}
.legal-section li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  background: var(--clr-blue);
  border-radius: 50%;
}

.legal-section a {
  color: var(--clr-blue-light);
  font-weight: 500;
  transition: color .2s;
}
.legal-section a:hover { text-decoration: underline; }

/* ─── Legal Card (Contact info cards) ─── */
.legal-card {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  margin-top: 16px;
}
.legal-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.legal-card p:last-child { margin-bottom: 0; }
.legal-card a {
  color: var(--clr-blue-light);
  font-weight: 500;
}
.legal-card a:hover { text-decoration: underline; }

/* ─── Deletion Steps ─── */
.deletion-steps {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}
.deletion-step {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  transition: all .3s ease;
}
.deletion-step:hover {
  border-color: rgba(42,95,204,0.2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.deletion-step strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 8px;
}
.deletion-step p {
  font-size: 14px;
  color: var(--clr-text-dim);
  line-height: 1.7;
  margin: 0;
}
.deletion-step a {
  color: var(--clr-blue-light);
  font-weight: 500;
}

/* ─── Support / FAQ ─── */
.support-content {
  max-width: 820px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .3s ease;
}
.faq-item:hover {
  border-color: rgba(42,95,204,0.15);
}
.faq-item.open {
  border-color: rgba(42,95,204,0.25);
  box-shadow: 0 4px 24px rgba(42,95,204,0.08);
}

.faq-question {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s;
  user-select: none;
}
.faq-question:hover { color: var(--clr-blue-light); }
.faq-question .arrow {
  font-size: 12px;
  color: var(--clr-text-mute);
  transition: transform .3s cubic-bezier(.22,1,.36,1);
  flex-shrink: 0;
}
.faq-item.open .faq-question .arrow {
  transform: rotate(180deg);
  color: var(--clr-blue-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.22,1,.36,1),
              padding .4s cubic-bezier(.22,1,.36,1);
  padding: 0 24px;
  font-size: 14px;
  color: var(--clr-text-dim);
  line-height: 1.75;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}
.faq-answer a {
  color: var(--clr-blue-light);
  font-weight: 500;
}

/* ─── Contact Page ─── */
.contact-info-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.contact-info-card {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all .3s ease;
}
.contact-info-card:hover {
  border-color: rgba(42,95,204,0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card), var(--shadow-glow-blue);
}
.contact-info-card .ci-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.contact-info-card h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.contact-info-card p {
  font-size: 14px;
  color: var(--clr-text-dim);
}
.contact-info-card a {
  color: var(--clr-blue-light);
  font-weight: 500;
  transition: color .2s;
}
.contact-info-card a:hover { text-decoration: underline; }

.contact-card {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--clr-surface-3);
  border: 1px solid var(--clr-border);
  border-radius: var(--r);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 14px;
  transition: all .3s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--clr-blue);
  box-shadow: 0 0 0 3px rgba(42,95,204,0.15);
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
  font-size: 13px;
  color: var(--clr-text-dim);
  line-height: 1.6;
}
.contact-consent input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--clr-blue);
  flex-shrink: 0;
}
.contact-consent a {
  color: var(--clr-blue-light);
  font-weight: 500;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--clr-red), var(--clr-red-dark));
  color: #fff;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(226,37,52,0.3);
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
}
.btn-submit:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(226,37,52,0.45), var(--shadow-glow-red);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.contact-privacy-note {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
}
.contact-privacy-note p {
  font-size: 13px;
  color: var(--clr-text-mute);
  line-height: 1.7;
  margin-bottom: 10px;
}
.contact-privacy-note p:last-child { margin-bottom: 0; }
.contact-privacy-note code {
  background: var(--clr-surface-2);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--clr-blue-light);
}
.contact-privacy-note a {
  color: var(--clr-blue-light);
  font-weight: 500;
}

.footer-contact-item {
  font-size: 14px;
  color: var(--clr-text-dim);
  margin-bottom: 10px;
  line-height: 1.6;
}
.footer-contact-item a { color: var(--clr-text-dim); transition: color .2s; }
.footer-contact-item a:hover { color: var(--clr-red); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Staggered legal sections animation ─── */
.legal-section:nth-child(1)  { animation-delay: 0.05s; }
.legal-section:nth-child(2)  { animation-delay: 0.10s; }
.legal-section:nth-child(3)  { animation-delay: 0.15s; }
.legal-section:nth-child(4)  { animation-delay: 0.20s; }
.legal-section:nth-child(5)  { animation-delay: 0.25s; }
.legal-section:nth-child(6)  { animation-delay: 0.30s; }
.legal-section:nth-child(7)  { animation-delay: 0.35s; }
.legal-section:nth-child(8)  { animation-delay: 0.40s; }
.legal-section:nth-child(9)  { animation-delay: 0.45s; }
.legal-section:nth-child(10) { animation-delay: 0.50s; }
.legal-section:nth-child(11) { animation-delay: 0.55s; }
.legal-section:nth-child(12) { animation-delay: 0.60s; }
.legal-section:nth-child(13) { animation-delay: 0.65s; }

/* ─── Responsive for secondary pages ─── */
@media (max-width: 600px) {
  .page-hero { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 40px; }
  .page-hero h1 { font-size: 28px; }
  .legal-page { margin-bottom: 48px; }
  .legal-header h1 { font-size: 22px; }
  .legal-highlight { padding: 18px 20px; }
  .legal-section { padding: 20px 0; }
  .contact-card { padding: 24px 20px; }
  .contact-info-strip { grid-template-columns: 1fr; }
  .support-content { margin-bottom: 48px; }
}
