:root {
  --bg-dark: #0A0B14;
  --bg-darker: #06070D;
  --bg-surface: #141726;
  --bg-surface-elevated: #1C2035;
  --bg-glass: rgba(20, 23, 38, 0.75);
  --border-subtle: #242942;
  --border-glow: rgba(255, 87, 34, 0.35);

  --fire-orange: #FF5722;
  --fire-amber: #FF9800;
  --fire-yellow: #FFC107;
  --fire-gradient: linear-gradient(135deg, #FF5722 0%, #FF9800 50%, #FFC107 100%);
  --fire-glow: 0 0 25px rgba(255, 87, 34, 0.4);

  --cyan-accent: #00E5FF;
  --cyan-glow: 0 0 20px rgba(0, 229, 255, 0.35);
  --green-accent: #00E676;
  --green-glow: 0 0 20px rgba(0, 230, 118, 0.35);
  --red-accent: #FF1744;

  --text-white: #FFFFFF;
  --text-dim: #D1D5E8;
  --text-muted: #8E92B0;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(255, 87, 34, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(0, 229, 255, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(255, 152, 0, 0.06) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
}

a {
  color: var(--fire-amber);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--fire-yellow);
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
  position: relative;
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 11, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: var(--fire-glow);
  object-fit: cover;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: -0.5px;
}

.brand-name .fire-badge {
  background: var(--fire-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 24px;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--fire-gradient);
  color: #0A0B14 !important;
  box-shadow: 0 4px 20px rgba(255, 87, 34, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 87, 34, 0.65);
}

.btn-secondary {
  background: var(--bg-surface-elevated);
  color: var(--text-white);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  border-color: var(--fire-amber);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-playstore {
  background: #000000;
  color: #FFFFFF !important;
  border: 1px solid #333852;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.5);
}

.btn-playstore:hover {
  border-color: var(--green-accent);
  transform: translateY(-2px);
  box-shadow: var(--green-glow);
}

.btn-playstore svg {
  width: 26px;
  height: 26px;
}

.playstore-sub {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  line-height: 1;
}

.playstore-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

/* Badges & Tags */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 87, 34, 0.12);
  border: 1px solid rgba(255, 87, 34, 0.3);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--fire-amber);
  margin-bottom: 20px;
}

.badge-pill.cyan {
  background: rgba(0, 229, 255, 0.12);
  border-color: rgba(0, 229, 255, 0.3);
  color: var(--cyan-accent);
}

/* Hero Section */
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -1px;
}

.hero-content h1 .gradient-text {
  background: var(--fire-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-dim);
  margin-bottom: 34px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--text-white);
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Hero Phone Mockup */
.hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}

.mockup-frame {
  width: 100%;
  max-width: 360px;
  background: linear-gradient(180deg, #1C2035 0%, #101221 100%);
  border: 2px solid var(--border-subtle);
  border-radius: 36px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 87, 34, 0.2);
  padding: 24px 20px;
  position: relative;
  z-index: 2;
}

.mockup-screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.streak-counter-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 87, 34, 0.15);
  border: 1px solid rgba(255, 87, 34, 0.4);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 800;
  color: var(--fire-yellow);
}

.streak-counter-pill img {
  width: 22px;
  height: 22px;
  animation: pulse-fire 2s infinite ease-in-out;
}

@keyframes pulse-fire {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); filter: drop-shadow(0 0 10px #FF5722); }
}

.lives-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #FF1744;
  font-weight: 800;
  font-size: 0.9rem;
}

.mockup-question-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 16px;
}

.mockup-tag {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--fire-amber);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mockup-question-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.35;
  margin-bottom: 16px;
}

.mockup-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dim);
}

.mockup-option.correct {
  border-color: var(--green-accent);
  background: rgba(0, 230, 118, 0.12);
  color: var(--text-white);
}

.mockup-footer-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  font-size: 0.85rem;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: rgba(20, 23, 38, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.floating-badge.badge-left {
  left: -35px;
  bottom: 80px;
  animation: float-slow 4s ease-in-out infinite alternate;
}

.floating-badge.badge-right {
  right: -25px;
  top: 60px;
  animation: float-slow 5s ease-in-out infinite alternate-reverse;
}

@keyframes float-slow {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

.floating-badge img {
  width: 32px;
  height: 32px;
}

.floating-badge .title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
}

.floating-badge .subtitle {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 55px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Game Modes Grid */
.modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mode-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mode-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: var(--transition);
}

.mode-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.mode-card.daily:hover::before { background: var(--fire-gradient); }
.mode-card.endless:hover::before { background: var(--cyan-accent); }
.mode-card.challenge:hover::before { background: var(--green-accent); }

.mode-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--bg-surface-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid var(--border-subtle);
}

