/* ======= INDEX PAGE STYLES ======= */

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--s-8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--t-normal);
}

.bio-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.nav-logo span {
  color: var(--lime);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-8);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--t-fast);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--ghost-white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t-normal), opacity var(--t-normal);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: var(--s-5) var(--s-5) var(--s-6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  gap: var(--s-1);
  z-index: 999;
  box-shadow: var(--shadow-xl);
}

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

.mobile-menu a {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: var(--s-4) var(--s-3);
  border-radius: var(--r-md);
  transition: color var(--t-fast), background var(--t-fast);
}

.mobile-menu a:hover,
.mobile-menu a:active {
  color: var(--text);
  background: var(--ghost-white);
}

.mobile-menu a.btn-lime {
  background: var(--lime);
  color: var(--bg);
  text-align: center;
  margin-top: var(--s-2);
  padding: var(--s-4);
  font-weight: 700;
}

/* ---- Hero pad icon (replaces pill) ---- */
.hero-pad-wrap {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin-bottom: var(--s-5);
}

.hero-pad-svg-container {
  position: relative;
  width: 130px;
  height: 80px;
  flex-shrink: 0;
}

.hero-pad-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 0 18px rgba(255, 69, 69, 0.35));
  transition: filter 0.6s ease;
}

/* Floating particles around pad */
.pad-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float-particle 3s ease-in-out infinite;
}

.pad-particle.p1 {
  width: 5px;
  height: 5px;
  background: #FF4545;
  top: 8px;
  right: 14px;
  opacity: 0.6;
  animation-delay: 0s;
}

.pad-particle.p2 {
  width: 3px;
  height: 3px;
  background: #C084FC;
  bottom: 10px;
  left: 18px;
  opacity: 0.5;
  animation-delay: 1s;
}

.pad-particle.p3 {
  width: 4px;
  height: 4px;
  background: #47CAFF;
  top: 50%;
  right: 8px;
  opacity: 0.4;
  animation-delay: 2s;
}

@keyframes float-particle {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translateY(-8px) scale(1.3);
    opacity: 0.9;
  }
}

.hero-pad-text {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}

.hero-pad-text span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.6s ease;
}

/* Remove old eyebrow styles */
.hero-eyebrow,
.hero-eyebrow-dot {
  display: none;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: calc(var(--nav-h) + var(--s-12)) var(--s-8) var(--s-12);
  max-width: var(--max-w);
  margin: 0 auto;
  gap: var(--s-12);
  position: relative;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: var(--s-5);
  padding: var(--s-2) var(--s-3);
  background: rgba(202, 255, 71, 0.08);
  border: 1px solid rgba(202, 255, 71, 0.2);
  border-radius: var(--r-full);
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--s-5);
  color: var(--text);
}

.hero h1 em {
  font-style: normal;
  color: var(--lime);
}

.hero-sub {
  font-family: var(--font-sub);
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: var(--s-8);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  flex-wrap: wrap;
}

.hero-disclaimer {
  margin-top: var(--s-6);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-subtle);
  max-width: 400px;
  line-height: 1.6;
}

/* Orb Container */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 500px;
}

.orb-wrap {
  perspective: 1200px;
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb {
  width: 320px;
  height: 320px;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  background:
    radial-gradient(ellipse at 25% 25%, rgba(192, 132, 252, 0.9) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 75%, rgba(255, 69, 69, 0.8) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 25%, rgba(71, 202, 255, 0.7) 0%, transparent 50%),
    radial-gradient(ellipse at 25% 75%, rgba(202, 255, 71, 0.8) 0%, transparent 50%),
    conic-gradient(from 0deg, #FF4545, #47CAFF, #CAFF47, #C084FC, #FF4545);
  filter: blur(8px) saturate(1.4) brightness(1.1);
  transform-style: preserve-3d;
  will-change: transform, border-radius;
  position: relative;
}

.orb-glow {
  position: absolute;
  inset: -20px;
  border-radius: inherit;
  background: inherit;
  filter: blur(40px) saturate(2) brightness(0.6);
  opacity: 0.5;
  z-index: -1;
}

.orb-inner {
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 40% 30%, var(--bg-alt), transparent 70%);
  filter: blur(4px);
}

/* Female Silhouette */
.silhouette-wrap {
  position: absolute;
  right: -20px;
  bottom: 20px;
  opacity: 0.25;
  z-index: 1;
}

.silhouette-wrap svg {
  filter: drop-shadow(0 0 20px var(--luteal));
}

/* Features */
.features {
  padding: var(--s-24) var(--s-8);
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--s-3);
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
  align-items: center;
  padding: var(--s-16) 0;
  border-top: 1px solid var(--border);
  opacity: 0;
  transform: translateY(40px);
}

