/* ============================================================
   VITAL INFINITY – OBSIDIAN LUXURY DARK DESIGN SYSTEM
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── ROOT VARIABLES ─────────────────────────────────────── */
:root {
  --bg:          #050505;
  --bg-card:     #111111;
  --bg-card-2:   #181818;
  --bg-card-3:   #1E1E1E;
  --gold:        #D6B46A;
  --gold-light:  #E8CC8A;
  --gold-dark:   #B8943A;
  --ivory:       #F7F3EA;
  --muted:       #8A8A8A;
  --border:      rgba(214,180,106,.15);
  --border-soft: rgba(255,255,255,.06);

  /* Product colors */
  --detox:  #4A9868;
  --energy: #D6B46A;
  --glow:   #C87848;
  --shape:  #C84870;
  --cherry: #C0392B;
  --mango:  #E8943A;
  --lemon:  #D4AF37;
  --eps-green: #3D9B5A;
  --eps-orange:#E07A30;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Layout */
  --max-w:  1280px;
  --ease:   cubic-bezier(.25,.46,.45,.94);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ivory);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ─── CUSTOM CURSOR ──────────────────────────────────────── */
#cursor-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: opacity .3s;
}
#cursor-ring {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid rgba(214,180,106,.6);
  position: fixed; top: 0; left: 0; z-index: 9998;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform .12s var(--ease), width .25s, height .25s, opacity .3s;
}
body:hover #cursor-dot, body:hover #cursor-ring { opacity: 1; }

/* ─── GRAIN OVERLAY ──────────────────────────────────────── */
.grain-overlay {
  position: fixed; inset: 0; z-index: 9997;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

/* ─── FOUNDERS ANNOUNCEMENT BAR ─────────────────────────── */
.founders-bar {
  background: linear-gradient(90deg, #1A0E00 0%, #2D1900 50%, #1A0E00 100%);
  border-bottom: 1px solid var(--gold-dark);
  padding: 10px 24px;
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 20px;
  position: relative; z-index: 200;
  font-size: .82rem; letter-spacing: .06em; color: var(--gold-light);
  font-family: var(--font-body); font-weight: 400;
}
.founders-bar-cta {
  background: var(--gold);
  color: #0A0600;
  padding: 5px 16px;
  border-radius: 2px;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .08em;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.founders-bar-cta:hover { background: var(--gold-light); transform: scale(1.02); }
.founders-bar-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--gold); opacity: .5;
  font-size: 1.1rem; padding: 4px 8px; transition: opacity .2s;
}
.founders-bar-close:hover { opacity: 1; }

/* ─── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  background: rgba(5,5,5,.7);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.navbar.scrolled { background: rgba(5,5,5,.95); }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 32px; width: auto; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: .83rem; font-weight: 500; letter-spacing: .06em;
  color: var(--muted); text-transform: uppercase;
  transition: color .25s; position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--ivory); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 9px 22px;
  font-size: .8rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  transition: all .25s; border-radius: 2px;
}
.nav-cta:hover { background: var(--gold); color: #0A0600; }
.nav-toggle { display: none; background: none; border: none; color: var(--ivory); font-size: 1.4rem; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s var(--ease);
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(5,5,5,.85) 0%, rgba(5,5,5,.4) 60%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 80px; max-width: 680px;
}
.hero-eyebrow {
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; font-weight: 500;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300; line-height: 1.05;
  color: var(--ivory); margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1rem; color: var(--muted); line-height: 1.7;
  margin-bottom: 40px; max-width: 480px; font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: #0A0600;
  padding: 14px 32px; font-size: .85rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; border-radius: 2px;
  border: none; transition: all .25s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent; border: 1px solid rgba(247,243,234,.25);
  color: var(--ivory); padding: 14px 32px; font-size: .85rem;
  font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  border-radius: 2px; transition: all .25s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.hero-dots {
  position: absolute; bottom: 40px; left: 80px; z-index: 2;
  display: flex; gap: 10px;
}
.hero-dot {
  width: 24px; height: 2px; background: rgba(255,255,255,.25);
  transition: all .3s; cursor: pointer; border: none; padding: 0;
}
.hero-dot.active { background: var(--gold); width: 40px; }

/* ─── SECTION LAYOUTS ────────────────────────────────────── */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-card); }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.section-header { text-align: center; margin-bottom: 64px; }
.eyebrow {
  font-size: .73rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; display: block; font-weight: 500;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1.15;
  color: var(--ivory);
}
.section-title em { font-style: italic; color: var(--gold); }
.section-lead {
  margin-top: 16px; color: var(--muted); max-width: 560px;
  margin-left: auto; margin-right: auto; font-weight: 300; font-size: .95rem;
}
.divider {
  width: 40px; height: 1px; background: var(--gold);
  margin: 20px auto 0; opacity: .5;
}

