/* ============================================================
   TAP TURN BLOCK — styles.css
   Mobile-first, retro-arcade premium styling system.
   ============================================================ */

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

/* ── CSS Design Tokens (Custom Properties) ──────────────────── */
:root {
  /* Colors */
  --bg-base:        #060913;
  --bg-surface:     #0f1322;
  --bg-elevated:    #161c30;
  
  --accent-blue:     #309CFE;
  --accent-blue-rgb: 48, 156, 254;
  --accent-green:    #74E943;
  --accent-green-rgb: 116, 233, 67;
  --accent-pink:     #FE4451;
  --accent-pink-rgb:  254, 68, 81;
  --accent-yellow:   #FFE054;
  
  --text-primary:   #ffffff;
  --text-secondary: #94a3b8;
  --text-muted:     #475569;
  
  --border:         rgba(48, 156, 254, 0.15);
  --border-hover:   rgba(48, 156, 254, 0.35);

  /* Gradients */
  --grad-blue:  linear-gradient(135deg, var(--accent-blue), #1e5ba3);
  --grad-neon:  linear-gradient(135deg, var(--accent-blue), var(--accent-green));
  --grad-pink:  linear-gradient(135deg, var(--accent-pink), #ba1b2a);
  --grad-dark:  linear-gradient(180deg, #0f1322 0%, #060913 100%);
  
  /* Shadows & Glows */
  --shadow-card: 0 0 0 1px var(--border), 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-card-hover: 0 0 0 1px var(--border-hover), 0 12px 40px rgba(48, 156, 254, 0.15);
  --glow-blue:   0 0 20px rgba(48, 156, 254, 0.4);
  --glow-green:  0 0 20px rgba(116, 233, 67, 0.45);
  --glow-pink:   0 0 20px rgba(254, 68, 81, 0.45);
  
  /* Radii */
  --radius-appicon: 24px;
  --radius-card:    16px;
  --radius-btn:     12px;
  --radius-pill:    999px;

  /* Spacing */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  24px;
  --sp-6:  32px;
  --sp-7:  48px;
  --sp-8:  64px;
  --sp-9:  80px;
  --sp-10: 96px;

  /* Layout */
  --max-w: 1100px;
  --px:    20px;
  
  /* Header Height */
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--bg-base);
  color: var(--text-primary);
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Retro Scanline & Grid Effect */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(18, 24, 45, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 24, 45, 0.3) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center center;
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(48, 156, 254, 0.08) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

/* Disable scroll when mobile menu is open */
body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

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

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

ul, ol {
  list-style: none;
}

/* Accessibility Focus Outline */
:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 4px;
}

/* ── Typography & Headings ──────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  color: var(--text-secondary);
}

.eyebrow {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-blue);
  margin-bottom: var(--sp-3);
  text-shadow: 0 0 10px rgba(48, 156, 254, 0.3);
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto var(--sp-8);
  padding: 0 var(--px);
}

.section-header h2 {
  font-size: clamp(28px, 6vw, 42px);
  margin-bottom: var(--sp-4);
  background: linear-gradient(135deg, #ffffff 40%, rgba(255,255,255,0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  font-size: clamp(16px, 2.5vw, 18px);
}

/* ── Utility Layout ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--px);
  padding-right: var(--px);
}

.glow-text-blue {
  text-shadow: 0 0 15px rgba(48, 156, 254, 0.6);
}

.glow-text-green {
  text-shadow: 0 0 15px rgba(116, 233, 67, 0.6);
}

.glow-text-pink {
  text-shadow: 0 0 15px rgba(254, 68, 81, 0.6);
}

/* ── Custom Scrollbar ───────────────────────────────────────── */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-surface);
  border: 2px solid var(--bg-base);
  border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-blue);
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 0 var(--sp-6);
  height: 52px;
  border-radius: var(--radius-btn);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--grad-blue);
  color: #ffffff;
  box-shadow: var(--glow-blue), 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  box-shadow: 0 0 25px rgba(48, 156, 254, 0.7), 0 6px 16px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: #ffffff;
}

.btn-secondary:hover {
  background: rgba(48, 156, 254, 0.1);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(48, 156, 254, 0.1);
}

.btn-sm {
  height: 40px;
  padding: 0 var(--sp-4);
  font-size: 13px;
  border-radius: 8px;
}

/* ============================================================
   CUSTOM SMART APP BANNER (Mobile-only)
   ============================================================ */