.feature-block.alt {
  direction: rtl;
}

.feature-block.alt>* {
  direction: ltr;
}

.feature-block h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  margin-bottom: var(--s-4);
  line-height: 1.1;
}

.feature-block p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
}

.feature-block p+p {
  margin-top: var(--s-4);
}

.feature-v.bio-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-8) var(--s-7);
  overflow: hidden;
  transition: transform var(--t-normal), border-color var(--t-normal);
  display: flex;
  flex-direction: column;
}

.bio-awareness {
  overflow: hidden;
  /* Prevent blob overflow */
  position: relative;
}

.feature-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  position: relative;
  overflow: hidden;
}

.feature-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(202, 255, 71, 0.05), transparent 60%);
  pointer-events: none;
}

.feature-microcopy {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: var(--s-4);
}

/* Phase cards in feature section */
.phase-cards-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
}

.phase-card-mini {
  padding: var(--s-4);
  border-radius: var(--r-md);
  border: 1px solid transparent;
  background: var(--bg-alt);
}

.phase-card-mini-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--s-2);
}

.phase-card-mini-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Daily Briefing preview */
.briefing-preview {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-5);
}

.briefing-day {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--s-2);
}

.briefing-phase {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-4);
}

.briefing-starters {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.briefing-starter-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: var(--s-2) 0;
  border-bottom: 1px solid var(--border);
}

.briefing-starter-item:last-child {
  border-bottom: none;
}

.starter-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  margin-top: 5px;
}

/* Built Different section */
.comparison {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.comparison-row {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-md);
  background: var(--bg-alt);
}

.comparison-row.ours {
  background: rgba(202, 255, 71, 0.05);
  border: 1px solid rgba(202, 255, 71, 0.15);
}

.comparison-label {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 500;
}

.comparison-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.comparison-icon.yes {
  background: rgba(202, 255, 71, 0.2);
  color: var(--lime);
}

.comparison-icon.no {
  background: rgba(255, 96, 88, 0.2);
  color: var(--coral);
}

/* Footnote regarding consolidated CTA styles: 
   Moved to the global components section for better performance. 
*/

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: var(--s-8);
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--s-6);
  flex-wrap: wrap;
  gap: var(--s-4);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-logo span {
  color: var(--lime);
}

.footer-links {
  display: flex;
  gap: var(--s-6);
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--t-fast);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-disclaimer {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--s-5);
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: var(--s-5);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-3);
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-subtle);
}

/* PWA Banner */
.pwa-banner {
  position: fixed;
  bottom: var(--s-4);
  left: var(--s-4);
  right: var(--s-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-4) var(--s-5);
  display: flex;
  align-items: center;
  gap: var(--s-4);
  z-index: 500;
  transform: translateY(120px);
  opacity: 0;
  transition: transform var(--t-slow), opacity var(--t-slow);
  box-shadow: var(--shadow-lg);
  display: none;
}

.pwa-banner.show {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.pwa-icon {
  width: 44px;
  height: 44px;
  background: var(--lime);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pwa-icon svg {
  width: 24px;
  height: 24px;
}

.pwa-text {
  flex: 1;
}

.pwa-text strong {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 2px;
}

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

.pwa-actions {
  display: flex;
  gap: var(--s-2);
  flex-shrink: 0;
}

.pwa-dismiss {
  padding: var(--s-2) var(--s-3);
  font-size: 0.8rem;
  color: var(--text-muted);
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-family: var(--font-sub);
}

.pwa-install {
  padding: var(--s-2) var(--s-4);
  font-size: 0.8rem;
  background: var(--lime);
  color: var(--bg);
  border: none;
  border-radius: var(--r-full);
  font-family: var(--font-sub);
  font-weight: 600;
}

/* PWA Modal */
.pwa-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1100;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
}

.pwa-modal-overlay.open {
  display: flex;
}

.pwa-modal-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 24px 24px 16px 16px;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: none;
}