/* ─── HEALTH LINE GRID ───────────────────────────────────── */
.health-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: transform .4s var(--ease), border-color .4s;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); }
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent-color, var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover { border-color: var(--accent-color, var(--border)); }

.product-card.detox  { --accent-color: var(--detox); }
.product-card.energy { --accent-color: var(--energy); }
.product-card.glow   { --accent-color: var(--glow); }
.product-card.shape  { --accent-color: var(--shape); }

.card-image-wrap {
  position: relative; background: var(--bg-card-2); overflow: hidden;
  aspect-ratio: 1/1;
}
.card-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.product-card:hover .card-image-wrap img { transform: scale(1.05); }
.card-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--accent-color, var(--gold));
  color: #0A0600; font-size: .65rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
}
.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-subtitle {
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-color, var(--gold)); margin-bottom: 6px; font-weight: 500;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 400; color: var(--ivory); margin-bottom: 12px;
}
.card-desc {
  font-size: .83rem; color: var(--muted); line-height: 1.65;
  margin-bottom: 16px; flex: 1; font-weight: 300;
}
.card-ingredients {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px;
}
.ingredient-tag {
  font-size: .68rem; padding: 3px 8px;
  border: 1px solid var(--border-soft);
  border-radius: 20px; color: var(--muted); letter-spacing: .04em;
}
.card-footer-info {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px; border-top: 1px solid var(--border-soft);
}
.card-volume { font-size: .78rem; color: var(--muted); }
.card-volume strong { color: var(--ivory); display: block; font-size: .9rem; }
.card-soon {
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-color, var(--gold)); font-weight: 500;
}
.card-btn {
  margin-top: 20px;
  background: transparent; border: 1px solid var(--accent-color, var(--gold));
  color: var(--accent-color, var(--gold)); padding: 10px 0; width: 100%;
  font-size: .78rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 2px; transition: all .25s;
}
.card-btn:hover { background: var(--accent-color, var(--gold)); color: #0A0600; }

/* ─── HYDRIQ SECTION ─────────────────────────────────────── */
.hydriq-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-bottom: 80px;
}
.hydriq-hero-img {
  border-radius: 4px; overflow: hidden; position: relative;
}
.hydriq-hero-img img { width: 100%; }
.hydriq-hero-img::before {
  content: ''; position: absolute; inset: -1px;
  border: 1px solid var(--border);
  border-radius: 4px; z-index: 1; pointer-events: none;
}
.hydriq-brand {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300;
  color: var(--ivory); line-height: 1;
  margin-bottom: 8px;
}
.hydriq-brand span { color: var(--gold); }
.hydriq-sub { font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.hydriq-desc { color: var(--muted); font-size: .95rem; line-height: 1.75; font-weight: 300; margin-bottom: 32px; }
.stats-row { display: flex; gap: 32px; margin-bottom: 40px; flex-wrap: wrap; }
.stat-item { }
.stat-value {
  font-family: var(--font-display); font-size: 2rem; font-weight: 400;
  color: var(--gold); line-height: 1;
}
.stat-label { font-size: .72rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; }

.badges-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.badge {
  background: var(--bg-card-2); border: 1px solid var(--border-soft);
  border-radius: 20px; padding: 5px 14px;
  font-size: .72rem; color: var(--muted); letter-spacing: .06em;
}

/* Flavor cards */
.flavor-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.flavor-card {
  background: var(--bg-card-2); border: 1px solid var(--border-soft);
  border-radius: 4px; overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s;
}
.flavor-card:hover { transform: translateY(-6px); border-color: var(--accent-color); }
.flavor-card.cherry  { --accent-color: var(--cherry); }
.flavor-card.golden  { --accent-color: var(--mango); }
.flavor-card.lemon   { --accent-color: var(--lemon); }
.flavor-card-img { position: relative; aspect-ratio: 1/1; overflow: hidden; }
.flavor-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.flavor-card:hover .flavor-card-img img { transform: scale(1.05); }
.flavor-card-body { padding: 24px; }
.flavor-name {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 400;
  color: var(--ivory); margin-bottom: 6px;
}
.flavor-accent { color: var(--accent-color); }
.flavor-sub { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.flavor-desc { font-size: .83rem; color: var(--muted); line-height: 1.6; font-weight: 300; margin-bottom: 16px; }
.flavor-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.flavor-tag {
  font-size: .65rem; padding: 3px 8px; border: 1px solid var(--border-soft);
  border-radius: 20px; color: var(--muted); letter-spacing: .04em;
}

/* Nutrition panel */
.nutrition-panel {
  background: var(--bg-card-2); border: 1px solid var(--border-soft);
  border-radius: 4px; padding: 32px; margin-top: 48px;
}
.nutrition-panel-title {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 400;
  color: var(--ivory); margin-bottom: 24px;
}
.nutrition-table { width: 100%; border-collapse: collapse; }
.nutrition-table th, .nutrition-table td {
  padding: 10px 16px; text-align: left;
  font-size: .82rem; border-bottom: 1px solid var(--border-soft);
}
.nutrition-table th { color: var(--muted); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; font-size: .72rem; }
.nutrition-table td { color: var(--ivory); }
.nutrition-table td:last-child { color: var(--gold); text-align: right; }
.nutrition-table tr:last-child td, .nutrition-table tr:last-child th { border-bottom: none; }

/* ─── EPS SECTION ────────────────────────────────────────── */
.eps-hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.eps-flavors { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.eps-flavor-card {
  background: var(--bg-card-2); border: 1px solid var(--border-soft);
  border-radius: 4px; overflow: hidden;
  transition: transform .4s, border-color .4s;
}
.eps-flavor-card:hover { transform: translateY(-4px); }
.eps-flavor-card.eps-lemon { --eps-accent: var(--eps-green); }
.eps-flavor-card.eps-mango { --eps-accent: var(--eps-orange); }
.eps-flavor-card:hover { border-color: var(--eps-accent); }
.eps-flavor-img { aspect-ratio: 2/3; overflow: hidden; }
.eps-flavor-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.eps-flavor-card:hover .eps-flavor-img img { transform: scale(1.04); }
.eps-flavor-body { padding: 20px; }
.eps-flavor-name {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 400;
  color: var(--ivory); margin-bottom: 4px;
}
.eps-flavor-accent { color: var(--eps-accent); }
.eps-flavor-desc { font-size: .8rem; color: var(--muted); line-height: 1.6; font-weight: 300; }
.eps-ingredients {
  font-size: .72rem; color: var(--muted); margin-top: 10px; line-height: 1.5;
}
.eps-key-data { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 24px; margin-bottom: 28px; }
.eps-key-item { }
.eps-key-value {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; color: var(--gold); line-height: 1;
}
.eps-key-label { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-top: 3px; }

/* ─── BRAND STORY ────────────────────────────────────────── */
.brand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.brand-image { border-radius: 4px; overflow: hidden; }
.brand-image img { width: 100%; }
.value-list { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.value-item { display: flex; gap: 16px; align-items: flex-start; }
.value-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-card-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0; color: var(--gold);
}
.value-text h4 { font-size: .85rem; font-weight: 600; color: var(--ivory); margin-bottom: 4px; }
.value-text p { font-size: .82rem; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-soft);
}
.faq-question {
  width: 100%; background: none; border: none; color: var(--ivory);
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; text-align: left; font-family: var(--font-body);
  font-size: .92rem; font-weight: 500; gap: 16px;
  transition: color .2s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold); transition: transform .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease), padding .3s;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding-bottom: 20px; color: var(--muted); font-size: .88rem; line-height: 1.75; font-weight: 300; }

