/* ============================================
   CortiWell™ — Total Burnout Reset Package
   Premium Landing Page Styles
   ============================================ */

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

/* ---------- Design Tokens ---------- */
:root {
  /* Brand Colors */
  --brand-green: #0C2C59;
  --brand-teal: #1E3A8A;
  --brand-navy: #0C2C59;
  --brand-dark: #051329;
  --brand-surface: #091E3D;
  --brand-card: #0F2D59;
  --brand-card-hover: #153E78;
  --brand-accent: #E2C07D;
  --brand-accent-2: #C5A059;
  --brand-gold: #D4AF37;
  --brand-warm: #E2C07D;
  --brand-purple: #1D4ED8;
  --brand-pink: #1E3A8A;

  /* Text */
  --text-primary: #F0F6FC;
  --text-secondary: #A0B3D6;
  --text-muted: #5C7299;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #F6E2BB, #E2C07D, #C5A059);
  --gradient-gold: linear-gradient(135deg, #E2C07D, #C5A059);
  --gradient-hero: linear-gradient(180deg, #051329 0%, #091E3D 40%, #0F2D59 100%);
  --gradient-glow: radial-gradient(ellipse at center, rgba(226, 192, 125, 0.12) 0%, transparent 70%);
  --gradient-morning: linear-gradient(135deg, #0C2C59 0%, #1E3A8A 100%);
  --gradient-afternoon: linear-gradient(135deg, #E2C07D 0%, #C5A059 100%);
  --gradient-brain: linear-gradient(135deg, #1D4ED8 0%, #1E3A8A 100%);
  --gradient-night: linear-gradient(135deg, #0A192F 0%, #0C2C59 100%);

  /* 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;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-glow-green: 0 0 40px rgba(226, 192, 125, 0.2);
  --shadow-glow-teal: 0 0 40px rgba(197, 160, 89, 0.25);
  --shadow-float: 0 20px 60px rgba(0, 0, 0, 0.6);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--brand-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.1;
}

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

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

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

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

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

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--brand-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--brand-teal);
  border-radius: var(--radius-full);
}

/* ---------- Animated Background Orbs ---------- */
.bg-orbs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  animation: orbFloat 20s ease-in-out infinite;
}

.bg-orb--1 {
  width: 600px;
  height: 600px;
  background: var(--brand-accent);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.bg-orb--2 {
  width: 500px;
  height: 500px;
  background: var(--brand-accent-2);
  top: 40%;
  right: -200px;
  animation-delay: -7s;
}

.bg-orb--3 {
  width: 400px;
  height: 400px;
  background: var(--brand-purple);
  bottom: 10%;
  left: 20%;
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(50px, -30px) scale(1.1); }
  50% { transform: translate(-30px, 50px) scale(0.9); }
  75% { transform: translate(40px, 20px) scale(1.05); }
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: all 0.4s var(--ease-out-expo);
}

.nav--scrolled {
  background: rgba(8, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 192, 125, 0.1);
  padding: var(--space-sm) 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav__logo {
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s ease;
}

.nav__logo img {
  height: 60px;
  width: auto;
  border-radius: var(--radius-sm);
  transition: transform 0.3s ease;
}

.nav__logo:hover {
  transform: translateX(-50%) scale(1.05);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-brand);
  transition: width 0.3s var(--ease-out-expo);
}

.nav__links a:hover {
  color: var(--text-primary);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  padding: 10px 24px;
  background: var(--gradient-brand);
  border: none;
  border-radius: var(--radius-full);
  color: var(--brand-dark);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  box-shadow: 0 0 20px rgba(226, 192, 125, 0.3);
}

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(226, 192, 125, 0.5);
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 6px 0;
  transition: all 0.3s ease;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 20px;
  background: rgba(226, 192, 125, 0.1);
  border: 1px solid rgba(226, 192, 125, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-accent);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s var(--ease-out-expo);
}

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

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

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.1s both;
}

.hero__title .line {
  display: block;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.2s both;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.3s both;
}

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 16px 36px;
  background: var(--gradient-brand);
  border: none;
  border-radius: var(--radius-full);
  color: var(--brand-dark);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: var(--shadow-glow-green);
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 60px rgba(226, 192, 125, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 16px 32px;
  background: transparent;
  border: 2px solid rgba(226, 192, 125, 0.3);
  border-radius: var(--radius-full);
  color: var(--brand-accent);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
}

.btn-secondary:hover {
  border-color: var(--brand-accent);
  background: rgba(226, 192, 125, 0.05);
  transform: translateY(-2px);
}

/* Hero 3D floating products */
.hero__visual {
  position: relative;
  perspective: 1200px;
  height: 550px;
  animation: fadeIn 1s var(--ease-out-expo) 0.4s both;
}

.hero__product-float {
  position: absolute;
  transition: all 0.6s var(--ease-spring);
  animation: float3d 6s ease-in-out infinite;
  cursor: pointer;
}

.hero__product-float img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  transition: all 0.4s var(--ease-out-expo);
}

.hero__product-float:hover img {
  transform: scale(1.08);
  box-shadow: 0 30px 80px rgba(226, 192, 125, 0.3);
}

.hero__product-float:nth-child(1) {
  top: 5%;
  left: 10%;
  width: 150px;
  z-index: 3;
  animation-delay: 0s;
}

.hero__product-float:nth-child(2) {
  top: 0%;
  right: 15%;
  width: 130px;
  z-index: 2;
  animation-delay: -1.2s;
}

.hero__product-float:nth-child(3) {
  top: 40%;
  left: 5%;
  width: 120px;
  z-index: 1;
  animation-delay: -2.4s;
}

.hero__product-float:nth-child(4) {
  top: 35%;
  right: 5%;
  width: 140px;
  z-index: 4;
  animation-delay: -3.6s;
}

.hero__product-float:nth-child(5) {
  bottom: 5%;
  left: 30%;
  width: 160px;
  z-index: 5;
  animation-delay: -4.8s;
}

@keyframes float3d {
  0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
  25% { transform: translateY(-15px) rotateX(3deg) rotateY(-5deg); }
  50% { transform: translateY(-5px) rotateX(-2deg) rotateY(3deg); }
  75% { transform: translateY(-20px) rotateX(4deg) rotateY(-3deg); }
}

/* Hero glow ring */
.hero__glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 2px solid rgba(226, 192, 125, 0.1);
  animation: ringPulse 4s ease-in-out infinite;
}

.hero__glow-ring::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(197, 160, 89, 0.05);
  animation: ringPulse 4s ease-in-out infinite reverse;
}

@keyframes ringPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.6; }
}

