/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --black:       #0A0A0A;
  --near-black:  #111111;
  --charcoal:    #1A1A1A;
  --dark-grey:   #2A2A2A;
  --mid-grey:    #666666;
  --light-grey:  #999999;
  --white:       #E8E8E8;
  --pure-white:  #FFFFFF;
  --slate-blue:  #3A7CA5;

  --font-display: 'Raleway', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--light-grey);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── UTILITIES ──────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--slate-blue);
  margin-bottom: 18px;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pure-white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.section-intro {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--light-grey);
  margin-bottom: 56px;
}

.section {
  padding: 100px 0;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--dark-grey), transparent);
}

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--charcoal);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 6px;
  color: var(--pure-white);
  text-transform: uppercase;
}
.nav-spots {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--slate-blue);
  opacity: 1;
  transition: opacity 0.4s ease;
  white-space: nowrap;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-spots-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--slate-blue);
  box-shadow: 0 0 0 0 rgba(58, 124, 165, 0.5);
  animation: pulse 2.5s ease infinite;
  vertical-align: middle;
  margin-right: 8px;
  flex-shrink: 0;
}
.nav-spots-number {
  color: var(--white);
}

.nav-cta {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pure-white);
  background: var(--slate-blue);
  padding: 8px 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 18px rgba(58,124,165,0.4), 0 0 40px rgba(58,124,165,0.12);
  transition: box-shadow 0.3s ease, background 0.2s ease;
}
.nav-cta:hover {
  background: #4a8cb5;
  box-shadow: 0 0 30px rgba(58,124,165,0.6), 0 0 60px rgba(58,124,165,0.2);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0 32px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, #1a1a2e 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 30% 60%, #0d1b2a 0%, transparent 60%),
    var(--black);
  z-index: 0;
}
/* subtle grain overlay */
.hero-bg::after {
  content: '';
  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='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-content .section-label {
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 10vw, 110px);
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--pure-white);
  line-height: 1;
  margin-bottom: 28px;
  white-space: nowrap;
}
.hero-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--light-grey);
  margin-bottom: 44px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--dark-grey), transparent);
  z-index: 2;
  animation: scrollHint 2s ease infinite;
}
@keyframes scrollHint {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) scaleY(1); }
  50%       { opacity: 1;   transform: translateX(-50%) scaleY(1.15); }
}

/* ─── CTA GLOW ───────────────────────────────────────────── */
.cta-glow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pure-white);
  background: var(--slate-blue);
  padding: 18px 44px;
  position: relative;
  z-index: 10;
  cursor: pointer;
  overflow: hidden;
  box-shadow:
    0 0 28px rgba(58,124,165,0.45),
    0 0 70px rgba(58,124,165,0.15),
    0 6px 24px rgba(0,0,0,0.5);
  transition: box-shadow 0.3s ease, background 0.2s ease;
}
/* shimmer sweep */
.cta-glow::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -140%;
  width: 70%;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.18) 50%, transparent 80%);
  pointer-events: none;
  transition: none;
}
.cta-glow:hover::before {
  left: 200%;
  transition: left 0.55s ease;
}
.cta-glow:hover {
  background: #4a8cb5;
  box-shadow:
    0 0 50px rgba(58,124,165,0.65),
    0 0 100px rgba(58,124,165,0.25),
    0 14px 32px rgba(0,0,0,0.5);
}