/* ─── NEWSLETTER ─────────────────────────────────────────── */
.newsletter-section {
  background: linear-gradient(135deg, #0E0800 0%, #1A0E00 50%, #0E0800 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  text-align: center; padding: 80px 0;
}
.newsletter-form {
  display: flex; gap: 12px; max-width: 440px; margin: 32px auto 0;
}
.newsletter-input {
  flex: 1; background: rgba(255,255,255,.05); border: 1px solid var(--border);
  color: var(--ivory); padding: 13px 18px; border-radius: 2px;
  font-family: var(--font-body); font-size: .88rem;
  outline: none; transition: border-color .25s;
}
.newsletter-input::placeholder { color: var(--muted); }
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-form .btn-primary { flex-shrink: 0; }
.newsletter-note { font-size: .72rem; color: var(--muted); margin-top: 12px; }

/* ─── COOKIE BANNER ──────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: rgba(17,17,17,.97);
  border-top: 1px solid var(--border);
  padding: 20px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%); transition: transform .4s var(--ease);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-text { font-size: .82rem; color: var(--muted); flex: 1; line-height: 1.6; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: var(--gold); color: #0A0600; border: none;
  padding: 9px 20px; font-size: .78rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; border-radius: 2px; transition: background .2s;
}
.cookie-accept:hover { background: var(--gold-light); }
.cookie-decline {
  background: none; border: 1px solid var(--border);
  color: var(--muted); padding: 9px 20px; font-size: .78rem;
  letter-spacing: .06em; text-transform: uppercase; border-radius: 2px; transition: all .2s;
}
.cookie-decline:hover { border-color: var(--muted); color: var(--ivory); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: #030303; border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 60px;
  border-bottom: 1px solid var(--border-soft);
}
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 28px; }
.footer-tagline { font-size: .83rem; color: var(--muted); line-height: 1.6; font-weight: 300; max-width: 280px; }
.footer-col h4 {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  font-size: .83rem; color: var(--muted); transition: color .25s;
}
.footer-col li a:hover { color: var(--ivory); }
.footer-bottom {
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.footer-legal { font-size: .74rem; color: #555; }
.footer-legal a { color: #555; transition: color .2s; }
.footer-legal a:hover { color: var(--muted); }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .9rem;
  transition: border-color .25s, color .25s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ─── MODAL ──────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,.85);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 4px; max-width: 640px; width: 100%;
  max-height: 85vh; overflow-y: auto;
  transform: translateY(24px); transition: transform .35s var(--ease);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 32px; border-bottom: 1px solid var(--border-soft);
}
.modal-title {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--ivory);
}
.modal-close {
  background: none; border: none; color: var(--muted); font-size: 1.5rem;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: color .2s, background .2s;
}
.modal-close:hover { color: var(--ivory); background: var(--bg-card-2); }
.modal-body { padding: 28px 32px; }

/* ─── INNER PAGES ────────────────────────────────────────── */
.page-hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border-soft);
}
.page-hero .eyebrow { text-align: center; display: block; }
.page-hero .section-title { text-align: center; }
.page-content { padding: 80px 0; max-width: 800px; margin: 0 auto; }
.page-content h2 {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 400;
  color: var(--ivory); margin: 40px 0 16px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 {
  font-size: 1rem; font-weight: 600; color: var(--gold); margin: 24px 0 10px;
}
.page-content p { font-size: .9rem; color: var(--muted); line-height: 1.8; margin-bottom: 16px; font-weight: 300; }
.page-content ul { margin: 0 0 16px 20px; }
.page-content ul li { font-size: .9rem; color: var(--muted); line-height: 1.8; margin-bottom: 6px; font-weight: 300; }
.page-content a { color: var(--gold); }
.page-content table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.page-content th, .page-content td {
  padding: 10px 16px; border: 1px solid var(--border-soft);
  font-size: .85rem; text-align: left;
}
.page-content th { background: var(--bg-card-2); color: var(--gold); font-weight: 500; }
.page-content td { color: var(--muted); }
.highlight-box {
  background: linear-gradient(135deg, rgba(214,180,106,.05), rgba(214,180,106,.02));
  border: 1px solid var(--border); border-radius: 4px;
  padding: 24px 28px; margin-bottom: 24px;
}
.highlight-box strong { color: var(--ivory); }

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; }
.contact-form-wrap { }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { display: block; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--bg-card-2);
  border: 1px solid var(--border-soft); border-radius: 2px;
  color: var(--ivory); padding: 13px 16px;
  font-family: var(--font-body); font-size: .88rem;
  outline: none; transition: border-color .25s;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; cursor: pointer; }
