/* ═══════════════════════════════════════════════════════════════════════════
   RFL PRO — CS2 Esports Ecosystem
   Design: Cyber-tactical, aggressive, neon-charged darkness
   ═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* ─────────────────────────────────────────────────────────────────────────────
   CSS Custom Properties
   ───────────────────────────────────────────────────────────────────────────── */
:root {
  /* Colors */
  --bg-void: #050507;
  --bg-deep: #0a0a0f;
  --bg-card: #111118;
  --bg-card-hover: #16161f;
  --bg-elevated: #1a1a24;

  --accent-primary: #a855f7;
  --accent-primary-dim: rgba(168, 85, 247, 0.15);
  --accent-secondary: #22d3ee;
  --accent-secondary-dim: rgba(34, 211, 238, 0.15);
  --accent-gradient: linear-gradient(135deg, #a855f7 0%, #22d3ee 100%);
  --accent-gradient-reverse: linear-gradient(135deg, #22d3ee 0%, #a855f7 100%);

  --text-white: #ffffff;
  --text-light: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(168, 85, 247, 0.3);

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;

  /* Effects */
  --glow-purple: 0 0 40px rgba(168, 85, 247, 0.4);
  --glow-cyan: 0 0 40px rgba(34, 211, 238, 0.4);
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--bg-void);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Background Effects
   ───────────────────────────────────────────────────────────────────────────── */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(168, 85, 247, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: -1;
}

.bg-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
  z-index: -1;
}

.bg-glow--purple {
  background: var(--accent-primary);
  top: -200px;
  right: -200px;
}

.bg-glow--cyan {
  background: var(--accent-secondary);
  bottom: 20%;
  left: -300px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Typography
   ───────────────────────────────────────────────────────────────────────────── */
.heading-display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}

.heading-xl {
  font-size: clamp(3rem, 8vw, 6rem);
}

.heading-lg {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.heading-md {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-muted {
  color: var(--text-muted);
}

.text-dim {
  color: var(--text-dim);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Layout
   ───────────────────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-4xl) 0;
}

.section--hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--header-height) + var(--space-2xl));
  padding-bottom: var(--space-3xl);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Header
   ───────────────────────────────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(5, 5, 7, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  color: var(--text-white);
}

.logo__icon {
  width: 40px;
  height: 40px;
  background: var(--accent-gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.logo__accent {
  color: var(--accent-primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__list {
  display: flex;
  gap: var(--space-lg);
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width var(--transition-base);
}

.nav__link:hover {
  color: var(--text-white);
}

.nav__link:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  transition: var(--transition-base);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Buttons
   ───────────────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--accent-gradient);
  color: var(--text-white);
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-purple);
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn--primary:hover::before {
  opacity: 1;
}

.btn--outline {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--border-accent);
}

.btn--outline:hover {
  background: var(--accent-primary-dim);
  border-color: var(--accent-primary);
}

.btn--large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn__icon {
  width: 20px;
  height: 20px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Hero Section
   ───────────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--accent-primary-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.6s ease forwards;
}

.hero__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero__title {
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.hero__stats {
  display: flex;
  gap: var(--space-2xl);
  animation: fadeInUp 0.6s ease 0.4s forwards;
  opacity: 0;
}

.hero__stat {
  text-align: left;
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--text-white);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-top: var(--space-xs);
}

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

/* Decorative slash */
.hero__slash {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%) rotate(-15deg);
  width: 300px;
  height: 500px;
  background: var(--accent-gradient);
  opacity: 0.03;
  clip-path: polygon(40% 0%, 100% 0%, 60% 100%, 0% 100%);
  pointer-events: none;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Partners
   ───────────────────────────────────────────────────────────────────────────── */
.partners {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(10, 10, 15, 0.5);
}

.partners__label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-lg);
}

.partners__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-2xl);
}

.partners__item {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-dim);
  opacity: 0.6;
  transition: opacity var(--transition-base);
  letter-spacing: 0.05em;
}