/* ─── STARTER KIT ────────────────────────────────────────── */
.kit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.kit-item {
  background: var(--near-black);
  border: 1px solid var(--charcoal);
  padding: 32px;
  transition: border-color 0.25s;
}
.kit-item:hover { border-color: var(--dark-grey); }
.kit-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 28px;
  border-radius: 2px;
}
.kit-sachets {
  background:
    linear-gradient(135deg, #1a1a1a 0%, #222 50%, #151515 100%);
  position: relative;
  overflow: hidden;
}
.kit-sachets::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 60%; height: 70%;
  transform: translate(-50%, -50%);
  background: repeating-linear-gradient(
    -30deg,
    transparent,
    transparent 6px,
    rgba(58, 124, 165, 0.08) 6px,
    rgba(58, 124, 165, 0.08) 7px
  );
  border: 1px solid var(--dark-grey);
}
.kit-bottle {
  background: linear-gradient(160deg, #1c1c1c 0%, #111 60%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}
.kit-bottle::after {
  content: '';
  position: absolute;
  top: 10%; left: 50%;
  width: 28%; height: 80%;
  transform: translateX(-50%);
  background: linear-gradient(to right, #1a1a1a, #2a2a2a, #1a1a1a);
  border: 1px solid #333;
  border-radius: 3px 3px 6px 6px;
}
.kit-card {
  background: linear-gradient(135deg, #141414 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}
.kit-card::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 65%; height: 50%;
  transform: translate(-50%, -50%);
  background: var(--charcoal);
  border: 1px solid var(--dark-grey);
}
.kit-item-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.kit-item-desc {
  font-size: 14px;
  color: var(--mid-grey);
  line-height: 1.7;
}

/* ─── FORMULA ────────────────────────────────────────────── */
.formula-section { background: var(--black); }
.formula-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--dark-grey);
  border: 1px solid var(--dark-grey);
  margin-bottom: 32px;
}
.formula-item {
  background: var(--near-black);
  padding: 28px 24px;
  border: 1px solid transparent;
  margin: -1px;
  cursor: default;
  position: relative;
  overflow: visible;
}
.formula-item.is-hovered {
  background: #141920;
  border-color: var(--slate-blue);
  z-index: 1;
}
.formula-item-featured {
  background: #0d1318;
  box-shadow: inset 0 0 0 1px rgba(58,124,165,0.4), inset 0 0 30px rgba(58,124,165,0.07);
  z-index: 1;
}
.formula-item-featured .formula-name {
  color: var(--pure-white);
  text-shadow: 0 0 18px rgba(58,124,165,0.45);
}
.formula-item-featured .formula-dose {
  text-shadow: 0 0 12px rgba(58,124,165,0.7);
}
.formula-dose {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--slate-blue);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.formula-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.35;
}
.formula-desc {
  font-size: 13px;
  color: var(--mid-grey);
  line-height: 1.6;
}
.formula-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.formula-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 0;
  margin-top: 24px;
}
.formula-trust-item {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid-grey);
}
.formula-trust-sep {
  color: var(--dark-grey);
  margin: 0 14px;
  font-size: 12px;
}
.badge {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--light-grey);
  border: 1px solid var(--dark-grey);
  padding: 7px 16px;
}

/* ─── RITUAL ─────────────────────────────────────────────── */
.ritual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  margin-bottom: 64px;
  border: 1px solid var(--dark-grey);
}
.ritual-col {
  padding: 52px 48px;
  border-right: 1px solid var(--dark-grey);
}
.ritual-col:last-child { border-right: none; }
.ritual-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 48px;
  letter-spacing: 2px;
  color: var(--slate-blue);
  text-shadow: 0 0 24px rgba(58,124,165,0.35);
  line-height: 1;
  margin-bottom: 28px;
}
.ritual-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--pure-white);
  margin-bottom: 16px;
}
.ritual-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--light-grey);
  line-height: 1.75;
}

/* ─── RITUAL STAGGER ─────────────────────────────────────── */
.ritual-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.ritual-reveal.ritual-visible {
  opacity: 1;
  transform: translateY(0);
}
.ritual-coda {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 22px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mid-grey);
}

/* ─── RESULTS TIMELINE ───────────────────────────────────── */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border: 1px solid var(--dark-grey);
}

.timeline-item {
  padding: 36px 32px;
  border-right: 1px solid var(--dark-grey);
  position: relative;
}

.timeline-item:last-child {
  border-right: none;
}

.timeline-when {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--slate-blue);
  margin-bottom: 16px;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.timeline-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--mid-grey);
}

/* progressive glow — grey to blue */
.timeline-grid .timeline-item:nth-child(1) {
  background: rgba(120,120,120,0.03);
  box-shadow: inset 0 0 0 1px rgba(120,120,120,0.12), inset 0 0 30px rgba(120,120,120,0.04);
}
.timeline-grid .timeline-item:nth-child(1) .timeline-when {
  color: #666;
}

.timeline-grid .timeline-item:nth-child(2) {
  background: rgba(58,124,165,0.02);
  box-shadow: inset 0 0 0 1px rgba(58,124,165,0.12), inset 0 0 30px rgba(58,124,165,0.03);
}
.timeline-grid .timeline-item:nth-child(2) .timeline-when {
  color: #4d8fa8;
}

