/* ===== CSS VARIABLES ===== */
:root {
  --background: hsl(240, 20%, 5%);
  --foreground: hsl(0, 0%, 96%);
  --card: hsl(240, 31%, 10%);
  --card-foreground: hsl(210, 40%, 98%);
  --primary: hsl(262, 83%, 58%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(240, 28%, 14%);
  --muted: hsl(240, 31%, 13%);
  --muted-foreground: hsl(215, 20%, 65%);
  --accent: hsl(189, 94%, 43%);
  --accent-foreground: hsl(0, 0%, 100%);
  --border: hsl(240, 28%, 23%);
  --radius: 0.5rem;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg, video { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 2rem;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius);
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  padding: 0.5rem 1.25rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 0.5rem;
}
.btn-primary:hover { background: hsl(262, 83%, 50%); }

.btn-secondary {
  padding: 0.5rem 0.75rem;
  background: var(--secondary);
  color: var(--foreground);
  border-radius: 0.375rem;
}
.btn-secondary:hover { background: hsl(240, 28%, 20%); }

.btn-hero-primary {
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), hsl(189, 94%, 43%, 0.8));
  box-shadow: 0 0 30px hsl(262 83% 58% / 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-hero-primary:hover { transform: scale(1.05); box-shadow: 0 20px 40px hsl(262 83% 58% / 0.4); }

.btn-hero-secondary {
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.btn-hero-secondary:hover { border-color: hsl(262 83% 58% / 0.5); background: var(--card); }

/* ===== HEADER ===== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: hsl(240 20% 5% / 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.4);
  transition: all 0.3s;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.desktop-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}
.desktop-nav a:hover { color: var(--foreground); }
.header-cta { display: flex; align-items: center; gap: 1rem; }
.mobile-menu-btn {
  display: none;
  color: var(--muted-foreground);
  padding: 0.25rem;
}
.mobile-menu-btn:hover { color: var(--foreground); }
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  gap: 1rem;
  border-top: 1px solid var(--border);
}
.mobile-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--foreground); }
.mobile-nav.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem 4rem;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, hsl(262 83% 58% / 0.35) 0%, hsl(189 94% 43% / 0.15) 50%, transparent 70%);
  filter: blur(80px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image: radial-gradient(circle, hsl(215 20% 65% / 0.4) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 64rem;
  margin: 0 auto;
}
.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid hsl(262 83% 58% / 0.4);
  background: hsl(262 83% 58% / 0.12);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.hero-headline {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 0.75rem;
}
.text-white { color: var(--foreground); }
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  font-weight: 300;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.625;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.social-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.avatar-stack { display: flex; }
.avatar {
  width: 2rem; height: 2rem;
  border-radius: 50%;
  border: 2px solid var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: -0.5rem;
  color: #fff;
}
.avatar:first-child { margin-left: 0; }
.stars-row { display: flex; align-items: center; gap: 0.375rem; }
.stars { color: #facc15; font-size: 0.8rem; letter-spacing: 0.1em; }
.stars-yellow { color: #facc15; font-size: 0.875rem; margin-bottom: 1rem; }
.proof-text { font-size: 0.875rem; color: var(--muted-foreground); }
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted-foreground);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 4rem; }
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--foreground);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-sub {
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

/* ===== FEATURES ===== */
.features-section { background: var(--background); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.feature-card:hover { border-color: hsl(262 83% 58% / 0.4); }
.feature-card--large {
  grid-column: span 1;
  border-color: hsl(262 83% 58% / 0.3);
  box-shadow: 0 0 40px hsl(262 83% 58% / 0.08);
}
@media (min-width: 1024px) { .feature-card--large { grid-column: span 2; } }

.feature-card-glow {
  position: absolute;
  top: 0; right: 0;
  width: 16rem; height: 16rem;
  background: radial-gradient(circle, hsl(262 83% 58% / 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.feature-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: hsl(262 83% 58% / 0.15);
  color: var(--primary);
  margin-bottom: 1rem;
}
.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}
.feature-desc {
  color: var(--muted-foreground);
  line-height: 1.625;
  margin-bottom: 1.5rem;
  max-width: 32rem;
}
.chart-preview {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem;
}
.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.chart-label { font-size: 0.75rem; color: var(--muted-foreground); font-weight: 500; }
.chart-growth { font-size: 0.75rem; font-weight: 700; color: var(--accent); }
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.375rem;
  height: 4rem;
}
.bar {
  flex: 1;
  border-radius: 0.125rem;
  background: var(--muted);
}
.bar--accent {
  background: linear-gradient(to top, var(--primary), var(--accent));
}
.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}
.chart-labels span { font-size: 0.75rem; color: var(--muted-foreground); }

.feature-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.75rem;
  background: hsl(262 83% 58% / 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.feature-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}
.feature-card-desc { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.625; }

/* ===== PRICING ===== */
.pricing-section { position: relative; overflow: hidden; }
.pricing-bg-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, hsl(262 83% 58% / 0.08) 0%, hsl(189 94% 43% / 0.05) 50%, transparent 100%);
}
.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  margin-top: 2rem;
}
.toggle-btn {
  padding: 0.375rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  color: var(--muted-foreground);
}
.toggle-btn.active {
  background: var(--primary);
  color: #fff;
}
.toggle-btn:hover:not(.active) { color: var(--foreground); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card--popular {
  border-color: hsl(262 83% 58% / 0.7);
  box-shadow: 0 0 30px hsl(262 83% 58% / 0.15);
}
.popular-badge {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), hsl(189 94% 43% / 0.8));
  white-space: nowrap;
}
.pricing-card-header { margin-bottom: 1.5rem; }
.plan-name { font-size: 1.25rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.25rem; }
.plan-desc { font-size: 0.875rem; color: var(--muted-foreground); }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.price-amount { font-size: 2.25rem; font-weight: 900; color: var(--foreground); font-family: var(--font-heading); }
.price-period { color: var(--muted-foreground); font-size: 0.875rem; }
.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: hsl(189 94% 43% / 0.12);
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.check-icon { color: var(--primary); font-style: normal; flex-shrink: 0; }
.btn-plan {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.2s;
}
.btn-plan--muted { background: var(--muted); color: var(--foreground); }
.btn-plan--muted:hover { background: hsl(240 31% 18%); }
.btn-plan--primary {
  background: linear-gradient(135deg, var(--primary), hsl(189 94% 43% / 0.8));
  color: #fff;
  box-shadow: 0 0 20px hsl(262 83% 58% / 0.3);
}
.btn-plan--primary:hover { opacity: 0.9; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--background); }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
}
.testimonial-quote {
  color: var(--foreground);
  font-size: 0.875rem;
  line-height: 1.625;
  margin-bottom: 1.5rem;
  flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.author-name { font-size: 0.875rem; font-weight: 600; color: var(--foreground); }
.author-role, .author-location { font-size: 0.75rem; color: var(--muted-foreground); }

/* ===== FAQ ===== */
.faq-section { position: relative; overflow: hidden; }
.faq-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  background-image: radial-gradient(circle, hsl(215 20% 65% / 0.6) 1px, transparent 1px);
  background-size: 28px 28px;
}
.faq-container { max-width: 48rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  text-align: left;
  transition: color 0.2s;
  gap: 1rem;
}
.faq-question:hover { color: hsl(215 20% 80%); }
.faq-chevron { flex-shrink: 0; transition: transform 0.2s; color: var(--muted-foreground); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}
.faq-item.open .faq-answer { display: block; }