/* Hero stats */
.hero__stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.5s both;
}

.hero__stat {
  text-align: left;
}

.hero__stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* ---------- Scrolling Marquee ---------- */
.marquee {
  position: relative;
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(226, 192, 125, 0.08);
  border-bottom: 1px solid rgba(226, 192, 125, 0.08);
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: var(--space-3xl);
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.marquee__item .icon {
  font-size: 1.4rem;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- "From Tired to Energized" Timeline ---------- */
.timeline {
  position: relative;
  padding: var(--space-4xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-md);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Timeline track */
.timeline__track {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand-accent), var(--brand-accent-2), var(--brand-purple), #4a2d7a);
  transform: translateX(-50%);
}

.timeline__line-progress {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 0%;
  background: var(--gradient-brand);
  transform: translateX(-50%);
  border-radius: var(--radius-full);
  transition: height 0.1s linear;
  box-shadow: var(--shadow-glow-green);
}

/* Timeline nodes */
.timeline__node {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-4xl);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out-expo);
}

.timeline__node.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline__node:nth-child(even) .timeline__content {
  grid-column: 3;
}
.timeline__node:nth-child(even) .timeline__image {
  grid-column: 1;
  grid-row: 1;
}

.timeline__dot {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 2;
  justify-self: center;
  box-shadow: 0 0 30px rgba(226, 192, 125, 0.3);
  transition: transform 0.4s var(--ease-spring);
}