.form-check { display: flex; gap: 12px; align-items: flex-start; }
.form-check input[type=checkbox] { margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; }
.form-check label { font-size: .8rem; color: var(--muted); line-height: 1.6; font-weight: 300; }
.form-check a { color: var(--gold); }
.form-submit { margin-top: 28px; }
.contact-info { }
.contact-info-item { margin-bottom: 32px; }
.contact-info-label { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; font-weight: 500; }
.contact-info-value { font-size: .9rem; color: var(--muted); line-height: 1.7; font-weight: 300; }
.contact-info-value strong { color: var(--ivory); }
.form-success {
  display: none; background: rgba(74,152,104,.1); border: 1px solid var(--detox);
  border-radius: 4px; padding: 20px 24px; color: var(--detox); text-align: center; margin-top: 20px;
}

/* ─── FOUNDERS LOGIN ─────────────────────────────────────── */
.founders-login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #0E0700 0%, #1A0F00 40%, #0E0800 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.founders-login-page::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 40%, rgba(214,180,106,.08) 0%, transparent 70%);
}
.founders-login-card {
  background: rgba(20,12,0,.8);
  border: 1px solid rgba(214,180,106,.25);
  border-radius: 4px;
  padding: 56px 48px;
  max-width: 440px; width: 100%;
  position: relative; z-index: 2;
  backdrop-filter: blur(12px);
}
.founders-logo { text-align: center; margin-bottom: 10px; }
.founders-logo img { height: 36px; margin: 0 auto; }
.founders-login-title {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 300;
  color: var(--gold-light); text-align: center; margin-bottom: 6px;
}
.founders-login-sub { font-size: .82rem; color: var(--muted); text-align: center; margin-bottom: 40px; }
.founders-form-input {
  width: 100%; background: rgba(255,255,255,.04);
  border: 1px solid rgba(214,180,106,.2); border-radius: 2px;
  color: var(--ivory); padding: 14px 18px;
  font-family: var(--font-body); font-size: .9rem;
  outline: none; transition: border-color .25s; margin-bottom: 14px;
}
.founders-form-input::placeholder { color: rgba(138,138,138,.6); }
.founders-form-input:focus { border-color: var(--gold); }
.founders-login-btn {
  width: 100%; background: var(--gold); color: #0A0600;
  border: none; padding: 14px; font-size: .85rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; border-radius: 2px;
  transition: background .25s; margin-top: 4px;
}
.founders-login-btn:hover { background: var(--gold-light); }
.founders-login-error {
  display: none; background: rgba(200,72,112,.1); border: 1px solid var(--shape);
  border-radius: 2px; padding: 10px 16px; font-size: .8rem; color: var(--shape);
  text-align: center; margin-top: 14px;
}
.founders-back { display: block; text-align: center; margin-top: 24px; font-size: .8rem; color: var(--muted); transition: color .2s; }
.founders-back:hover { color: var(--gold); }

