/* ═══════════════════════════════════════════════════════════
   KORÊ — Global Design System
   Typography: Barlow Condensed (display) + Hanken Grotesk (body) + JetBrains Mono
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;900&family=Hanken+Grotesk:wght@300;400;500&family=JetBrains+Mono:wght@400;500&display=swap');

/* ─── Design tokens ──────────────────────────────────────── */
:root {
  /* Colors */
  --color-black:            #0A0A08;
  --color-cream:            #F4F2ED;
  --color-white:            #FAFAF8;
  --color-lime:             #C8FF3D;
  --color-rose:             #FF3D6B;
  --color-text-muted-dark:  rgba(255, 255, 255, 0.62);
  --color-text-muted-light: rgba(10, 10, 8, 0.52);
  --color-border-light:     rgba(10, 10, 8, 0.08);
  --color-border-dark:      rgba(255, 255, 255, 0.09);

  /* Typography */
  --font-display: 'Barlow Condensed', system-ui, sans-serif;
  --font-body:    'Hanken Grotesk', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Spacing */
  --space-section: clamp(5rem, 10vw, 8rem);
  --space-inner:   clamp(3rem, 6vw, 5rem);

  /* Nav */
  --nav-height: 64px;
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  background: var(--color-cream);
  color: var(--color-black);
  min-height: 100vh;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── Accessibility ──────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--color-lime);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ─── Scroll reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Typography helpers ─────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  display: block;
}
.mono-cap {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.10em;
}
.display-hero {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.display-section {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  display: inline-block;
}
.badge--lime { background: var(--color-lime); color: var(--color-black); }
.badge--rose { background: var(--color-rose); color: var(--color-white); }
.badge--cream { background: var(--color-cream); color: var(--color-black); }
.badge--outline-dark { border: 1px solid var(--color-border-dark); color: var(--color-text-muted-dark); }
.badge--outline-light { border: 1px solid var(--color-border-light); color: var(--color-text-muted-light); }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  min-height: 48px;
  white-space: nowrap;
  transition: opacity 0.18s ease, transform 0.18s ease;
  -webkit-appearance: none;
  position: relative;
}
.btn:hover { opacity: 0.86; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--lime    { background: var(--color-lime);  color: var(--color-black); }
.btn--rose    { background: var(--color-rose);  color: var(--color-white); }
.btn--black   { background: var(--color-black); color: var(--color-white); }
.btn--white   { background: var(--color-white); color: var(--color-black); }
.btn--cream   { background: var(--color-cream); color: var(--color-black); }
.btn--outline-dark {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.30);
}
.btn--outline-dark:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.5); }
.btn--outline-light {
  background: transparent;
  color: var(--color-black);
  border: 1px solid rgba(10,10,8,0.20);
}
.btn--outline-light:hover { background: rgba(10,10,8,0.04); }
.btn--sm { font-size: 11px; padding: 10px 20px; min-height: 38px; letter-spacing: 0.16em; }
.btn--lg { font-size: 15px; padding: 18px 40px; min-height: 56px; }

/* ─── Image card ─────────────────────────────────────────── */
.img-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.img-card:hover img { transform: scale(1.03); }

/* ─── Container ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}
.container--narrow {
  max-width: 880px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-height);
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.nav--transparent {
  background: transparent;
  border-bottom-color: transparent;
}
.nav.nav--solid {
  background: var(--color-black);
  border-bottom-color: var(--color-border-dark);
}
.nav.nav--solid-cream {
  background: var(--color-cream);
  border-bottom-color: var(--color-border-light);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: clamp(1.25rem, 3vw, 2.5rem);
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white);
  transition: color 0.3s ease;
  text-decoration: none;
}
.nav--solid-cream .nav__logo { color: var(--color-black); }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
}
@media (max-width: 767px) { .nav__links { display: none; } }

.nav__link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  transition: color 0.2s ease;
}
.nav__link:hover { color: var(--color-white); }
.nav--solid-cream .nav__link { color: var(--color-text-muted-light); }
.nav--solid-cream .nav__link:hover { color: var(--color-black); }
.nav__link--disabled {
  opacity: 0.38;
  pointer-events: none;
  cursor: default;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Primary nav CTA — "Join Waitlist" */
.nav__cta {
  display: none;
  letter-spacing: 0.14em;
}
@media (min-width: 768px) {
  .nav__cta { display: inline-flex; }
}
/* On cream nav, keep lime CTA */
.nav--solid-cream .nav__cta {
  background: var(--color-black);
  color: var(--color-white);
}

/* Cart icon */
.nav__cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(255,255,255,0.78);
  cursor: pointer;
  transition: color 0.2s ease;
}
.nav__cart:hover { color: var(--color-white); }
.nav--solid-cream .nav__cart { color: var(--color-text-muted-light); }
.nav--solid-cream .nav__cart:hover { color: var(--color-black); }

.nav__cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-lime);
  color: var(--color-black);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav__cart-badge.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 8px;
}
@media (max-width: 767px) { .nav__hamburger { display: flex; } }