.partners__item:hover {
  opacity: 1;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Features
   ───────────────────────────────────────────────────────────────────────────── */
.features__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.features__title {
  margin-bottom: var(--space-md);
}

.features__subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: var(--space-xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  background: var(--accent-primary-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.02em;
}

.feature-card__desc {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.feature-card__list {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.feature-card__list-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--text-light);
}

.feature-card__list-item::before {
  content: '→';
  color: var(--accent-primary);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Stats Section
   ───────────────────────────────────────────────────────────────────────────── */
.stats-section {
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, var(--accent-primary-dim) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, var(--accent-secondary-dim) 0%, transparent 50%);
  pointer-events: none;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  position: relative;
}

.stat-card {
  text-align: center;
  padding: var(--space-xl);
}

.stat-card__value {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-card__value--gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card__label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─────────────────────────────────────────────────────────────────────────────
   How It Works
   ───────────────────────────────────────────────────────────────────────────── */
.how-it-works__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.steps {
  display: flex;
  gap: var(--space-lg);
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 80px;
  right: 80px;
  height: 2px;
  background: var(--border-subtle);
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
}

.step__number {
  width: 80px;
  height: 80px;
  background: var(--bg-card);
  border: 2px solid var(--border-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent-primary);
  position: relative;
  z-index: 1;
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.02em;
}

.step__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 250px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────────────────────────────────────── */
.faq__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq-item:hover {
  border-color: var(--border-accent);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-item__question:hover {
  color: var(--accent-primary);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: transform var(--transition-base);
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CTA Section
   ───────────────────────────────────────────────────────────────────────────── */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(ellipse at center, var(--accent-primary-dim) 0%, transparent 60%);
  pointer-events: none;
}

.cta__content {
  position: relative;
  z-index: 1;
}

.cta__title {
  margin-bottom: var(--space-md);
}

.cta__subtitle {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto var(--space-xl);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  margin-bottom: var(--space-md);
}

.footer__desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.footer__social {
  display: flex;
  gap: var(--space-md);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-base);
}

.footer__social-link:hover {
  background: var(--accent-primary-dim);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.footer__column-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-white);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--accent-primary);
}

.footer__bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-subtle);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-lg);
}

.footer__copyright {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.footer__disclaimers {
  max-width: 600px;
  text-align: right;
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.footer__disclaimer + .footer__disclaimer {
  margin-top: var(--space-sm);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Legal Pages (Terms, Privacy)
   ───────────────────────────────────────────────────────────────────────────── */
.legal-page {
  padding-top: calc(var(--header-height) + var(--space-3xl));
  padding-bottom: var(--space-4xl);
}

.legal-page__header {
  margin-bottom: var(--space-3xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border-subtle);
}

.legal-page__title {
  margin-bottom: var(--space-md);
}

.legal-page__meta {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.legal-page__content {
  max-width: 800px;
}

.legal-page__content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-white);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  letter-spacing: 0.02em;
}

.legal-page__content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-white);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.legal-page__content p {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.legal-page__content ul,
.legal-page__content ol {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.legal-page__content li {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.legal-page__content ul li {
  list-style-type: disc;
}

.legal-page__content ol li {
  list-style-type: decimal;
}

.legal-page__content a {
  color: var(--accent-primary);
  transition: opacity var(--transition-fast);
}

.legal-page__content a:hover {
  opacity: 0.8;
}

.legal-page__content strong {
  color: var(--text-light);
  font-weight: 600;
}

.legal-page__toc {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.legal-page__toc-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: var(--space-md);
  letter-spacing: 0.05em;
}

.legal-page__toc-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.legal-page__toc-link {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.legal-page__toc-link:hover {
  color: var(--accent-primary);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Responsive
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav__list {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero__stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

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

  .stats__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .steps {
    flex-direction: column;
  }

  .steps::before {
    display: none;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__legal {
    flex-direction: column;
    text-align: center;
  }

  .footer__disclaimers {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .btn--large {
    width: 100%;
  }

  .hero__actions {
    flex-direction: column;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Mobile Navigation
   ───────────────────────────────────────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--space-lg);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 999;
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-nav__link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: var(--space-sm) 0;
  transition: color var(--transition-fast);
}

.mobile-nav__link:hover {
  color: var(--text-white);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Animations
   ───────────────────────────────────────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Scroll reveal - JS adds .js-enabled to html, then animations work */
html.js-enabled .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

html.js-enabled .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fallback: without JS, content is visible */
.reveal {
  opacity: 1;
  transform: none;
}