.timeline__dot:hover {
  transform: scale(1.15);
}

.timeline__dot--morning {
  background: var(--gradient-morning);
}
.timeline__dot--afternoon {
  background: var(--gradient-afternoon);
}
.timeline__dot--brain {
  background: var(--gradient-brain);
}
.timeline__dot--night {
  background: var(--gradient-night);
}

.timeline__content {
  background: var(--brand-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.timeline__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.timeline__content--morning::before {
  background: var(--gradient-morning);
}
.timeline__content--afternoon::before {
  background: var(--gradient-afternoon);
}
.timeline__content--brain::before {
  background: var(--gradient-brain);
}
.timeline__content--night::before {
  background: var(--gradient-night);
}

.timeline__content:hover {
  border-color: rgba(226, 192, 125, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.timeline__time-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.timeline__time-label--morning { color: #FFD700; }
.timeline__time-label--afternoon { color: #E2C07D; }
.timeline__time-label--brain { color: #8B5CF6; }
.timeline__time-label--night { color: #6B8AE0; }

.timeline__product-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.timeline__product-sku {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.timeline__product-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.timeline__image {
  display: flex;
  justify-content: center;
  perspective: 800px;
}

.timeline__image img {
  width: 180px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  transition: all 0.6s var(--ease-spring);
  animation: tilt3d 8s ease-in-out infinite;
}

.timeline__image img:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.1);
  box-shadow: 0 30px 80px rgba(226, 192, 125, 0.25);
}

@keyframes tilt3d {
  0%, 100% { transform: rotateY(-5deg) rotateX(3deg); }
  50% { transform: rotateY(5deg) rotateX(-3deg); }
}

/* ---------- 3D Product Showcase ---------- */
.showcase {
  padding: var(--space-4xl) 0;
  position: relative;
}

.showcase__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
}

.showcase__card {
  position: relative;
  background: var(--brand-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  transition: all 0.5s var(--ease-out-expo);
  cursor: pointer;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.showcase__card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(226, 192, 125, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.showcase__card:hover {
  transform: translateY(-12px) rotateX(2deg);
  border-color: rgba(226, 192, 125, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(226, 192, 125, 0.15);
}

.showcase__card:hover::after {
  opacity: 1;
}

.showcase__card-img {
  width: 140px;
  height: 180px;
  object-fit: contain;
  margin: 0 auto var(--space-lg);
  transition: transform 0.5s var(--ease-spring);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.showcase__card:hover .showcase__card-img {
  transform: translateY(-10px) scale(1.08) rotateY(5deg);
}

.showcase__card-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.showcase__card-label--morning {
  background: rgba(255, 215, 0, 0.15);
  color: #FFD700;
}
.showcase__card-label--afternoon {
  background: rgba(226, 192, 125, 0.15);
  color: #E2C07D;
}
.showcase__card-label--brain {
  background: rgba(139, 92, 246, 0.15);
  color: #8B5CF6;
}
.showcase__card-label--night {
  background: rgba(107, 138, 224, 0.15);
  color: #6B8AE0;
}

.showcase__card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  position: relative;
  z-index: 1;
}

.showcase__card-sku {
  font-size: 0.75rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* ---------- Bundle / Pricing Section ---------- */
.pricing {
  padding: var(--space-4xl) 0;
  position: relative;
}

.pricing__card {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  background: var(--brand-card);
  border: 2px solid rgba(226, 192, 125, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  text-align: center;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(226, 192, 125, 0.1);
}

.pricing__card::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(226, 192, 125, 0.1), transparent 70%);
  pointer-events: none;
}

.pricing__card::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.08), transparent 70%);
  pointer-events: none;
}

.pricing__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 20px;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.pricing__title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.pricing__subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.pricing__price-wrap {
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.pricing__price-old {
  font-size: 1.3rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: var(--space-sm);
}

.pricing__price {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
}

.pricing__price-period {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.purchase-options {
  max-width: 450px;
  margin: 0 auto var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

.purchase-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  text-align: left;
}

.purchase-option:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(226, 192, 125, 0.3);
}

.purchase-option.active {
  background: rgba(226, 192, 125, 0.06);
  border-color: var(--brand-accent);
  box-shadow: 0 0 20px rgba(226, 192, 125, 0.1);
}

.purchase-option__left {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.radio-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--text-muted);
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
}

.purchase-option.active .radio-dot {
  border-color: var(--brand-accent);
}

.purchase-option.active .radio-dot::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-accent);
}

.option-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.purchase-option__price-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.option-price-old {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.option-price {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--brand-accent);
}

.pricing__features {
  list-style: none;
  text-align: left;
  max-width: 420px;
  margin: 0 auto var(--space-2xl);
  position: relative;
  z-index: 1;
}

.pricing__features li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pricing__features li .check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(226, 192, 125, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--brand-accent);
  flex-shrink: 0;
}

/* ---------- Boost Your Reset Add-ons ---------- */
.addons-section {
  max-width: 450px;
  margin: 0 auto var(--space-2xl);
  text-align: left;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-xl);
}

.addons-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-accent);
  margin-bottom: var(--space-xs);
}

.addons-subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

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

.addon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.addon-item:hover {
  border-color: rgba(226, 192, 125, 0.2);
  background: rgba(255, 255, 255, 0.02);
}

.addon-label {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  cursor: pointer;
  width: 100%;
  user-select: none;
}

.addon-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.custom-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid var(--text-muted);
  border-radius: 4px;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.addon-checkbox:checked ~ .custom-checkbox {
  border-color: var(--brand-accent);
  background: rgba(226, 192, 125, 0.1);
}

.addon-checkbox:checked ~ .custom-checkbox::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--brand-accent);
  font-size: 0.85rem;
  font-weight: 900;
}