/* ─── FOUNDERS PAGE ──────────────────────────────────────── */
.founders-page-body {
  background: linear-gradient(180deg, #0E0700 0%, #1A0F00 30%, #0E0800 100%);
  min-height: 100vh;
}
.founders-nav {
  background: rgba(14,7,0,.8); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(214,180,106,.2);
  padding: 0 40px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
}
.founders-nav-brand {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 300;
  color: var(--gold-light); display: flex; align-items: center; gap: 12px;
}
.founders-nav-brand img { height: 28px; }
.founders-nav-badge {
  background: rgba(214,180,106,.15); border: 1px solid rgba(214,180,106,.3);
  color: var(--gold); font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px; font-weight: 600;
}
.founders-nav-logout { font-size: .78rem; color: var(--muted); transition: color .2s; }
.founders-nav-logout:hover { color: var(--gold); }

.founders-hero-section {
  text-align: center; padding: 80px 40px 60px;
  border-bottom: 1px solid rgba(214,180,106,.1);
}
.founders-hero-number {
  font-family: var(--font-display); font-size: clamp(4rem, 10vw, 8rem); font-weight: 300;
  color: rgba(214,180,106,.12); line-height: 1; margin-bottom: -30px;
}
.founders-hero-title {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 300;
  color: var(--gold-light); position: relative; z-index: 1;
}
.founders-hero-sub { font-size: .95rem; color: var(--muted); max-width: 560px; margin: 16px auto 40px; line-height: 1.75; }

.founders-countdown {
  display: flex; gap: 32px; justify-content: center; margin-bottom: 48px;
}
.countdown-block { text-align: center; }
.countdown-value {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 300;
  color: var(--gold); line-height: 1; display: block;
}
.countdown-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); margin-top: 6px; }
.countdown-sep {
  font-family: var(--font-display); font-size: 2rem; color: rgba(214,180,106,.3);
  align-self: center; padding-bottom: 20px;
}