.pwa-modal-card::-webkit-scrollbar {
  display: none;
}

.pwa-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.2s;
  z-index: 10;
}

.pwa-modal-close:hover {
  background: var(--border);
}

.pwa-modal-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.pwa-modal-logo span {
  color: var(--lime);
}

.pwa-modal-title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.pwa-modal-title em {
  color: var(--lime);
  font-style: normal;
}

.pwa-modal-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.pwa-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.pwa-tab {
  flex: 1;
  padding: 0.7rem 0.5rem;
  border: 1px solid var(--border);
  background: none;
  color: var(--text-muted);
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  font-family: var(--font-sub);
  transition: all 0.2s;
}

.pwa-tab.active {
  background: var(--lime);
  color: var(--bg);
  border-color: var(--lime);
  font-weight: 700;
}

.pwa-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.pwa-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.pwa-step-num {
  background: rgba(202, 255, 71, 0.15);
  color: var(--lime);
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.pwa-step-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pwa-step-text strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.2rem;
}

.pwa-modal-done {
  width: 100%;
  padding: 1rem;
  background: var(--lime);
  color: var(--bg);
  border: none;
  border-radius: 12px;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.pwa-modal-done:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(202, 255, 71, 0.3);
}

/* Responsive */

@media (max-width: 768px) {
  .nav {
    padding: 0 var(--s-4);
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: calc(var(--nav-h) + var(--s-8)) var(--s-5) var(--s-10);
    text-align: center;
    gap: var(--s-6);
  }

  .hero-pad-wrap {
    justify-content: center;
  }

  .hero-sub {
    margin: 0 auto var(--s-6);
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-disclaimer {
    margin: var(--s-4) auto 0;
    text-align: center;
  }

  .hero-visual {
    min-height: 260px;
    order: -1;
  }

  .orb-wrap {
    width: 240px;
    height: 240px;
  }

  .orb {
    width: 210px;
    height: 210px;
  }

  .silhouette-wrap {
    display: none;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: var(--s-6);
    direction: ltr;
  }

  .feature-block.alt {
    direction: ltr;
  }

  .features {
    padding: var(--s-10) var(--s-4);
  }

  .cta-section {
    padding: var(--s-10) var(--s-4);
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .phase-cards-mini {
    grid-template-columns: 1fr;
  }
}

/* ============ CTA SECTION ============ */
.cta-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}

.cta-section {
  padding: 8rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(202, 255, 71, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-actions .btn {
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: var(--r-full);
}

@media (max-width: 600px) {
  .cta-section {
    padding: 5rem 1.25rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-actions .btn {
    text-align: center;
  }
}

/* ============================================================
   04 / THE MOVEMENT — FULL REDESIGN
   Out-of-the-box brutalist + neon manifesto style
   ============================================================ */

/* ---- Section Shell ---- */
.campaign-section {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: 0;
}

/* Floating ambient geometry */
.campaign-section::before,
.campaign-section::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.campaign-section::before {
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202, 255, 71, 0.04) 0%, transparent 65%);
}

.campaign-section::after {
  bottom: 80px;
  left: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.05) 0%, transparent 65%);
}

.campaign-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 4rem);
}

/* ---- Top Bar ---- */
.campaign-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(3rem, 5vw, 5rem) 0 clamp(2rem, 3vw, 3rem);
  gap: 1rem;
  flex-wrap: wrap;
}

.campaign-tag {
  font-family: var(--font-mono);
  font-size: clamp(0.65rem, 1.2vw, 0.8rem);
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.campaign-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 1vw, 0.72rem);
  color: var(--lime);
  background: rgba(202, 255, 71, 0.07);
  border: 1px solid rgba(202, 255, 71, 0.18);
  padding: 0.35rem 0.9rem 0.35rem 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.campaign-live-dot {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  display: inline-block;
  animation: pulseDot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.35;
    transform: scale(0.55);
  }
}

/* ============================================================
   MANIFESTO BLOCK — Hero statement, bleeds edge to edge
   ============================================================ */