.smart-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background: rgba(15, 19, 34, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--sp-4);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.smart-banner.show {
  transform: translateY(0);
}

.smart-banner__left {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  max-width: 70%;
}

.smart-banner__close {
  color: var(--text-secondary);
  font-size: 20px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.smart-banner__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.smart-banner__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.smart-banner__info {
  display: flex;
  flex-direction: column;
}

.smart-banner__title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.smart-banner__subtitle {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 1px;
}

.smart-banner__rating {
  color: var(--accent-yellow);
  font-size: 10px;
  margin-top: 1px;
}

.smart-banner__btn {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
  background: var(--accent-blue);
  color: #fff;
  padding: 6px 14px;
  border-radius: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.2s, background 0.2s;
  box-shadow: var(--glow-blue);
}

.smart-banner__btn:hover {
  background: #fff;
  color: var(--bg-base);
  transform: scale(1.05);
}

/* Offset body top when banner is active */
body.banner-active {
  padding-top: 72px;
}
body.banner-active header {
  top: 72px;
}

/* ============================================================
   NAVIGATION HEADER
   ============================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 500;
  transition: all 0.3s ease;
  background: transparent;
}

header.scrolled {
  background: rgba(6, 9, 19, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  box-shadow: 0 2px 10px rgba(48, 156, 254, 0.3);
}

.logo span {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.01em;
}

/* Desktop Menu */
.nav-menu {
  display: none;
}

.nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.2s;
  position: relative;
  padding: 8px 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-blue);
  box-shadow: var(--glow-blue);
  transition: all 0.2s ease;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-download {
  display: none;
}

.nav-download img {
  height: 38px;
  width: auto;
  border-radius: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-download img:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Hamburger (Mobile) */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  z-index: 600;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(6, 9, 19, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 450;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--sp-6);
  padding: 100px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav .nav-link {
  font-size: 22px;
}

.mobile-nav .nav-download {
  display: block;
  margin-top: var(--sp-4);
}

.mobile-nav .nav-download img {
  height: 48px;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
    align-items: center;
    gap: var(--sp-6);
  }
  .nav-download {
    display: block;
  }
  .hamburger {
    display: none;
  }
  .mobile-nav {
    display: none;
  }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + var(--sp-7));
  padding-bottom: var(--sp-10);
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 90vh;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-7);
  align-items: center;
}

.hero-content {
  text-align: center;
}

.hero h1 {
  font-size: clamp(34px, 7vw, 60px);
  margin-bottom: var(--sp-4);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero h1 span {
  display: inline-block;
}

.hero h1 .neon-pink {
  color: var(--accent-pink);
  text-shadow: 0 0 20px rgba(254, 68, 81, 0.4);
}

.hero h1 .neon-blue {
  color: var(--accent-blue);
  text-shadow: 0 0 20px rgba(48, 156, 254, 0.4);
}

.hero h1 .neon-green {
  color: var(--accent-green);
  text-shadow: 0 0 20px rgba(116, 233, 67, 0.4);
}

.hero-description {
  font-size: clamp(16px, 2.5vw, 19px);
  max-width: 500px;
  margin: 0 auto var(--sp-6);
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.app-store-badge {
  display: inline-block;
  transition: transform 0.2s, filter 0.2s;
  border-radius: 12px;
}

.app-store-badge img {
  height: 54px;
  width: auto;
  border-radius: 9px;
}

.app-store-badge:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(48, 156, 254, 0.25);
}

.hero-badge-note {
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-visual-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-8);
  width: 100%;
}

.hero-gameplay-container {
  width: 100%;
  max-width: 260px;
  position: relative;
  perspective: 1000px;
}

.hero-gameplay {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(48, 156, 254, 0.3);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(48, 156, 254, 0.25);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s;
  background-color: var(--bg-surface);
}

.hero-gameplay-container:hover .hero-gameplay {
  transform: rotateY(-12deg) rotateX(8deg) scale(1.05);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.6),
    0 0 50px rgba(48, 156, 254, 0.45);
}

@media (min-width: 768px) {
  .hero-gameplay-container {
    max-width: 300px;
  }
}

.hero-glow-back {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(48, 156, 254, 0.25) 0%, transparent 70%);
  z-index: -1;
  filter: blur(20px);
}

/* Icon Container with glowing tilt */
.hero-appicon-container {
  position: relative;
  perspective: 1000px;
}

.hero-appicon {
  width: 180px;
  height: 180px;
  border-radius: 40px;
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 15px 40px rgba(0, 0, 0, 0.6),
    0 0 50px rgba(48, 156, 254, 0.4);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s;
  background-color: var(--bg-surface);
}