.addon-name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.addon-checkbox:checked ~ .addon-name {
  color: var(--brand-accent);
}

.addon-price {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brand-accent-2);
}

.pricing__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 18px 48px;
  background: var(--gradient-brand);
  border: none;
  border-radius: var(--radius-full);
  color: var(--brand-dark);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 0 40px rgba(226, 192, 125, 0.4);
  z-index: 1;
  overflow: hidden;
}

.pricing__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease;
}

.pricing__cta:hover::before {
  left: 100%;
}

.pricing__cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 80px rgba(226, 192, 125, 0.6);
}

.pricing__guarantee {
  margin-top: var(--space-lg);
  font-size: 0.8rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* ---------- Benefits / Why It Works ---------- */
.benefits {
  padding: var(--space-4xl) 0;
}

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

.benefit-card {
  background: var(--brand-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  border-color: rgba(226, 192, 125, 0.15);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.benefit-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  background: rgba(226, 192, 125, 0.1);
}

.benefit-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.benefit-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: var(--space-4xl) 0;
  position: relative;
}

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

.testimonial-card {
  background: var(--brand-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all 0.4s var(--ease-out-expo);
}

.testimonial-card:hover {
  border-color: rgba(226, 192, 125, 0.15);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.testimonial-card__stars {
  color: #FFD700;
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand-dark);
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- FAQ ---------- */
.faq {
  padding: var(--space-4xl) 0;
}

.faq__list {
  max-width: 700px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: var(--space-xl) 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s ease;
}

.faq__question:hover {
  color: var(--brand-accent);
}

.faq__question .faq__icon {
  font-size: 1.5rem;
  transition: transform 0.3s var(--ease-out-expo);
  color: var(--brand-accent);
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo), padding 0.5s var(--ease-out-expo);
}

.faq__item.active .faq__answer {
  max-height: 600px;
  padding-bottom: var(--space-xl);
}

.faq__answer p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- Final CTA ---------- */
.final-cta {
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
}

.final-cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(226, 192, 125, 0.12), transparent 70%);
  pointer-events: none;
}