.campaign-manifesto {
  position: relative;
  margin-bottom: clamp(4rem, 8vw, 8rem);
  padding: clamp(3rem, 6vw, 6rem) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

/* Diagonal cut accent line */
.campaign-manifesto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--border));
}

.campaign-manifesto::after {
  content: '"';
  position: absolute;
  top: -0.15em;
  right: -0.05em;
  font-family: var(--font-heading);
  font-size: clamp(10rem, 20vw, 22rem);
  font-weight: 700;
  color: var(--ghost-black);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.manifesto-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
}

.campaign-headline {
  font-size: clamp(2.8rem, 7.5vw, 7rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  position: relative;
}

.campaign-headline .strike {
  position: relative;
  display: inline;
}

.campaign-headline .strike::after {
  content: '';
  position: absolute;
  left: 0;
  top: 52%;
  width: 100%;
  height: 4px;
  background: var(--coral);
  transform: rotate(-1.5deg);
  border-radius: 2px;
}

.campaign-headline .accent-text {
  color: var(--luteal);
  font-style: normal;
}

.campaign-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

/* ---- Stat Bar — Full Width Horizontal ---- */
.campaign-stat-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

.campaign-stat-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192, 132, 252, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.campaign-stat-item {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
}

.campaign-stat-item+.campaign-stat-item {
  border-left: 1px solid var(--border);
}

.campaign-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--luteal);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
  display: block;
}

.campaign-stat-label {
  font-family: var(--font-sub);
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  color: var(--text-muted);
  line-height: 1.5;
  display: block;
}

/* Corner tick marks on stat bar */
.campaign-stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-top: 2px solid rgba(202, 255, 71, 0.4);
  border-left: 2px solid rgba(202, 255, 71, 0.4);
}

.campaign-stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid rgba(192, 132, 252, 0.4);
  border-right: 2px solid rgba(192, 132, 252, 0.4);
}

/* ============================================================
   KNOW YOUR KIT — Staggered floating cards
   ============================================================ */
.kit-section {
  margin-bottom: clamp(4rem, 8vw, 8rem);
  position: relative;
}

.kit-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  padding-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
  position: relative;
}

.kit-section-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 80px;
  height: 2px;
  background: var(--lime);
}

.kit-section-label {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.kit-section-sub {
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  color: var(--text-muted);
  max-width: 380px;
  line-height: 1.7;
  align-self: flex-end;
}

/* Staggered card grid — breaks the box */
.hygiene-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
  position: relative;
}

/* Alternating vertical offset for drama */
.hygiene-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: clamp(1.5rem, 2.5vw, 2.5rem) clamp(1.2rem, 2vw, 2rem);
  position: relative;
  overflow: visible;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.3s,
    box-shadow 0.4s;
  will-change: transform;
}

/* Stagger heights — card 2 and 4 float up */
.hygiene-card:nth-child(2) {
  transform: translateY(-24px);
}

.hygiene-card:nth-child(4) {
  transform: translateY(-16px);
}

/* Corner bracket decoration */
.hygiene-card::before,
.hygiene-card::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  opacity: 0;
  transition: opacity 0.3s;
}

.hygiene-card::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--lime);
  border-left: 2px solid var(--lime);
}

.hygiene-card::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid var(--luteal);
  border-right: 2px solid var(--luteal);
}

.hygiene-card:hover::before,
.hygiene-card:hover::after {
  opacity: 1;
}

.hygiene-card:hover {
  transform: translateY(-8px);
  border-color: rgba(202, 255, 71, 0.25);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(202, 255, 71, 0.06);
  z-index: 10;
}

.hygiene-card:nth-child(2):hover {
  transform: translateY(-32px);
}

.hygiene-card:nth-child(4):hover {
  transform: translateY(-24px);
}

/* Top accent stripe per card */
.hygiene-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 0;
}

#hcard1 .hygiene-card-accent {
  background: linear-gradient(90deg, rgba(255, 96, 88, 0.8), rgba(255, 96, 88, 0.2));
}

#hcard2 .hygiene-card-accent {
  background: linear-gradient(90deg, rgba(192, 132, 252, 0.8), rgba(192, 132, 252, 0.2));
}