.nav__hamburger span {
  display: block;
  height: 1.5px;
  background: rgba(255,255,255,0.85);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav--solid-cream .nav__hamburger span { background: var(--color-black); }
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav panel */
.nav__mobile {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-black);
  z-index: 899;
  display: flex;
  flex-direction: column;
  padding: 2rem clamp(1.25rem, 4vw, 2rem);
  gap: 1rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__mobile.is-open { transform: translateX(0); }

.nav__mobile-link {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border-dark);
  transition: color 0.2s ease;
}
.nav__mobile-link:hover { color: var(--color-lime); }
.nav__mobile-link--disabled { opacity: 0.35; pointer-events: none; }

/* ═══════════════════════════════════════════════════════════
   CART DRAWER
   ═══════════════════════════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,8,0.55);
  z-index: 950;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: var(--color-cream);
  z-index: 960;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--color-border-light);
}
.cart-drawer__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.cart-drawer__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  color: var(--color-text-muted-light);
  transition: color 0.2s ease, background 0.2s ease;
}
.cart-drawer__close:hover { color: var(--color-black); background: var(--color-border-light); }

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 1.75rem;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  gap: 1.5rem;
  padding: 2rem 0;
}
.cart-empty__text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-muted-light);
  line-height: 1.5;
}
.cart-empty__ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.cart-items { display: flex; flex-direction: column; gap: 1rem; }

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border-light);
}
.cart-item__img {
  width: 64px;
  height: 64px;
  border-radius: 2px;
  object-fit: cover;
  background: var(--color-white);
}
.cart-item__info { display: flex; flex-direction: column; gap: 4px; }
.cart-item__name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cart-item__line {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--color-text-muted-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cart-item__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}
.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
}
.cart-item__qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 2px;
  border: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.15s ease;
}
.cart-item__qty-btn:hover { background: var(--color-border-light); }
.cart-item__price {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
}
.cart-item__remove {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-text-muted-light);
  text-decoration: underline;
  cursor: pointer;
  margin-top: 4px;
  display: inline-block;
}
.cart-item__remove:hover { color: var(--color-black); }

.cart-drawer__footer {
  padding: 1.25rem 1.75rem;
  border-top: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.cart-total__label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.cart-total__amount {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}
.cart-checkout-note {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--color-text-muted-light);
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   STATEMENT BAR
   ═══════════════════════════════════════════════════════════ */
.statement-bar {
  background: var(--color-black);
  padding: 14px clamp(1.25rem, 3vw, 2.5rem);
  overflow: hidden;
}
.statement-bar__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.statement-bar__track:hover { animation-play-state: paused; }
.statement-bar__item {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  flex-shrink: 0;
}
.statement-bar__item strong {
  color: var(--color-white);
  font-weight: 500;
}
.statement-bar__dot {
  color: rgba(255,255,255,0.25);
  padding-inline: 0.5rem;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   SPEC ROW (4-column ingredient stats)
   ═══════════════════════════════════════════════════════════ */
.spec-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  margin-block: 2rem;
}
@media (max-width: 640px) {
  .spec-row { grid-template-columns: repeat(2, 1fr); }
}
.spec-cell {
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spec-cell + .spec-cell {
  border-left: 1px solid currentColor;
  padding-left: 1.25rem;
}
@media (max-width: 640px) {
  .spec-cell:nth-child(3) { border-left: none; }
  .spec-cell:nth-child(3), .spec-cell:nth-child(4) {
    border-top: 1px solid currentColor;
  }
}
.spec-cell__value {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}
.spec-cell__label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════════
   COMPOUND KEY
   ═══════════════════════════════════════════════════════════ */
.compound-key {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-block: 1.5rem;
}
.compound-key__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid currentColor;
}
.compound-key__item:first-child { border-top: 1px solid currentColor; }
.compound-key__name {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  flex-shrink: 0;
  min-width: 120px;
}
.compound-key__function {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.75;
}