.mode-icon-wrapper img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.mode-card h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.mode-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 22px;
  flex-grow: 1;
}

.mode-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
}

.mode-perks li {
  font-size: 0.88rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Powerups / Lifelines Grid */
.powerups-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.powerup-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  text-align: center;
  transition: var(--transition);
}

.powerup-card:hover {
  transform: translateY(-5px);
  border-color: var(--fire-amber);
}

.powerup-card img {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  object-fit: contain;
}

.powerup-card h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.powerup-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Interactive Teaser Widget */
.teaser-section {
  background: linear-gradient(180deg, rgba(20, 23, 38, 0.6) 0%, rgba(10, 11, 20, 0.9) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.teaser-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  max-width: 680px;
  margin: 0 auto;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.teaser-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.teaser-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  color: var(--fire-yellow);
  font-family: var(--font-heading);
}

.teaser-progress {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.teaser-question-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 26px;
  line-height: 1.35;
}

.teaser-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.teaser-btn-option {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.teaser-btn-option:hover:not(:disabled) {
  border-color: var(--fire-amber);
  background: rgba(255, 152, 0, 0.08);
  color: var(--text-white);
}

.teaser-btn-option.correct {
  background: rgba(0, 230, 118, 0.15) !important;
  border-color: var(--green-accent) !important;
  color: #FFFFFF !important;
}

.teaser-btn-option.wrong {
  background: rgba(255, 23, 68, 0.15) !important;
  border-color: var(--red-accent) !important;
  color: #FFFFFF !important;
}

.teaser-feedback-card {
  display: none;
  background: rgba(10, 11, 20, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-top: 16px;
}

.teaser-feedback-card.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.teaser-fact-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--fire-amber);
  margin-bottom: 4px;
}

.teaser-fact-text {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 14px;
}

/* Topics Showcase */
.topics-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.topic-tag {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  font-size: 0.95rem;
}

.topic-tag:hover {
  transform: translateY(-3px);
  border-color: var(--fire-amber);
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.2);
}

/* FAQ Section */
.faq-grid {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 22px 24px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-icon {
  transition: var(--transition);
  color: var(--fire-amber);
}

/* Legal & Support Pages Styling (Privacy, Terms, Delete Account) */
.legal-wrapper {
  padding: 60px 0 100px;
}

.legal-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.legal-header h1 {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.legal-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.legal-content {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.legal-content h2 {
  font-size: 1.6rem;
  margin-top: 36px;
  margin-bottom: 16px;
  color: var(--text-white);
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 8px;
}

.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--fire-amber);
}

.legal-content p, .legal-content ul, .legal-content ol {
  margin-bottom: 18px;
  color: var(--text-dim);
  font-size: 1.02rem;
}

.legal-content ul, .legal-content ol {
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-callout {
  background: rgba(255, 87, 34, 0.08);
  border-left: 4px solid var(--fire-orange);
  padding: 20px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 28px 0;
}

.legal-callout.cyan {
  background: rgba(0, 229, 255, 0.08);
  border-left-color: var(--cyan-accent);
}

.legal-callout.green {
  background: rgba(0, 230, 118, 0.08);
  border-left-color: var(--green-accent);
}

/* Forms (Account Deletion Portal) */
.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--fire-amber);
  box-shadow: 0 0 10px rgba(255, 152, 0, 0.3);
}

.form-helper {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.form-status {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-top: 20px;
  display: none;
  font-weight: 600;
}

.form-status.success {
  display: block;
  background: rgba(0, 230, 118, 0.15);
  border: 1px solid var(--green-accent);
  color: #FFFFFF;
}

.form-status.error {
  display: block;
  background: rgba(255, 23, 68, 0.15);
  border: 1px solid var(--red-accent);
  color: #FFFFFF;
}

/* Footer */
.site-footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 35px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 14px;
  max-width: 320px;
}

.footer-col h5 {
  font-size: 1rem;
  margin-bottom: 18px;
  color: var(--text-white);
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--text-white);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .modes-grid {
    grid-template-columns: 1fr;
  }
  .powerups-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .section {
    padding: 60px 0;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: var(--bg-surface-elevated);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border-subtle);
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .floating-badge {
    display: none;
  }
  .legal-content {
    padding: 28px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}