#hcard3 .hygiene-card-accent {
  background: linear-gradient(90deg, rgba(202, 255, 71, 0.8), rgba(202, 255, 71, 0.2));
}

#hcard4 .hygiene-card-accent {
  background: linear-gradient(90deg, rgba(96, 200, 232, 0.8), rgba(96, 200, 232, 0.2));
}

.hygiene-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
  position: relative;
}

.hygiene-icon {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  display: block;
  line-height: 1;
  filter: drop-shadow(0 4px 12px var(--border));
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hygiene-card:hover .hygiene-icon {
  transform: scale(1.2) rotate(-5deg);
}

.hygiene-card-num {
  font-family: var(--font-mono);
  font-size: clamp(0.65rem, 1vw, 0.8rem);
  color: var(--text-subtle);
  letter-spacing: 0.15em;
  font-weight: 600;
  padding-top: 0.3rem;
}

.hygiene-card-tag {
  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 0.9vw, 0.72rem);
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
  display: block;
}

.hygiene-card-title {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  margin-bottom: 0.8rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.hygiene-card-body {
  font-size: clamp(0.82rem, 1.1vw, 0.9rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
}

.hygiene-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  border-top: 1px solid var(--border);
  padding-top: clamp(0.8rem, 1.2vw, 1.2rem);
}

.hygiene-chip {
  font-family: var(--font-mono);
  font-size: clamp(0.58rem, 0.85vw, 0.68rem);
  color: var(--text-subtle);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.25rem 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   WIN A KIT — Asymmetric split layout
   ============================================================ */
.campaign-win-block {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(2rem, 4vw, 4rem);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  border-radius: 0;
  margin-bottom: clamp(4rem, 6vw, 6rem);
  background: var(--bg);
}

/* Brutalist top-left corner cut */
.campaign-win-block::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 60px;
  height: 60px;
  background: var(--bg);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  border: none;
  z-index: 2;
}

.campaign-win-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(202, 255, 71, 0.04) 0%, transparent 50%),
    linear-gradient(225deg, rgba(192, 132, 252, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.campaign-win-left {
  padding: clamp(2rem, 4vw, 3.5rem);
  position: relative;
  z-index: 1;
}

.campaign-win-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: clamp(2rem, 3vw, 3rem) clamp(2rem, 3vw, 2.5rem);
  position: relative;
  z-index: 1;
}

.campaign-win-tag {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
  display: block;
}

.campaign-win-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
  letter-spacing: -0.02em;
}

.campaign-win-title em {
  font-style: normal;
  color: var(--luteal);
}

.campaign-win-body {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  max-width: 520px;
}

/* Steps with timeline line */
.campaign-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
  position: relative;
}

.campaign-steps::before {
  content: '';
  position: absolute;
  left: 0.9rem;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 1px;
  background: linear-gradient(to bottom, var(--lime), var(--border));
}

.campaign-step {
  display: flex;
  align-items: flex-start;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(0.8rem, 1.2vw, 1.2rem) 0;
  position: relative;
}

.campaign-step-num {
  font-family: var(--font-mono);
  color: var(--bg);
  font-weight: 700;
  font-size: clamp(0.65rem, 0.9vw, 0.75rem);
  background: var(--lime);
  min-width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  letter-spacing: 0.05em;
}

.campaign-step-info strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
}

.campaign-step-info span {
  font-size: clamp(0.82rem, 1.1vw, 0.9rem);
  color: var(--text-muted);
  line-height: 1.6;
}

.campaign-step-info code {
  background: var(--bg-alt);
  color: var(--lime);
  padding: 0.1em 0.4em;
  font-family: var(--font-mono);
  font-size: 0.88em;
  border-radius: 2px;
}

.campaign-cta-row {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
}

.campaign-ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  background: var(--lime);
  color: var(--bg);
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.campaign-ig-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.campaign-ig-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(202, 255, 71, 0.35);
}

.campaign-ig-btn:hover::before {
  opacity: 1;
}

.campaign-hashtags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.campaign-hashtag {
  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 0.9vw, 0.72rem);
  color: var(--text-subtle);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.35rem 0.7rem;
  letter-spacing: 0.06em;
}