/* ═══════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--color-border-light);
}
.faq-item:first-child { border-top: 1px solid var(--color-border-light); }

.faq-item--dark { border-bottom-color: var(--color-border-dark); }
.faq-item--dark:first-child { border-top-color: var(--color-border-dark); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  cursor: pointer;
  gap: 1rem;
}
.faq-question__text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}
.faq-question__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
}
.faq-question__icon::before,
.faq-question__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}
.faq-question__icon::before { width: 12px; height: 1.5px; top: 9px; left: 4px; }
.faq-question__icon::after  { width: 1.5px; height: 12px; top: 4px; left: 9px; transition: transform 0.3s ease, opacity 0.3s ease; }
.faq-item.is-open .faq-question__icon::after { transform: rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer__inner {
  padding-bottom: 1.25rem;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-muted-light);
}
.faq-item--dark .faq-answer__inner { color: var(--color-text-muted-dark); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--color-black);
  color: var(--color-white);
  padding-top: clamp(4rem, 8vw, 6rem);
  padding-bottom: 2rem;
  padding-inline: clamp(1.25rem, 3vw, 2.5rem);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-border-dark);
  max-width: 1280px;
  margin-inline: auto;
}
@media (max-width: 1023px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 639px) {
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
}

.footer__brand { max-width: 280px; }
.footer__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}
.footer__tagline {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.footer__social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer__social-link {
  color: var(--color-text-muted-dark);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
}
.footer__social-link:hover { color: var(--color-white); }

.footer__col-title {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.footer__col-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__col-link {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted-dark);
  transition: color 0.2s ease;
}
.footer__col-link:hover { color: var(--color-white); }
.footer__col-link--disabled { opacity: 0.35; pointer-events: none; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  max-width: 1280px;
  margin-inline: auto;
}
.footer__copy {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.08em;
}
.footer__legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__legal-link {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}
.footer__legal-link:hover { color: rgba(255,255,255,0.6); }

/* ═══════════════════════════════════════════════════════════
   PROGRESS BAR
   ═══════════════════════════════════════════════════════════ */
.progress-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.progress-bar {
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.progress-bar__fill {
  height: 100%;
  background: var(--color-lime);
  border-radius: 2px;
  width: 0%;
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.progress-bar__label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.50);
  letter-spacing: 0.10em;
}
.progress-bar__label strong { color: var(--color-lime); }

/* ═══════════════════════════════════════════════════════════
   WAITLIST FORM
   ═══════════════════════════════════════════════════════════ */
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 480px;
}
.waitlist-form__row {
  display: flex;
  gap: 0;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--color-border-dark);
}
.waitlist-form__row--light { border-color: var(--color-border-light); }
.waitlist-form__input {
  flex: 1;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  background: rgba(255,255,255,0.04);
  border: none;
  color: var(--color-white);
  outline: none;
  min-height: 50px;
}
.waitlist-form__input--light {
  background: var(--color-white);
  color: var(--color-black);
}
.waitlist-form__input::placeholder { color: rgba(255,255,255,0.35); }
.waitlist-form__input--light::placeholder { color: var(--color-text-muted-light); }
.waitlist-form__input:focus { background: rgba(255,255,255,0.07); }
.waitlist-form__input--light:focus { background: var(--color-white); }

.waitlist-form__interest {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.waitlist-form__interest-btn {
  min-height: 44px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  border: 1px solid var(--color-border-dark);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted-dark);
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
}
.waitlist-form__interest-btn:hover { border-color: rgba(255,255,255,0.35); color: var(--color-white); }
.waitlist-form__interest-btn.is-selected { border-color: var(--color-lime); color: var(--color-lime); background: rgba(200,255,61,0.06); }
.waitlist-form__interest-btn--rose.is-selected { border-color: var(--color-rose); color: var(--color-rose); background: rgba(255,61,107,0.06); }

.waitlist-form__note {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255,255,255,0.30);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.waitlist-form__note--light { color: var(--color-text-muted-light); }
.waitlist-form__success {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-lime);
  display: none;
  padding: 1rem 0;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE STICKY CTA
   ═══════════════════════════════════════════════════════════ */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--color-black);
  border-top: 1px solid var(--color-border-dark);
  padding: 12px 1.25rem;
  display: none;
  align-items: center;
  gap: 10px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 767px) {
  .mobile-sticky-cta { display: flex; }
  .mobile-sticky-cta.is-visible { transform: translateY(0); }
}
.mobile-sticky-cta .btn { flex: 1; justify-content: center; font-size: 12px; min-height: 44px; }
.mobile-sticky-cta__dismiss {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted-dark);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   PROOF PILLARS CARDS
   ═══════════════════════════════════════════════════════════ */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border-light);
  border: 1px solid var(--color-border-light);
  border-radius: 2px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
}
.proof-card {
  background: var(--color-white);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.proof-card__number {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}
.proof-card__label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-muted-light);
  line-height: 1.5;
}
.proof-card__source {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(10,10,8,0.30);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-top: auto;
}

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (used on inner pages)
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-section) clamp(1.25rem, 4vw, 3rem);
  padding-top: calc(var(--nav-height) + 4rem);
  position: relative;
  overflow: hidden;
}
.page-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.6;
}
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 10vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.page-hero__sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  max-width: 520px;
  margin-top: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════ */
.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.u-text-center { text-align: center; }
.u-text-muted-dark { color: var(--color-text-muted-dark); }
.u-text-muted-light { color: var(--color-text-muted-light); }
.u-color-lime { color: var(--color-lime); }
.u-color-rose { color: var(--color-rose); }
.u-mt-auto { margin-top: auto; }
.u-mb-xs { margin-bottom: 0.5rem; }
.u-mb-sm { margin-bottom: 1rem; }
.u-mb-md { margin-bottom: 1.5rem; }
.u-mb-lg { margin-bottom: 2.5rem; }
.u-mb-xl { margin-bottom: 4rem; }