.timeline-grid .timeline-item:nth-child(3) {
  background: rgba(58,124,165,0.03);
  box-shadow: inset 0 0 0 1px rgba(58,124,165,0.2), inset 0 0 36px rgba(58,124,165,0.05);
}
.timeline-grid .timeline-item:nth-child(3) .timeline-when {
  color: #5aa0be;
  text-shadow: 0 0 12px rgba(58,124,165,0.35);
}

.timeline-grid .timeline-item:nth-child(4) {
  background: rgba(58,124,165,0.05);
  box-shadow: inset 0 0 0 1px rgba(58,124,165,0.3), inset 0 0 48px rgba(58,124,165,0.08);
}
.timeline-grid .timeline-item:nth-child(4) .timeline-when {
  color: var(--slate-blue);
  text-shadow: 0 0 16px rgba(58,124,165,0.6);
}
.timeline-grid .timeline-item:nth-child(4) .timeline-title {
  color: var(--white);
  text-shadow: 0 0 20px rgba(58,124,165,0.4);
}
.timeline-grid .timeline-item:nth-child(4) .timeline-desc {
  color: #888;
}

@media (max-width: 900px) {
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-item:nth-child(2) { border-right: none; }
  .timeline-item:nth-child(1),
  .timeline-item:nth-child(2) { border-bottom: 1px solid var(--dark-grey); }
}

@media (max-width: 480px) {
  .timeline-grid {
    grid-template-columns: 1fr;
  }
  .timeline-item {
    border-right: none;
    border-bottom: 1px solid var(--dark-grey);
  }
  .timeline-item:last-child { border-bottom: none; }
  .timeline-item:nth-child(2) { border-right: none; }
}

/* ─── ACCESS SECTION ─────────────────────────────────────── */
.access-statement {
  max-width: 640px;
  margin-bottom: 72px;
}

.access-lead {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 200;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.access-body {
  font-size: 15px;
  color: var(--mid-grey);
  line-height: 1.8;
  max-width: 480px;
}

.access-phases {
  border-top: 1px solid var(--dark-grey);
}

.access-phase {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--dark-grey);
  transition: border-color 0.2s;
}

.access-phase-left {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex: 1;
}

.access-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--dark-grey);
  flex-shrink: 0;
  padding-top: 2px;
  width: 28px;
}

.access-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.access-desc {
  font-size: 13px;
  color: var(--mid-grey);
  line-height: 1.7;
  max-width: 440px;
}

.access-status {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid-grey);
  border: 1px solid var(--dark-grey);
  padding: 6px 14px;
  white-space: nowrap;
  flex-shrink: 0;
}

.access-status-open {
  color: var(--black);
  background: var(--slate-blue);
  border-color: var(--slate-blue);
  box-shadow: 0 0 18px rgba(58,124,165,0.4);
}

.access-phase-active .access-num {
  color: var(--slate-blue);
}

.access-phase-active .access-name {
  text-shadow: 0 0 20px rgba(58,124,165,0.25);
}

.access-phase-locked {
  opacity: 0.45;
}

@media (max-width: 600px) {
  .access-phase {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .access-phase-left { gap: 20px; }
  .access-num { width: 24px; }
}

/* ─── FOUNDER NOTE ───────────────────────────────────────── */
.founder-section {
  background: var(--black);
}

.founder-inner {
  max-width: 720px;
}

.founder-quote {
  display: flex;
  flex-direction: column;
  gap: 28px;
  border: none;
  padding: 0;
}

.founder-text {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 200;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: var(--white);
  position: relative;
  padding-left: 28px;
}

.founder-text-body::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--slate-blue);
  opacity: 0.6;
}

.founder-text-coda {
  color: var(--slate-blue);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-top: 16px;
  text-shadow: 0 0 24px rgba(58,124,165,0.6), 0 0 64px rgba(58,124,165,0.28);
}

.founder-attribution {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mid-grey);
  padding-left: 28px;
}