/* Kit image panel */
.kit-image-frame {
  width: 100%;
  aspect-ratio: 1;
  max-width: 300px;
  position: relative;
  background: linear-gradient(135deg, rgba(192, 132, 252, 0.12), rgba(202, 255, 71, 0.08));
  border: 1px solid rgba(192, 132, 252, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.kit-image-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.15) 0%, transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.kit-photo {
  width: 90%;
  height: 90%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  border-radius: 2px;
  filter: saturate(0.9);
}

.kit-image-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--surface);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(202, 255, 71, 0.3);
  padding: 0.35rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
}

.kit-win-footer {
  text-align: center;
}

.kit-win-label {
  font-family: var(--font-sub);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 700;
  display: block;
  margin-bottom: 0.3rem;
}

.kit-win-sub {
  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 0.85vw, 0.72rem);
  color: var(--text-subtle);
  letter-spacing: 0.06em;
}

.campaign-win-badge {
  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 0.9vw, 0.72rem);
  color: var(--lime);
  background: rgba(202, 255, 71, 0.07);
  border: 1px solid rgba(202, 255, 71, 0.18);
  padding: 0.4rem 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  align-self: stretch;
  justify-content: center;
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 1100px) {
  .hygiene-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .campaign-win-block {
    grid-template-columns: 1fr;
  }

  .campaign-win-right {
    order: -1;
  }

  .kit-image-frame {
    max-width: 240px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .campaign-stat-bar {
    grid-template-columns: 1fr;
  }

  .campaign-stat-item+.campaign-stat-item {
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .kit-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hygiene-card:nth-child(2),
  .hygiene-card:nth-child(4) {
    transform: none;
  }

  .hygiene-card:hover,
  .hygiene-card:nth-child(2):hover,
  .hygiene-card:nth-child(4):hover {
    transform: translateY(-4px);
  }

  .campaign-win-block::before {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 600px) {
  .hygiene-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .campaign-inner {
    padding: 0 1.25rem;
  }

  .campaign-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .kit-image-frame {
    max-width: 200px;
  }

  .campaign-win-left {
    padding: 2rem 1.5rem;
  }
}

/* ======= BIO AWARENESS SECTION ======= */
.bio-awareness {
  padding: var(--s-24) var(--s-8);
  max-width: var(--max-w);
  margin: 0 auto;
}

.bio-awareness-header {
  margin-bottom: var(--s-12);
}

.bio-awareness-header h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  letter-spacing: -0.03em;
  margin-bottom: var(--s-4);
}

.bio-awareness-header p {
  font-family: var(--font-body);
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ============================================================
   AWARENESS SECTION: THE BIO-CHRONICLE (V3)
   ============================================================ */

.bio-awareness {
  background: var(--bg);
  padding: var(--s-24) 0;
  overflow: hidden;
  position: relative;
}

.bio-chronicle-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--s-8);
}

.bio-chronicle-header {
  text-align: center;
  margin-bottom: var(--s-20);
  position: relative;
  z-index: 5;
}

.chronicle-title {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-bottom: var(--s-4);
  line-height: 1;
  color: var(--text);
  text-transform: uppercase;
}

.chronicle-subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.6;
}

.bio-timeline {
  position: relative;
  padding: var(--s-12) 0;
  min-height: 800px;
}

/* The Spine - High Performance DNA Column */
.timeline-spine {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--border);
  transform: translateX(-50%);
  z-index: 1;
}

.spine-glow {
  position: absolute;
  top: 0;
  left: 50%;
  width: 60px;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, var(--lime), transparent 70%);
  opacity: 0.1;
  transform: translateX(-50%);
  filter: blur(15px);
}

.spine-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--lime), #8BBF00);
  box-shadow: 0 0 25px var(--lime);
}

.spine-progress::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--lime);
  border-radius: 50%;
  transform: translate(-50%, 50%);
  box-shadow: 0 0 20px var(--lime);
  animation: dna-pulse 2s infinite;
}

@keyframes dna-pulse {
  0% {
    transform: translate(-50%, 50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 50%) scale(3);
    opacity: 0;
  }
}

/* Steps */
.chronicle-step {
  display: flex;
  width: 100%;
  margin-bottom: var(--s-32);
  position: relative;
  z-index: 2;
}