.hero-appicon-container:hover .hero-appicon {
  transform: rotateY(15deg) rotateX(10deg) scale(1.05);
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 25px 60px rgba(0, 0, 0, 0.7),
    0 0 70px rgba(48, 156, 254, 0.6);
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--sp-6);
  }
  .hero-content {
    text-align: left;
  }
  .hero-description {
    margin-left: 0;
  }
  .hero-ctas {
    flex-direction: row;
    align-items: center;
  }
  .hero-appicon {
    width: 260px;
    height: 260px;
    border-radius: 56px;
  }
  .hero-glow-back {
    width: 450px;
    height: 450px;
  }
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
  padding: var(--sp-10) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

.feature-card {
  background: var(--bg-surface);
  border-radius: var(--radius-card);
  padding: var(--sp-6);
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card-hover);
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(48, 156, 254, 0.08);
  border: 1px solid rgba(48, 156, 254, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: var(--sp-5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
}

.feature-card:hover .feature-icon-wrapper {
  background: rgba(48, 156, 254, 0.15);
  border-color: var(--accent-blue);
  box-shadow: 0 0 15px rgba(48, 156, 254, 0.3);
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: var(--sp-2);
  color: #fff;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
}

@media (min-width: 576px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   HOW TO PLAY SECTION
   ============================================================ */
.how-to-play-section {
  padding: var(--sp-10) 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

.step-card {
  background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(15, 19, 34, 0.5) 100%);
  border-radius: var(--radius-card);
  padding: var(--sp-6);
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: rgba(48, 156, 254, 0.2);
  transition: color 0.3s;
}

.step-card:hover .step-number {
  color: var(--accent-blue);
  text-shadow: var(--glow-blue);
}

.step-body h3 {
  font-size: 18px;
  margin-bottom: var(--sp-2);
  color: #fff;
}

.step-body p {
  font-size: 14px;
}

.step-visual-hint {
  display: inline-block;
  margin-top: var(--sp-3);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  background: rgba(48, 156, 254, 0.08);
  border-radius: 4px;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .step-card {
    flex-direction: column;
    gap: var(--sp-3);
  }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: var(--sp-10) 0;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.faq-item {
  background: var(--bg-surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s;
}

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-4) var(--sp-5);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--accent-blue);
}

.faq-chevron {
  font-size: 12px;
  color: var(--text-secondary);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent-blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 var(--sp-5) var(--sp-5);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   FINAL CALL TO ACTION SECTION
   ============================================================ */
.cta-section {
  padding: var(--sp-10) 0;
  position: relative;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  background: radial-gradient(circle at center, #13182b 0%, #0c0f1d 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.cta-container::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(116, 233, 67, 0.08) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  z-index: 1;
}

.cta-container h2 {
  font-size: clamp(26px, 5vw, 36px);
  margin-bottom: var(--sp-3);
  color: #fff;
}

.cta-subtitle {
  font-size: clamp(15px, 2.2vw, 17px);
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto var(--sp-6);
}

.cta-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  z-index: 2;
  position: relative;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #03050a;
  border-top: 1px solid var(--border);
  padding: var(--sp-8) 0 var(--sp-6);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.footer-brand-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.footer-brand-tagline {
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-5);
}

.footer-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.footer-links a:hover {
  color: #fff;
  text-shadow: var(--glow-blue);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.03);
  padding-top: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  font-size: 12px;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============================================================
   LEGAL PAGES COMMON STYLING
   ============================================================ */
.legal-body {
  padding-top: calc(var(--header-h) + var(--sp-6));
  padding-bottom: var(--sp-10);
  max-width: 800px;
  margin: 0 auto;
  padding-left: var(--px);
  padding-right: var(--px);
}

.legal-title {
  font-size: 32px;
  margin-bottom: var(--sp-2);
  color: #fff;
}

.legal-date {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: var(--sp-6);
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--sp-4);
}

.legal-content h2 {
  font-size: 20px;
  color: #fff;
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-3);
}

.legal-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--sp-4);
}

.legal-content ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: var(--sp-4);
  color: var(--text-secondary);
  font-size: 15px;
}

.legal-content li {
  margin-bottom: var(--sp-2);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: var(--accent-blue);
  margin-bottom: var(--sp-5);
  font-weight: 600;
}

.back-link:hover {
  text-shadow: var(--glow-blue);
}