/* ===== PREORDER ===== */
.preorder-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.preorder-top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
}
.preorder-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, hsl(262 83% 58% / 0.12) 0%, transparent 70%);
}
.preorder-content {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin: 0 auto;
}
.preorder-headline {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--foreground), var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.preorder-sub {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.625;
  margin-bottom: 2rem;
}
.preorder-benefits {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.preorder-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 32rem;
  margin: 0 auto 1rem;
}
@media (min-width: 640px) { .preorder-form { flex-direction: row; } }
.email-input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--foreground);
  font-size: 0.875rem;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}
.email-input::placeholder { color: var(--muted-foreground); }
.email-input:focus { border-color: hsl(262 83% 58% / 0.6); }
.btn-preorder {
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), hsl(189 94% 43% / 0.8));
  box-shadow: 0 0 30px hsl(262 83% 58% / 0.4);
  white-space: nowrap;
  transition: transform 0.2s;
}
.btn-preorder:hover { transform: scale(1.05); }
.preorder-disclaimer { font-size: 0.75rem; color: var(--muted-foreground); }
.preorder-success {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  background: hsl(189 94% 43% / 0.12);
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--background);
  border-top: 1px solid var(--border);
}
.footer-inner { padding-top: 4rem; padding-bottom: 4rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-logo {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-tagline { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.625; max-width: 20rem; }
.social-links { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.5rem; }
.social-icon {
  width: 2.25rem; height: 2.25rem;
  border-radius: 0.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: all 0.2s;
}
.social-icon:hover { color: var(--foreground); border-color: hsl(262 83% 58% / 0.5); }
.footer-col-title { font-size: 0.875rem; font-weight: 600; color: var(--foreground); margin-bottom: 1rem; }
.footer-links-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links-col a { font-size: 0.875rem; color: var(--muted-foreground); transition: color 0.2s; }
.footer-links-col a:hover { color: var(--foreground); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-bottom p { font-size: 0.75rem; color: var(--muted-foreground); }
.launch-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid hsl(262 83% 58% / 0.4);
  background: linear-gradient(135deg, hsl(262 83% 58% / 0.15), hsl(189 94% 43% / 0.15));
  color: var(--primary);
}
.status-dot {
  width: 0.375rem; height: 0.375rem;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -4px 6px -1px rgb(0 0 0 / 0.1);
}
.cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 640px) { .cookie-inner { flex-direction: row; align-items: center; } }
.cookie-text h3 { font-size: 0.875rem; font-weight: 600; color: #111827; margin-bottom: 0.25rem; }
.cookie-text p { font-size: 0.875rem; color: #4b5563; }
.cookie-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.cookie-actions .btn-secondary {
  background: #e5e7eb;
  color: #374151;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
}
.cookie-actions .btn-secondary:hover { background: #d1d5db; }
.cookie-actions .btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 767px) {
  .desktop-nav, .desktop-only { display: none; }
  .mobile-menu-btn { display: flex; }
  .section { padding: 4rem 1.25rem; }
  .hero { padding-top: 5rem; padding-bottom: 3rem; }
  .hero-headline { font-size: 2.25rem; }
  .section-title { font-size: 1.875rem; }
  .preorder-headline { font-size: 2.25rem; }
}