/* ─── FOUNDING 100 ───────────────────────────────────────── */
.founding-section {
  background: linear-gradient(180deg, var(--black) 0%, #0d0d12 100%);
}
.founding-inner { max-width: 680px; }
.pricing-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--dark-grey);
  margin-bottom: 48px;
}
.pricing-card {
  flex: 1;
  padding: 36px 32px;
  background: var(--near-black);
}
.pricing-divider {
  width: 1px;
  background: var(--dark-grey);
  flex-shrink: 0;
}
.pricing-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 44px;
  color: var(--pure-white);
  line-height: 1;
  margin-bottom: 16px;
}
.pricing-price-glow {
  color: var(--slate-blue);
  text-shadow: 0 0 22px rgba(58,124,165,0.7), 0 0 50px rgba(58,124,165,0.3);
}
.pricing-per {
  font-size: 18px;
  color: var(--mid-grey);
}
.pricing-was {
  font-size: 18px;
  color: var(--mid-grey);
  text-decoration: line-through;
  margin-left: 10px;
  font-weight: 300;
}
.pricing-desc {
  font-size: 13px;
  color: var(--mid-grey);
  line-height: 1.7;
}
.waitlist-form { width: 100%; }
.form-row {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
}
.form-input {
  flex: 1;
  background: var(--near-black);
  border: 1px solid var(--dark-grey);
  border-right: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  padding: 16px 20px;
  outline: none;
  transition: border-color 0.2s;
}
.form-input::placeholder { color: var(--mid-grey); }
.form-input:focus { border-color: var(--slate-blue); }
.form-submit {
  background: var(--slate-blue);
  color: var(--pure-white);
  border: none;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 28px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 0 22px rgba(58,124,165,0.4), 0 4px 16px rgba(0,0,0,0.4);
  transition: background 0.2s ease, box-shadow 0.3s ease;
}
.form-submit::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -140%;
  width: 70%;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.18) 50%, transparent 80%);
  pointer-events: none;
  transition: none;
}
.form-submit:hover::before {
  left: 200%;
  transition: left 0.55s ease;
}
.form-submit:hover {
  background: #4a8cb5;
  box-shadow: 0 0 42px rgba(58,124,165,0.6), 0 8px 24px rgba(0,0,0,0.45);
}
.form-note {
  font-size: 12px;
  color: var(--mid-grey);
  line-height: 1.6;
}
.guarantee-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 0;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--charcoal);
}
.guarantee-item {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light-grey);
}
.guarantee-sep {
  color: var(--dark-grey);
  margin: 0 16px;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--charcoal);
  padding: 44px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 5px;
  color: var(--mid-grey);
  text-transform: uppercase;
}
.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 12px;
  color: var(--mid-grey);
}
.footer-meta a:hover { color: var(--light-grey); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .formula-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: repeat(3, 260px); }
}

@media (max-width: 700px) {
  .kit-grid        { grid-template-columns: 1fr; }
  .formula-grid    { grid-template-columns: repeat(2, 1fr); }
  .pricing-row     { flex-direction: column; }
  .pricing-divider { width: 100%; height: 1px; }
  .form-row        { flex-direction: column; }
  .form-input      { border-right: 1px solid var(--dark-grey); border-bottom: 1px solid var(--dark-grey); }
  .form-input:focus { border-color: var(--slate-blue); }
  .form-submit     { width: 100%; text-align: center; }
  .footer-inner    { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-meta     { align-items: flex-start; }
  .nav-cta         { display: none; }
  .nav-spots       { position: static; transform: none; margin-left: auto; }
  .section         { padding: 64px 0; }
  .hero            { padding: 0 24px; }
  .hero-headline   { letter-spacing: 4px; }
  .hero-sub        { font-size: 15px; }
  .section-heading { margin-bottom: 16px; }
  .section-intro   { margin-bottom: 40px; font-size: 14px; }
  .faq-list        { max-width: 100%; }
  .pricing-price   { font-size: 36px; }
  .ritual-grid     { grid-template-columns: 1fr; }
  .ritual-col      { border-right: none; border-bottom: 1px solid var(--dark-grey); padding: 40px 32px; }
  .ritual-col:last-child { border-bottom: none; }
  .compare-col     { padding: 28px 24px; }
  .kit-visual      { height: 180px; }
}

@media (max-width: 480px) {
  .formula-grid    { grid-template-columns: 1fr; }
  .container       { padding: 0 20px; }
  .nav-inner       { padding: 0 20px; }
  .ritual-col      { padding: 32px 24px; }
  .compare-col     { padding: 24px 20px; }
  .section-intro   { margin-bottom: 32px; }
  .section         { padding: 56px 0; }
  .cta-glow        { padding: 16px 32px; font-size: 11px; }
  .formula-item    { padding: 22px 18px; }
  .step-number     { font-size: 28px; }
  .founding-section .section-intro { max-width: 100%; }
}

/* hide tooltips on touch devices — can't hover */

/* ─── SCROLL PROGRESS BAR ────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--slate-blue);
  z-index: 200;
  transition: width 0.08s linear;
  box-shadow: 0 0 10px rgba(58, 124, 165, 0.5), 0 0 2px rgba(58, 124, 165, 0.8);
  pointer-events: none;
}

/* ─── NAV — GLASS TOP SHIMMER ────────────────────────────── */
.nav::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.07) 40%, rgba(255,255,255,0.07) 60%, transparent);
  pointer-events: none;
  z-index: 1;
}
.nav-scrolled {
  background: rgba(10, 10, 10, 0.97);
}