.step-content {
  display: flex;
  width: 100%;
  align-items: center;
}

.step-pcos .step-content {
  justify-content: flex-start;
}

.step-pcod .step-content {
  justify-content: flex-end;
}

.step-card {
  width: 46%;
  perspective: 1000px;
}

.card-inner {
  background: var(--surface);
  backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-12);
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: border-color 0.4s ease;
}

.card-inner:hover {
  border-color: rgba(202, 255, 71, 0.3);
}

.card-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--lime);
  margin-bottom: var(--s-5);
  display: block;
}

.step-card h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: var(--s-8);
  line-height: 1.1;
}

/* Hero Labels - Ambient Typography */
.step-hero-blob {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 14rem;
  font-weight: 900;
  color: var(--ghost-black);
  line-height: 1;
  pointer-events: none;
  z-index: -1;
  text-transform: uppercase;
  user-select: none;
}

[data-theme="light"] .step-hero-blob {
  opacity: 0.08 !important;
}

.step-pcos .step-hero-blob {
  right: -5%;
  top: -10%;
}

.step-pcod .step-hero-blob {
  left: -5%;
  top: -10%;
}

/* Content Specifics */
.chronicle-chat,
.chronicle-protest {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  margin-bottom: var(--s-10);
}

.c-bubble {
  padding: var(--s-5) var(--s-6);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
}

.c-bubble span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--luteal);
  font-weight: 700;
  margin-bottom: 4px;
  opacity: 0.7;
}

.c-bubble p {
  font-size: 1rem;
  color: var(--text);
}

.p-sign {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: var(--s-5);
  border-left: 3px solid var(--lime);
}

.p-sign strong {
  color: var(--lime);
  display: block;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.step-research {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  background: var(--bg-alt);
  padding: var(--s-6);
  border-radius: var(--r-md);
  margin-bottom: var(--s-8);
}

.step-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
}

.s-pill {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  padding: 6px 14px;
  background: var(--ghost-white);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.s-pill:hover {
  background: rgba(202, 255, 71, 0.1);
  color: var(--lime);
  border-color: var(--lime);
}

/* ============================================================
   RESPONSIVE - ZERO SCREEN HIDING ARCHITECTURE
   ============================================================ */

@media (max-width: 1100px) {
  .step-card {
    width: 48%;
  }

  .step-hero-blob {
    font-size: 10rem;
  }
}

@media (max-width: 768px) {
  .bio-awareness {
    padding: var(--s-16) 0;
  }

  .bio-chronicle-wrap {
    padding: 0 var(--s-5);
  }

  .chronicle-header {
    margin-bottom: var(--s-12);
  }

  .chronicle-title {
    font-size: 2.5rem;
  }

  /* Shift Spine to left for mobile timeline look */
  .timeline-spine {
    left: 15px;
    transform: none;
  }

  .spine-glow {
    left: 15px;
    transform: none;
    width: 30px;
  }

  .step-content {
    flex-direction: column;
    padding-left: var(--s-12);
    align-items: stretch;
    gap: var(--s-8);
  }

  .step-card {
    width: 100%;
    box-sizing: border-box;
  }

  .step-pcos .step-content,
  .step-pcod .step-content {
    justify-content: flex-start;
  }

  .step-hero-blob {
    font-size: 5rem;
    left: 20px;
    top: -40px;
    opacity: 0.03;
  }

  .card-inner {
    padding: var(--s-6);
    border-radius: var(--r-lg);
  }

  .chronicle-chat,
  .chronicle-protest {
    gap: var(--s-3);
  }

  .c-bubble,
  .p-sign {
    padding: var(--s-4);
  }

  .step-stats {
    gap: var(--s-2);
  }

  .s-pill {
    font-size: 0.72rem;
    padding: 6px 12px;
  }
}

/* Campaign Polish */
.campaign-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.campaign-headline {
  font-size: clamp(2.5rem, 10vw, 6rem);
  line-height: 0.95;
  margin-bottom: var(--s-8);
}

@media (max-width: 768px) {
  .campaign-headline {
    font-size: 3rem;
  }

  .campaign-sub {
    font-size: 1rem;
    padding: 0 var(--s-4);
  }
}

/* Cleanup Legacy Junk */
.bio-side,
.pcos-narrative,
.pcod-narrative,
.bio-blob,
.chaos-chat-wrap,
.research-blob,
.bio-molecule-stats {
  display: none !important;
}

/* Magnetic Buttons */
.btn-lime {
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease;
}

.btn-lime:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(202, 255, 71, 0.25);
}