.founders-benefits-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
  margin-top: 48px;
}
.founders-benefit-card {
  background: rgba(214,180,106,.04);
  border: 1px solid rgba(214,180,106,.12);
  border-radius: 4px; padding: 32px 28px;
  transition: border-color .3s, background .3s;
}
.founders-benefit-card:hover {
  border-color: rgba(214,180,106,.3);
  background: rgba(214,180,106,.07);
}
.benefit-icon { font-size: 1.8rem; margin-bottom: 16px; }
.benefit-title {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 400;
  color: var(--gold-light); margin-bottom: 10px;
}
.benefit-text { font-size: .83rem; color: var(--muted); line-height: 1.7; font-weight: 300; }

.founders-pricing {
  background: rgba(214,180,106,.04); border: 1px solid rgba(214,180,106,.15);
  border-radius: 4px; padding: 40px; margin-top: 48px;
}
.founders-pricing-title {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 400;
  color: var(--gold-light); margin-bottom: 24px; text-align: center;
}
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table th, .pricing-table td {
  padding: 12px 20px; text-align: left; font-size: .85rem;
  border-bottom: 1px solid rgba(214,180,106,.08);
}
.pricing-table th { color: var(--gold); font-weight: 600; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.pricing-table td { color: var(--muted); }
.pricing-table td:nth-child(2) { color: #999; text-decoration: line-through; }
.pricing-table td:nth-child(3) { color: var(--gold); font-weight: 600; }
.pricing-table td:nth-child(4) { color: var(--detox); font-size: .78rem; font-weight: 500; }
.pricing-table tr:last-child td, .pricing-table tr:last-child th { border-bottom: none; }

.founders-cta-section { text-align: center; padding: 48px 0; }
.founders-register-btn {
  background: var(--gold); color: #0A0600;
  border: none; padding: 16px 48px; font-size: .9rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; border-radius: 2px;
  transition: all .25s;
}
.founders-register-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.founders-register-note { font-size: .78rem; color: var(--muted); margin-top: 12px; }

/* ─── B2B PAGE ───────────────────────────────────────────── */
.b2b-hero { background: linear-gradient(135deg, #050505 0%, #0E0E1A 100%); padding: 100px 0; }
.b2b-partner-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.b2b-partner-card {
  background: var(--bg-card); border: 1px solid var(--border-soft);
  border-radius: 4px; padding: 32px 28px; transition: border-color .3s;
}
.b2b-partner-card:hover { border-color: var(--gold); }
.b2b-partner-icon { font-size: 2rem; margin-bottom: 16px; }
.b2b-partner-title {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 400;
  color: var(--ivory); margin-bottom: 10px;
}
.b2b-partner-text { font-size: .83rem; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .health-grid { grid-template-columns: repeat(2,1fr); }
  .hydriq-hero { grid-template-columns: 1fr; gap: 40px; }
  .eps-hero { grid-template-columns: 1fr; gap: 40px; }
  .brand-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .b2b-partner-grid { grid-template-columns: repeat(2,1fr); }
  .founders-benefits-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .hero-content { padding: 0 24px; }
  .hero-dots { left: 24px; }
  .navbar { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column;
    position: fixed; inset: 72px 0 0 0;
    background: rgba(5,5,5,.97);
    padding: 32px 24px; gap: 24px; z-index: 99;
  }
  .nav-links.mobile-open .nav-cta { display: block; text-align: center; }
  .health-grid { grid-template-columns: 1fr; }
  .flavor-grid { grid-template-columns: 1fr; }
  .eps-flavors { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .newsletter-form { flex-direction: column; }
  .founders-benefits-grid { grid-template-columns: 1fr; }
  .founders-countdown { gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .b2b-partner-grid { grid-template-columns: 1fr; }
  .founders-login-card { padding: 36px 28px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .hydriq-hero { order: 0; }
}

/* ─── UTILITY ────────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.coming-soon-section {
  background: linear-gradient(135deg, rgba(214,180,106,.04), rgba(214,180,106,.01));
  border: 1px dashed rgba(214,180,106,.2);
  border-radius: 4px; padding: 24px; text-align: center;
  color: var(--muted); font-size: .85rem;
}
.coming-soon-section strong { color: var(--gold); }

/* Scroll fade-in */
.fade-up {
  opacity: 0; transform: translateY(32px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