/* ─── HERO CANVAS GRID ───────────────────────────────────── */
#hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ─── HERO HEADLINE — CHAR REVEAL ────────────────────────── */
.hero-headline .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  will-change: opacity, transform;
}
.hero-headline.chars-ready .char {
  animation: charIn 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--i) * 120ms + 600ms);
}
.char-space { width: 0.3em; }
@keyframes charIn {
  from { opacity: 0; transform: translateY(56px); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0);   filter: blur(0); }
}

/* ─── HERO LABEL / SUB FADE IN ───────────────────────────── */
.hero-content .section-label {
  animation: fadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 300ms;
}
.hero-sub {
  animation: fadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 3000ms;
}
.hero-content .cta-glow {
  animation: fadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 3400ms both,
             ctaBreathe 3.5s ease-in-out 5s infinite;
}
@keyframes ctaBreathe {
  0%,100% {
    box-shadow: 0 0 28px rgba(58,124,165,0.45), 0 0 70px rgba(58,124,165,0.15), 0 6px 24px rgba(0,0,0,0.5);
  }
  50% {
    box-shadow: 0 0 55px rgba(58,124,165,0.7), 0 0 110px rgba(58,124,165,0.28), 0 6px 24px rgba(0,0,0,0.5);
  }
}

/* ─── HERO HEADLINE — "On" FLICKER ──────────────────────── */
.char-glow {
  color: var(--slate-blue);
  animation: charIn 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards,
             neonFlicker 5s linear 5s infinite;
  text-shadow: 0 0 18px rgba(58,124,165,0.7), 0 0 40px rgba(58,124,165,0.3);
}
/* ─── HERO HEADLINE — "Switch" WHITE GLOW ───────────────── */
.char-glow-white {
  color: var(--pure-white);
  animation: charIn 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards,
             whiteFlicker 5s linear 5.5s infinite;
  text-shadow: 0 0 18px rgba(255,255,255,0.6), 0 0 40px rgba(255,255,255,0.2);
}
@keyframes whiteFlicker {
  0%,100%  { opacity: 1;    text-shadow: 0 0 18px rgba(255,255,255,0.6), 0 0 40px rgba(255,255,255,0.2); }
  8%       { opacity: 0.82; text-shadow: 0 0 8px  rgba(255,255,255,0.3); }
  9%       { opacity: 1;    text-shadow: 0 0 22px rgba(255,255,255,0.8), 0 0 50px rgba(255,255,255,0.3); }
  42%      { opacity: 1;    text-shadow: 0 0 18px rgba(255,255,255,0.6), 0 0 40px rgba(255,255,255,0.2); }
  43%      { opacity: 0.75; text-shadow: 0 0 6px  rgba(255,255,255,0.2); }
  44%      { opacity: 1;    text-shadow: 0 0 20px rgba(255,255,255,0.8), 0 0 45px rgba(255,255,255,0.3); }
  46%      { opacity: 1;    text-shadow: 0 0 22px rgba(255,255,255,0.8), 0 0 50px rgba(255,255,255,0.3); }
}
@keyframes neonFlicker {
  0%,100%  { opacity: 1;    text-shadow: 0 0 18px rgba(58,124,165,0.8), 0 0 40px rgba(58,124,165,0.35); }
  8%       { opacity: 0.82; text-shadow: 0 0 8px  rgba(58,124,165,0.4); }
  9%       { opacity: 1;    text-shadow: 0 0 22px rgba(58,124,165,0.9), 0 0 50px rgba(58,124,165,0.4); }
  42%      { opacity: 1;    text-shadow: 0 0 18px rgba(58,124,165,0.8), 0 0 40px rgba(58,124,165,0.35); }
  43%      { opacity: 0.75; text-shadow: 0 0 6px  rgba(58,124,165,0.3); }
  44%      { opacity: 1;    text-shadow: 0 0 20px rgba(58,124,165,0.9), 0 0 45px rgba(58,124,165,0.4); }
  45%      { opacity: 0.9;  text-shadow: 0 0 14px rgba(58,124,165,0.6); }
  46%      { opacity: 1;    text-shadow: 0 0 22px rgba(58,124,165,0.9), 0 0 50px rgba(58,124,165,0.4); }
  91%      { opacity: 1; }
  92%      { opacity: 0.8;  text-shadow: 0 0 8px  rgba(58,124,165,0.4); }
  93%      { opacity: 1;    text-shadow: 0 0 22px rgba(58,124,165,0.9), 0 0 50px rgba(58,124,165,0.4); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── MAGNETIC CTA ───────────────────────────────────────── */
.cta-glow { will-change: transform; }

/* ─── PAGE FADE-IN ───────────────────────────────────────── */
body {
  transition: opacity 0.5s ease;
}

/* ─── CURSOR DOT ─────────────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
  * { cursor: none !important; }
}
#cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--slate-blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px rgba(58, 124, 165, 0.7);
  transition: width 0.15s ease, height 0.15s ease, opacity 0.2s ease;
  will-change: left, top;
}
#cursor-dot.hidden { opacity: 0; }

/* ─── GLOBAL NOISE OVERLAY ───────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 9000;
}


/* ─── FORMULA TOOLTIPS ───────────────────────────────────── */
.formula-tip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(3px);
  width: 230px;
  background: #141920;
  border: 1px solid var(--slate-blue);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--light-grey);
  line-height: 1.65;
  opacity: 0;
  pointer-events: none;
  z-index: 20;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.22,1,0.36,1);
}
.formula-tip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--slate-blue);
}
.formula-item.is-hovered .formula-tip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ─── SPOTS COUNTER ──────────────────────────────────────── */
.spots-counter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.spots-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--slate-blue);
  box-shadow: 0 0 0 0 rgba(58, 124, 165, 0.5);
  animation: pulse 2.5s ease infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(58, 124, 165, 0.5); }
  60%  { box-shadow: 0 0 0 7px rgba(58, 124, 165, 0); }
  100% { box-shadow: 0 0 0 0 rgba(58, 124, 165, 0); }
}
.spots-text {
  font-size: 12px;
  font-family: var(--font-display);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid-grey);
}
.spots-number {
  color: var(--white);
  font-weight: 400;
}