.btn-outline:hover {
  transform: translateY(-5px);
  border-color: var(--text);
  background: var(--ghost-white);
}

[data-theme="light"] .node-content {
  background: var(--surface) !important;
  color: var(--text) !important;
}

[data-theme="light"] .card-inner {
  background: var(--surface) !important;
  color: var(--text) !important;
}

/* ============================================================
   BIO-ROADMAP: THE PATH TO ENLIGHTENMENT
   ============================================================ */

.bio-roadmap {
  background: var(--bg);
  padding: var(--s-24) 0;
  position: relative;
  overflow: hidden;
}

.roadmap-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--s-8);
}

.roadmap-header {
  text-align: center;
  margin-bottom: var(--s-20);
}

.roadmap-title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: var(--s-4);
  line-height: 1.1;
  text-transform: uppercase;
}

.roadmap-sub {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

.path-container {
  position: relative;
  padding: var(--s-10) 0;
  margin-top: var(--s-12);
}

.path-svg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100px;
  height: 100%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.path-outline {
  fill: none;
  stroke: var(--border);
  stroke-width: 2;
}

.path-fill {
  fill: none;
  stroke: var(--lime);
  stroke-width: 2;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  filter: drop-shadow(0 0 12px var(--lime));
}

.roadmap-steps {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--s-32);
}

.roadmap-node {
  display: flex;
  align-items: center;
  width: 100%;
  gap: var(--s-10);
  perspective: 1200px;
}

.roadmap-node.n2 {
  flex-direction: row-reverse;
  text-align: right;
}

.node-icon {
  width: 80px;
  height: 80px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 800;
  color: var(--lime);
  font-size: 1.6rem;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
  position: relative;
  z-index: 5;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.node-content {
  flex: 1;
  background: var(--bg-alt);
  backdrop-filter: blur(30px);
  border: 1px solid var(--border);
  padding: var(--s-10) var(--s-12);
  border-radius: var(--r-2xl);
  max-width: 500px;
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: var(--shadow-lg);
}

.roadmap-node:hover .node-icon {
  transform: scale(1.15) rotate(5deg);
  border-color: var(--lime);
  box-shadow: 0 0 45px rgba(202, 255, 71, 0.3);
}

.roadmap-node:hover .node-content {
  border-color: rgba(202, 255, 71, 0.4);
  background: var(--surface);
  transform: translateY(-12px) translateZ(25px);
  box-shadow: var(--shadow-xl);
}

.node-content h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: var(--s-4);
  color: var(--text);
  letter-spacing: -0.03em;
  background: linear-gradient(to right, var(--text), var(--text-muted));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.node-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .bio-roadmap {
    padding: var(--s-16) 0;
  }

  .path-svg {
    left: 40px;
    transform: none;
    width: 60px;
  }

  .roadmap-steps {
    gap: var(--s-16);
  }

  .roadmap-node,
  .roadmap-node.n2 {
    flex-direction: column;
    text-align: center;
    gap: var(--s-8);
  }

  .node-icon {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
    margin: 0 auto;
  }

  .node-content {
    padding: var(--s-8);
    max-width: 100%;
    border-radius: var(--r-xl);
    text-align: center;
  }
}

/* ---- Research Box ---- */
.bio-research-box {
  background: var(--bg-alt);
  border: 1px dashed var(--border);
  padding: var(--s-4);
  border-radius: var(--r-md);
  margin-top: auto;
}

.bio-stat {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.bio-stat span {
  color: var(--lime);
  font-weight: 700;
  font-family: var(--font-mono);
}

.bio-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-2);
  margin-top: var(--s-2);
}

.bio-feature {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.bio-feature span {
  width: 20px;
  height: 20px;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.65rem;
}

@media (max-width: 768px) {
  .bio-grid {
    grid-template-columns: 1fr;
  }
}