.final-cta__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.final-cta__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
}

/* ---------- Footer ---------- */
.footer {
  padding: var(--space-3xl) 0 var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer__brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
  line-height: 1.7;
  max-width: 300px;
}

.footer__col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

.footer__col ul {
  list-style: none;
}

.footer__col ul li {
  margin-bottom: var(--space-sm);
}

.footer__col ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer__col ul li a:hover {
  color: var(--brand-accent);
}

.footer__bottom {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background: var(--brand-accent);
  color: var(--brand-dark);
  transform: translateY(-2px);
}

/* ---------- Scroll Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

/* ---------- Interactive 3D Cursor Tracker ---------- */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 192, 125, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

/* ---------- Particle canvas ---------- */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ---------- Counter Animation ---------- */
.counter {
  display: inline-block;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    margin: 0 auto var(--space-2xl);
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    height: 400px;
    margin-top: var(--space-2xl);
  }

  .hero__stats {
    justify-content: center;
  }

  .timeline__node {
    grid-template-columns: 80px 1fr;
    gap: var(--space-lg);
  }

  .timeline__node:nth-child(even) .timeline__content {
    grid-column: 2;
  }

  .timeline__node:nth-child(even) .timeline__image {
    display: none;
  }

  .timeline__image {
    display: none;
  }

  .timeline__line {
    left: 40px;
  }

  .timeline__line-progress {
    left: 40px;
  }

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

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

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

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

  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: block;
  }

  .nav__links.active {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(8, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--space-xl);
    gap: var(--space-lg);
    border-bottom: 1px solid rgba(226, 192, 125, 0.1);
  }

  .hero__product-float {
    width: 80px !important;
  }

  .hero__product-float:nth-child(1) { top: 15%; left: 8%; }
  .hero__product-float:nth-child(2) { top: 10%; right: 8%; }
  .hero__product-float:nth-child(3) { top: 50%; left: 5%; }
  .hero__product-float:nth-child(4) { top: 45%; right: 5%; }
  .hero__product-float:nth-child(5) { bottom: 12%; left: 50%; transform: translateX(-50%); }

  .hero__visual {
    height: 320px;
  }

  .hero__stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xl);
  }

  .time-slider__panel-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-xl);
  }

  .time-slider__panel-img {
    width: 180px;
  }

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

  .pricing__card {
    padding: var(--space-xl);
  }

  .pricing__title {
    font-size: 1.6rem;
  }

  .pricing__price {
    font-size: 2.5rem;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions button {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- Sticky bottom CTA (mobile) ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: var(--space-md) var(--space-xl);
  background: rgba(8, 14, 26, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(226, 192, 125, 0.15);
  text-align: center;
}

.sticky-cta .btn-primary {
  width: 100%;
  justify-content: center;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 80px;
  }
}

/* ---------- Ingredient Tooltip Popup ---------- */
.ingredient-tooltip {
  position: absolute;
  background: var(--brand-card);
  border: 1px solid rgba(226, 192, 125, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  font-size: 0.8rem;
  color: var(--text-secondary);
  max-width: 250px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s var(--ease-out-expo);
  z-index: 100;
  box-shadow: var(--shadow-card);
}

.ingredient-tooltip.active {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Interactive Timeline Slider ---------- */
.time-slider {
  padding: var(--space-4xl) 0;
  position: relative;
}

.time-slider__bar {
  position: relative;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  margin: var(--space-2xl) 0;
  cursor: pointer;
}

.time-slider__fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: var(--gradient-brand);
  width: 0%;
  transition: width 0.5s var(--ease-out-expo);
}

.time-slider__markers {
  display: flex;
  justify-content: space-between;
  position: relative;
  top: -18px;
}

.time-slider__marker {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.4s var(--ease-spring);
  background: var(--brand-card);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.time-slider__marker.active {
  transform: scale(1.3);
  border-color: var(--brand-accent);
  box-shadow: var(--shadow-glow-green);
}

.time-slider__content {
  min-height: 300px;
  position: relative;
}

.time-slider__panel {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
  pointer-events: none;
}

.time-slider__panel.active {
  height: auto;
  overflow: visible;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.time-slider__panel-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xl);
}

.time-slider__panel-img {
  width: 250px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  margin: var(--space-md) auto 0;
}

.time-slider__panel-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.time-slider__panel-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.time-slider__panel-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}

/* ---------- Loading Screen ---------- */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__inner {
  text-align: center;
}

.loader__logo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader__bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  margin-top: var(--space-xl);
  overflow: hidden;
}