/* ─── COMPARE (WHY NOT COFFEE) ───────────────────────────── */
.compare-scroll-wrapper {
  border: 1px solid var(--dark-grey);
  overflow: hidden; /* clips column backgrounds to border on desktop */
}
@media (max-width: 900px) {
  .compare-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .compare-scroll-wrapper::-webkit-scrollbar { display: none; }
  .compare-col {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--dark-grey);
}
.compare-col {
  background: var(--near-black);
  padding: 36px 28px;
}
.compare-col-revella {
  background: #0d1318;
  box-shadow: inset 0 0 0 1px rgba(58,124,165,0.5), 0 0 30px rgba(58,124,165,0.08);
}
.compare-header {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 28px;
}
.compare-header-revella { color: var(--slate-blue); }
.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.compare-item {
  font-size: 13px;
  line-height: 1.55;
  padding-left: 22px;
  position: relative;
}
.compare-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.compare-no { color: var(--mid-grey); }
.compare-no::before {
  background: transparent;
  border: 1px solid #3a3a3a;
}
.compare-yes { color: var(--light-grey); }
.compare-yes::before { background: var(--slate-blue); }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-list {
  max-width: 720px;
  border-top: 1px solid var(--dark-grey);
}
.faq-item { border-bottom: 1px solid var(--dark-grey); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.15s ease;
}
.faq-q:hover { color: var(--pure-white); }
.faq-q::after {
  content: '+';
  font-size: 22px;
  color: var(--slate-blue);
  font-weight: 200;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item.is-open .faq-q::after {
  content: '+';
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.is-open .faq-a {
  max-height: 200px;
}
.faq-a p {
  padding-bottom: 22px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--mid-grey);
}

/* ─── FOOTER SOCIAL ──────────────────────────────────────── */
.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
}
.social-link {
  color: var(--mid-grey);
  display: flex;
  align-items: center;
  transition: color 0.15s ease;
}
.social-link:hover { color: var(--light-grey); }