.loader__bar-fill {
  width: 0%;
  height: 100%;
  background: var(--gradient-brand);
  border-radius: var(--radius-full);
  animation: loaderFill 1.5s var(--ease-out-expo) forwards;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.7; }
}

@keyframes loaderFill {
  to { width: 100%; }
}

/* ---------- Interactive Science Section ---------- */
.science {
  padding: var(--space-4xl) 0;
  position: relative;
  background: radial-gradient(100% 100% at 50% 0%, rgba(0, 229, 160, 0.03) 0%, transparent 100%);
}

.science__dashboard {
  background: var(--brand-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  margin-top: var(--space-2xl);
  box-shadow: var(--shadow-card);
}

.science__tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.science__tab {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.science__tab:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
}

.science__tab.active {
  background: var(--gradient-brand);
  color: var(--brand-dark);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(0, 229, 160, 0.3);
}

.science__loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl) 0;
  gap: var(--space-md);
}

.science__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(0, 229, 160, 0.1);
  border-top-color: #00E5A0;
  border-radius: 50%;
  animation: spinner 0.8s linear infinite;
}

@keyframes spinner {
  to { transform: rotate(360deg); }
}

.science__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.science__grid.loading {
  opacity: 0.3;
  pointer-events: none;
}

.science-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.science-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 229, 160, 0.2);
  transform: translateY(-4px);
}

.science-card__journal {
  font-size: 0.75rem;
  font-weight: 700;
  color: #00E5A0;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
}

.science-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.science-card__meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.science-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #00E5A0;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: bold;
  transition: color 0.2s ease;
}

.science-card__link:hover {
  color: #00C9DB;
}

@media (max-width: 1024px) {
  .science__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .science__grid {
    grid-template-columns: 1fr;
  }
  .science__dashboard {
    padding: var(--space-xl);
  }
}

/* ---------- Email Lead Magnet ---------- */
.lead-magnet {
  padding: var(--space-4xl) 0;
  position: relative;
}

.lead-magnet__card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--brand-card);
  border: 1px solid rgba(226, 192, 125, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(226, 192, 125, 0.05);
}

.lead-magnet__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(226, 192, 125, 0.08), transparent 70%);
  pointer-events: none;
}

.lead-magnet__badge {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--brand-accent);
  letter-spacing: 1.5px;
  margin-bottom: var(--space-md);
  background: rgba(226, 192, 125, 0.1);
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

.lead-magnet__title {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.lead-magnet__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto var(--space-2xl);
}

.lead-magnet__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.lead-magnet__input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  padding: 14px 24px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.lead-magnet__input:focus {
  outline: none;
  border-color: var(--brand-accent);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 15px rgba(226, 192, 125, 0.1);
}

.lead-magnet__btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
}

@media (max-width: 768px) {
  .lead-magnet__card {
    padding: var(--space-2xl) var(--space-xl);
  }
  .lead-magnet__title {
    font-size: 1.6rem;
  }
}
