/* ===== VEYRA MEDS — Homepage Styles (CORRECTED) ===== */
/* Design Foundation (Master Vision Section 8) */
/* Primary bg: #FFFFFF | Navy #040D2E | Royal #061155 | Electric #099EF8 | Violet #6B0DD8 | Teal #0384AB | Gold #FFD700 | Amber #FFB700 */

:root {
  --navy: #040D2E;
  --royal: #061155;
  --electric: #099EF8;
  --violet: #6B0DD8;
  --teal: #0384AB;
  --gold: #FFD700;
  --amber: #FFB700;
  --white: #FFFFFF;
  --bg: #FFFFFF;
  --text: #040D2E;
  --text-muted: #5B6B8F;
  --border: #E5EAF2;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --max-width: 1440px;
  --header-height: 112px;
  --font-heading: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --gradient-cta: linear-gradient(100deg, #099EF8, #6B0DD8);
  --gradient-navy: linear-gradient(135deg, #040D2E 0%, #061155 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== GLOBAL HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 1000; width: 100%;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(4, 13, 46, 0.06);
}
.header-inner {
  width: min(1280px, calc(100% - 64px));
  min-height: 140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  align-items: center;
  column-gap: 28px;
  position: relative;
}
.header-brand {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-decoration: none;
}

.header-tagline {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.2;
  white-space: nowrap;
  background: linear-gradient(90deg, #061155 0%, #099EF8 35%, #6B0DD8 65%, #FFB700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 2vw, 34px);
  white-space: nowrap;
}
.header-nav a { color: var(--navy); font-size: 18px; font-weight: 600; white-space: nowrap; transition: color 0.2s; }
.header-nav a:hover { color: var(--electric); }
.header-nav a.active { color: var(--electric); font-weight: 700; position: relative; }
.header-nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #099EF8, #6B0DD8);
}
.header-actions { display: flex; align-items: center; gap: 22px; flex: 0 0 auto; white-space: nowrap; }
.header-nav a, .header-actions a { flex: 0 0 auto; }
.btn-earn-income, .btn-login { color: var(--navy); font-size: 16px; font-weight: 600; white-space: nowrap; transition: color 0.2s; }
.header-actions .btn-cta {
  background: linear-gradient(100deg, #099EF8, #6B0DD8);
  border-radius: 13px;
  padding: 0 30px;
  font-size: 16px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-cta {
  padding: 14px 24px; border-radius: var(--radius);
  background: linear-gradient(135deg, #099EF8, #6B0DD8);
  color: #FFFFFF;
  font-size: 14px; font-weight: 700; white-space: nowrap; transition: opacity 0.2s;
  letter-spacing: 0.3px;
}
.btn-cta:hover { opacity: 0.9; }
.mobile-menu-btn { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; }
.mobile-only { display: none; }
.mobile-menu-btn span { display: block; height: 2px; margin: 5px 0; background: var(--royal); }

/* ===== HERO ===== */
.hero {
  width: 100%; max-width: var(--max-width); margin: 0 auto;
  padding: 18px 28px 8px; display: grid; grid-template-columns: 42fr 58fr;
  gap: 20px; align-items: center;
}
.hero-copy { max-width: 580px; }

/* Desktop and laptop */
.hero-copy .hero-desc {
  margin-bottom: 28px;
}

/* Tablet */
@media (max-width: 1024px) {
  .hero-copy .hero-desc {
    margin-bottom: 24px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero-copy .hero-desc {
    margin-bottom: 20px;
  }
}
.hero-tagline {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.2;
  margin-bottom: 24px;
}
.tag-blue { color: #099EF8; }
.tag-violet { color: #6B0DD8; }
.tag-coral { color: #FF6B35; }
.hero-headline { font-family: var(--font-heading); font-size: 72px; font-weight: 800; line-height: 1.0; color: var(--navy); margin-bottom: 28px; letter-spacing: -1.8px; }
.hero-sub { font-size: 21px; line-height: 1.48; color: var(--text-muted); margin-bottom: 36px; max-width: 580px; }
.hero-cta { padding: 19px 38px; font-size: 19px; font-weight: 700; display: inline-block; border-radius: var(--radius); }
.hero-visual { display: flex; align-items: center; justify-content: flex-end; min-height: 520px; position: relative; padding-bottom: 12px; }
.hero-product-visual { width: 100%; max-width: 840px; }

/* ===== TRUST BAR (6 items) ===== */
.trust-bar { width: 100%; background: transparent; padding: 0 28px 12px; }
.trust-bar-inner {
  max-width: 1220px; margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid rgba(4, 13, 46, 0.08);
  border-radius: 17px;
  padding: 16px 24px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 2px 12px rgba(4, 13, 46, 0.05);
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: var(--royal); font-size: 13px; font-weight: 600;
  justify-content: center;
  min-width: 0;
  box-sizing: border-box;
  position: relative;
}
.trust-label { white-space: nowrap; }
.trust-icon-img { width: 33px; height: 33px; flex-shrink: 0; object-fit: contain; }

/* Desktop separators: border-right on items 1-5, not 6 */
.trust-item:not(:nth-child(6))::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: rgba(4, 13, 46, 0.08);
}

/* Tablet: 3 columns × 2 rows (769px–1100px) */
@media (max-width: 1100px) {
  .trust-bar-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 24px;
  }
  /* No separator after items 3 and 6 (end of each row) */
  .trust-item:nth-child(3)::after,
  .trust-item:nth-child(6)::after {
    display: none;
  }
}

/* Mobile: 2 columns × 3 rows (430px–768px) */
@media (max-width: 768px) {
  .trust-bar-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 26px;
  }
  /* No separator after items 2, 4, 6 (end of each row) */
  .trust-item:nth-child(2)::after,
  .trust-item:nth-child(4)::after,
  .trust-item:nth-child(6)::after {
    display: none;
  }
}

/* ===== SECTIONS ===== */
.section { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 80px 28px; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--electric); margin-bottom: 12px; }
.section-title { font-family: var(--font-heading); font-size: 40px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.section-sub { font-size: 18px; color: var(--text-muted); max-width: 640px; margin: 0 auto; }

/* ===== PROGRAM CARDS (CSS-native treatment) ===== */
/* ===== WEIGHT MANAGEMENT PROGRAMS — FINAL BUILD ===== */
.programs-section {
  width: 100%; max-width: 1240px; margin: 0 auto;
  padding: 80px 24px 90px;
}

/* --- SECTION HEADER --- */
.programs-header { text-align: center; margin-bottom: 48px; }
.programs-eyebrow {
  font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em; color: #099EF8;
  margin-bottom: 16px;
}
.programs-title {
  font-family: 'Poppins', sans-serif; font-size: 64px; font-weight: 800;
  line-height: 1.05; color: #040D2E; margin-bottom: 18px;
}
.programs-sub {
  font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 450;
  line-height: 1.5; color: #6B7280; max-width: 760px; margin: 0 auto;
}

/* --- CARD GRID --- */
.program-cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: stretch;
  padding-top: 28px; /* room for badges */
}

/* --- GLOBAL CARD CONSTRUCTION --- */
.pcard {
  position: relative; border-radius: 28px; overflow: visible;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  min-height: 760px;
  display: flex; flex-direction: column;
  box-shadow: 0 18px 50px rgba(4, 13, 46, 0.12);
}
.pcard:hover { transform: translateY(-4px); }

/* --- CARD BACKGROUNDS --- */
.pcard-core {
  background: linear-gradient(160deg, #061155 0%, #040D2E 50%, #061155 100%);
  border: 1px solid rgba(9, 158, 248, 0.2);
}
.pcard-accelerate {
  background: linear-gradient(160deg, #2A0C82 0%, #061155 55%, #1A0A5E 100%);
  border: 1px solid rgba(139, 46, 232, 0.2);
}
.pcard-max {
  background: linear-gradient(160deg, #036C8E 0%, #04556E 40%, #040D2E 100%);
  border: 1px solid rgba(34, 211, 238, 0.2);
}

/* --- WAVE / LIGHT TREATMENT --- */
.pcard-wave {
  position: absolute; bottom: 0; left: 0; right: 0; height: 55%;
  pointer-events: none; z-index: 0; border-radius: 0 0 28px 28px;
  overflow: hidden;
}
.pcard-core .pcard-wave {
  background:
    radial-gradient(ellipse 90% 70% at 30% 90%, rgba(9, 158, 248, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 75% 85%, rgba(9, 158, 248, 0.15) 0%, transparent 60%);
}
.pcard-accelerate .pcard-wave {
  background:
    radial-gradient(ellipse 90% 70% at 35% 85%, rgba(139, 46, 232, 0.25) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 70% 90%, rgba(168, 85, 247, 0.18) 0%, transparent 60%);
}
.pcard-max .pcard-wave {
  background:
    radial-gradient(ellipse 90% 70% at 30% 88%, rgba(34, 211, 238, 0.2) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 75% 85%, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
}

/* --- BADGE WRAPPER --- */
.pcard-badge-wrap {
  position: absolute; top: 0; left: 0; right: 0;
  height: 0; z-index: 4; overflow: visible;
  display: flex; justify-content: center;
}
.pcard-badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #7C3AED, #A855F7);
  color: #FFFFFF; font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 800;
  letter-spacing: 0.5px; padding: 10px 22px; border-radius: 999px;
  white-space: nowrap; text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}
.pcard-badge-max {
  background: linear-gradient(135deg, #14B8A6, #22D3EE);
  box-shadow: 0 4px 20px rgba(20, 184, 166, 0.4);
}

/* --- CARD INNER CONTENT --- */
.pcard-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; height: 100%;
  padding: 40px 34px 30px;
  text-align: center;
}

/* --- PROGRAM NAME HIERARCHY --- */
.pcard-name-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.pcard-name-veyra {
  font-family: 'Poppins', sans-serif; font-size: 26px; font-weight: 800;
  color: #FFFFFF; letter-spacing: 0.02em; line-height: 1;
}
.pcard-name-accent {
  font-family: 'Poppins', sans-serif; font-size: 34px; font-weight: 900;
  line-height: 1; margin-top: 4px;
}
.pcard-name-core { color: #22B5FF; }
.pcard-name-accelerate { color: #C084FC; }
.pcard-name-max { color: #2DD4BF; }

/* --- DIVIDER --- */
.pcard-divider {
  width: 72%; height: 2px; margin: 18px auto 28px;
}
.pcard-divider-core { background: linear-gradient(90deg, transparent, #22B5FF, transparent); }
.pcard-divider-accelerate { background: linear-gradient(90deg, transparent, #C084FC, transparent); }
.pcard-divider-max { background: linear-gradient(90deg, transparent, #2DD4BF, transparent); }

/* --- PRICING BLOCK --- */
.pcard-pricing { text-align: center; margin-bottom: 34px; }
.pcard-founding-label {
  font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 500;
  color: #FFFFFF; margin-bottom: 6px;
}
.pcard-price-row {
  display: flex; align-items: baseline; justify-content: center; gap: 4px;
  margin-bottom: 10px;
}
.pcard-price {
  font-family: 'Poppins', sans-serif; font-size: 72px; font-weight: 900;
  color: #FFFFFF; line-height: 1;
}
.pcard-price-period {
  font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 900;
  color: #FFFFFF; line-height: 1;
}
.pcard-retail-line { margin-top: 6px; }
/* Concise pricing line (Kandi card-copy simplification, Sep 16 2026): one clean secondary "Then $___/mo" line — no strike-through, no long sentence */
.pcard-then-line {
  font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600;
  color: rgba(255, 255, 255, 0.88); margin-top: 6px;
}
/* Expedited fulfillment-fee secondary line (Kandi Sep 17 pricing package) */
.pcard-ff-line {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500;
  color: rgba(255, 255, 255, 0.75); margin-top: 2px;
}
.pcard-retail-label {
  font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}
.pcard-retail-amount {
  font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: line-through; text-decoration-thickness: 1.5px;
}

/* --- FEATURE LIST --- */
.pcard-features {
  list-style: none; padding: 0; margin: 0 0 28px 0;
  text-align: left; flex: 1;
}
.pcard-features li {
  font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 500;
  line-height: 1.6; color: #FFFFFF;
  padding: 8px 0; display: flex; align-items: center; gap: 12px;
}
.pcard-check {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.pcard-check::after {
  content: '✓'; position: absolute; color: #FFFFFF; font-size: 12px; font-weight: 700;
}
.pcard-core .pcard-check { background: #22B5FF; }
.pcard-accelerate .pcard-check { background: #C084FC; }
.pcard-max .pcard-check { background: #2DD4BF; }

/* --- CTA BUTTONS --- */
.pcard-cta {
  display: flex; align-items: center; justify-content: center; width: 100%; text-align: center; text-decoration: none;
  font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em; line-height: 1;
  min-height: 52px; height: 64px; border-radius: 18px;
  transition: opacity 0.15s, transform 0.15s;
  margin-top: auto;
}
.pcard-cta:hover { opacity: 0.9; transform: translateY(-2px); }
/* Kandi, Sep 4: per-program button themes - tonal gradients WITHIN each
   program's own vial color family. No shared blue-to-purple gradient. */
.pcard-cta-core {
  background: linear-gradient(135deg, #22B5FF, #1E7DE0); /* Core electric/royal blue */
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(34, 181, 255, 0.35);
}
.pcard-cta-core:focus-visible { outline: 3px solid #22B5FF; outline-offset: 2px; }
.pcard-cta-core:active { background: linear-gradient(135deg, #1AA3E8, #1866BC); }
.pcard-cta-accelerate {
  background: linear-gradient(135deg, #A855F7, #7C3AED); /* Accelerate violet/purple */
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(192, 132, 252, 0.35);
}
.pcard-cta-accelerate:focus-visible { outline: 3px solid #C084FC; outline-offset: 2px; }
.pcard-cta-accelerate:active { background: linear-gradient(135deg, #9333EA, #6D28D9); }
.pcard-cta-max {
  background: linear-gradient(135deg, #2DD4BF, #06B6D4); /* Max teal/cyan */
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(45, 212, 191, 0.35);
}
.pcard-cta-max:focus-visible { outline: 3px solid #2DD4BF; outline-offset: 2px; }
.pcard-cta-max:active { background: linear-gradient(135deg, #14B8A6, #0891B2); }

/* Program vial (Kandi proposal, Sep 4): fixed container, never overlaps text —
   same rule as Program Selection asset containers. */
.pcard-vial { height: 150px; display: grid; place-items: center; margin: 8px 0 2px; }
.pcard-vial img { height: 150px; width: auto; max-width: 78%; object-fit: contain; }

/* Approved type descriptor (Kandi, Sep 4) */
.pcard-desc {
  font-family: 'Inter', sans-serif; font-size: 13.5px; line-height: 1.55;
  color: rgba(255, 255, 255, 0.85); margin: 10px 0 0; padding: 0 6px;
  min-height: 64px; /* equalizes the description band so pricing/CTA align across all three cards */
}

/* ===== Program medication descriptors (Kandi copy batch, Sep 9 2026) =====
   Readable on desktop/tablet/mobile; footnotes sit on the white page background below the card grid. */
.pcard-med-tag {
  font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600; line-height: 1.4;
  letter-spacing: .02em; color: rgba(255, 255, 255, 0.95); margin: 10px 0 0; padding: 0 6px;
  min-height: 37px; /* equalizes the tag band across Core/Accelerate/Max so pricing rows align (Kandi, Option B, Sep 17 2026) */
}
.pcard-med-ref {
  font-family: 'Inter', sans-serif; font-size: 11.5px; line-height: 1.5;
  color: rgba(255, 255, 255, 0.78); margin: 3px 0 0; padding: 0 6px;
}
.pcard-footnotes { max-width: 920px; margin: 26px auto 0; text-align: center; }
.pcard-fn-elig {
  font-family: 'Inter', sans-serif; font-size: 12.5px; line-height: 1.65;
  color: #3A4568; margin: 0;
}
.v-ret-note {
  font-family: 'Inter', sans-serif; font-size: 10px; line-height: 1.6;
  color: rgba(255, 255, 255, 0.8); margin: 30px auto 18px; padding: 0 16px;
  text-align: center; max-width: 980px;
}
@media (max-width: 640px) {
  .pcard-footnotes { margin: 20px auto 0; }
  .pcard-fn-elig { font-size: 12px; text-align: left; }
  .v-ret-note { font-size: 9px; margin: 24px auto 14px; }
}

/* --- OLD PROGRAM CARD CSS (keep for reference but hidden) --- */

/* ===== MORE THAN WEIGHT MANAGEMENT (7 categories) ===== */






/* ===== BMI + AGELESS AI (FINAL BUILD SPEC) ===== */
.bmi-ageless-section { background: #FFFFFF; max-width: 1360px; margin: 0 auto; padding: 0 24px 90px; }
.bmi-ageless-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }

/* Shared card shell */
.bmi-card, .ageless-card {
  background: #FFFFFF;
  border: 1px solid #E5EAF2;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(4, 13, 46, 0.06);
  display: flex;
  flex-direction: column;
}

.bmi-ageless-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #040D2E;
  margin: 0 0 8px;
  line-height: 1.15;
}
.bmi-ageless-subcopy {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: #667085;
  margin: 0 0 22px;
  line-height: 1.45;
}
.accent-blue { color: #099EF8; font-weight: 600; }

/* ===== BMI internal layout ===== */
.bmi-internal-grid { display: grid; grid-template-columns: 52% 1fr; gap: 24px; flex: 1; }
.bmi-inputs-col { display: flex; flex-direction: column; gap: 14px; }
.bmi-field { display: flex; flex-direction: column; gap: 6px; }
.bmi-field label {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px; font-weight: 600; color: #667085;
  display: flex; align-items: center; gap: 6px;
  text-transform: uppercase; letter-spacing: 0.4px;
}
.bmi-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.bmi-input-with-suffix { position: relative; }
.bmi-input-with-suffix input { padding-right: 32px; }
.bmi-input-suffix {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; color: #98A2B3;
  pointer-events: none;
}
.bmi-field input {
  height: 48px;
  padding: 0 14px;
  border: 1px solid #D7DFEA;
  border-radius: 10px;
  font-size: 14.5px;
  font-family: 'Inter', sans-serif;
  color: #040D2E;
  background: #FFFFFF;
  width: 100%;
  box-sizing: border-box;
}
.bmi-field input:focus { outline: none; border-color: #099EF8; box-shadow: 0 0 0 3px rgba(9,158,248,0.12); }
.bmi-field input::placeholder { color: #A0AAB8; }

.bmi-calculate-btn {
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(100deg, #099EF8 0%, #6B0DD8 100%);
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  width: 100%;
  margin-top: 4px;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.bmi-calculate-btn:hover { opacity: 0.92; }

.bmi-note {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  color: #98A2B3;
  line-height: 1.45;
  margin: 6px 0 0;
}

/* Gauge column */
.bmi-gauge-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 8px;
  gap: 4px;
}
.bmi-gauge-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 700; color: #040D2E;
  margin: 0 0 4px;
}
.bmi-gauge-wrap { position: relative; width: 100%; max-width: 250px; }
.bmi-gauge-svg { width: 100%; display: block; }
/* BMI gauge pointer: rotation center is set inside the SVG rotate() attribute
   itself (rotate(angle 100 100)). Do NOT add a CSS transform-origin here —
   it stacks with the attribute's own center and moves the effective pivot
   outside the gauge (verified defect, Sep 7 2026). */
#bmi-gauge-pointer { transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.bmi-gauge-readout {
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  text-align: center;
}
.bmi-gauge-value {
  font-family: 'Poppins', sans-serif;
  font-size: 46px; font-weight: 800; color: #040D2E;
  line-height: 1;
}
.bmi-gauge-category {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600; color: #667085;
  margin-top: 4px;
}
.bmi-goal-context {
  margin-top: 18px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #F0F8FF, #F5F0FF);
  border: 1px solid #D7E8FF;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #099EF8;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

/* ===== Ageless AI card ===== */
.ageless-card { text-align: left; }
.ageless-heading-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 4px; }
.ageless-heading-row .bmi-ageless-heading { margin-bottom: 0; }
.ageless-powered-by { margin: 0 0 10px; }
.powered-by-label { font-family: 'Inter', sans-serif; font-size: 12px; color: #667085; }
.ageless-ai-emphasis {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 800;
  background: linear-gradient(100deg, #099EF8, #6B0DD8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ageless-subcopy-left { text-align: left; }

.ageless-upload-area {
  width: 100%;
  height: 46px;
  border: 1px solid #D7DFEA;
  border-radius: 9px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  cursor: pointer;
  transition: border-color 0.15s;
  margin-bottom: 14px;
}
.ageless-upload-area:hover { border-color: #099EF8; }
.ageless-upload-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 600; color: #040D2E;
}
.ageless-upload-helper {
  font-family: 'Inter', sans-serif;
  font-size: 12px; color: #98A2B3;
  margin-left: auto;
}
.ageless-preview { width: 100%; height: 220px; border-radius: 10px; overflow: hidden; margin-bottom: 14px; border: 1px solid #E5EAF2; }
.ageless-preview.has-image { display: block !important; }

.ageless-consent { margin-bottom: 14px; }
.ageless-consent-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.ageless-consent-label input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; }
.ageless-consent-label span { font-family: 'Inter', sans-serif; font-size: 12.5px; color: #667085; line-height: 1.5; }

.ageless-generate-btn {
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(100deg, #099EF8, #6B0DD8);
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  width: 100%;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: opacity 0.2s ease;
}
.ageless-generate-btn:hover { opacity: 0.92; }
.ageless-generate-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.ageless-loading { display: flex; flex-direction: column; align-items: center; padding: 24px 0; }
.ageless-loading-text { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: #040D2E; margin-top: 12px; }

.ageless-coming-soon-title { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700; color: #040D2E; margin-bottom: 8px; }
.ageless-coming-soon-text { font-family: 'Inter', sans-serif; font-size: 13px; color: #667085; line-height: 1.5; }

.ageless-result { margin-top: 16px; }
.ageless-result .ageless-comparison {
  position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden; border-radius: 12px; display: flex;
}
.ageless-result .ageless-before { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.ageless-result .ageless-before img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.ageless-result .ageless-after { position: absolute; top: 0; left: 0; width: 50%; height: 100%; z-index: 1; overflow: hidden; }
.ageless-result .ageless-after img { width: 200%; max-width: none; height: 100%; object-fit: cover; object-position: center 20%; }
.ageless-result .ageless-demo-tag { z-index: 5; }
.ageless-result .ageless-slider-handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2;
  width: 36px; height: 36px; border-radius: 50%; background: #FFFFFF;
  border: 2px solid #040D2E; display: flex; align-items: center; justify-content: center;
  cursor: ew-resize; box-shadow: 0 4px 14px rgba(4, 13, 46, 0.3);
}
.ageless-drag-hint { font-family: 'Inter', sans-serif; font-size: 12px; color: #98A2B3; text-align: center; margin: 10px 0 4px; }
.ageless-result-disclaimer {
  font-family: 'Inter', sans-serif;
  font-size: 10px; color: #98A2B3; text-align: center;
  margin-top: 8px;
}

/* === AGELESS AI TIMELINE TABS === */
.ageless-timeline-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #E5EAF2;
}
.ageless-timeline-tab {
  flex: 1;
  padding: 11px 8px;
  border: none;
  background: #F8FAFD;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #667085;
  cursor: pointer;
  transition: all 200ms ease;
  letter-spacing: 0.5px;
}
.ageless-timeline-tab:hover { background: #F0F4F9; color: #040D2E; }
.ageless-timeline-tab.active {
  background: linear-gradient(100deg, #099EF8, #6B0DD8);
  color: #FFFFFF;
}
.ageless-loading-sub {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #98A2B3;
  margin-top: 6px;
}

/* ===== HOW VEYRA WORKS (FINAL BUILD SPEC) ===== */
.how-veyra-works-section {
  background: #FFFFFF;
  padding: 48px 40px 56px;
  max-width: 1360px;
  margin: 0 auto;
}
.how-veyra-works-container {
  max-width: 1320px;
  margin: 0 auto;
}
.how-veyra-works-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  color: #040D2E;
  line-height: 1.08;
  margin: 0 0 28px;
  letter-spacing: -0.5px;
}
.hvw-brand {
  background: linear-gradient(100deg, #099EF8, #6B0DD8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.how-veyra-works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
}
.how-veyra-works-line {
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 0;
  border-top: 1px dashed rgba(9, 158, 248, 0.35);
  z-index: 0;
}
.hvw-card {
  background: #FFFFFF;
  border: 1px solid #E5EAF2;
  border-radius: 17px;
  padding: 22px;
  box-shadow: 0 7px 20px rgba(4, 13, 46, 0.04);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease;
  min-height: 190px;
}
.hvw-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(4, 13, 46, 0.07);
}
.hvw-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.hvw-number {
  width: 28px; height: 28px;
  border-radius: 50%;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hvw-icon {
  width: 62px;
  height: 62px;
  object-fit: contain;
  flex-shrink: 0;
}
.hvw-title {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #040D2E;
  line-height: 1.15;
  margin: 0;
  text-align: left;
}
.hvw-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #667085;
  line-height: 1.45;
  margin: 0;
  text-align: left;
}

/* ===== VEYRA DIFFERENCE (6 items) ===== */

/* ===== THE VEYRA DIFFERENCE ===== */
.veyra-difference-section {
  background: linear-gradient(135deg, #040D2E 0%, #061155 58%, #081C4B 100%);
  width: 100%;
  padding: 62px 0 68px;
}
.difference-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 24px;
}
.difference-header {
  text-align: center;
  margin-bottom: 36px;
}
.difference-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #099EF8;
  margin: 0 0 12px;
}
.difference-headline {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.08;
  color: #FFFFFF;
  margin: 0;
}
.diff-accent {
  background: linear-gradient(90deg, #099EF8, #6B0DD8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.difference-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #B8C8E8;
  max-width: 780px;
  margin: 14px auto 0;
}
.difference-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.difference-item {
  text-align: center;
  padding: 18px 16px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  position: relative;
}
.difference-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 12%;
  height: 76%;
  width: 1px;
  background: rgba(184,200,232,.14);
}
.difference-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.difference-icon-img {
  width: 52px;
  height: auto;
  display: block;
}
.difference-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0 0 6px;
}
.difference-desc {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.45;
  color: #B8C8E8;
  margin: 0;
}

/* ===== FAQ ===== */
.faq-section {
  background: #FFFFFF;
  padding: 72px 0 80px;
}
.faq-inner {
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 24px;
}
.faq-header {
  text-align: center;
  margin-bottom: 32px;
}
.faq-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #099EF8;
  margin: 0 0 12px;
}
.faq-headline {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.08;
  color: #040D2E;
  margin: 0;
}
.faq-sub {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #667085;
  max-width: 680px;
  margin: 14px auto 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
}
.faq-item {
  background: #FFFFFF;
  border: 1px solid #E5EAF2;
  border-radius: 15px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item.open {
  border-color: #C7D4EA;
}
.faq-question {
  width: 100%;
  padding: 18px 20px;
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #040D2E;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
  transition: background 0.15s ease;
}
.faq-question:hover {
  background: #F8FAFD;
}
.faq-question:focus-visible {
  outline: 2px solid #099EF8;
  outline-offset: -2px;
}
.faq-question .chevron {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-right: 2px solid #099EF8;
  border-bottom: 2px solid #099EF8;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -4px;
}
.faq-item.open .chevron {
  transform: rotate(-135deg);
  margin-top: 2px;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer-inner {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.6;
  color: #667085;
  padding: 0 20px 18px;
}
.faq-view-all-wrap {
  text-align: center;
  margin-top: 28px;
}
.faq-view-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 26px;
  border: 1.5px solid #099EF8;
  border-radius: 13px;
  background: #FFFFFF;
  color: #099EF8;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.faq-view-all-btn:hover {
  background: #099EF8;
  color: #FFFFFF;
}

/* ===== FINAL CTA ===== */
.final-cta { background: var(--gradient-navy); text-align: center; padding: 80px 28px; }
.final-cta h2 { font-family: var(--font-heading); font-size: 36px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.final-cta p { font-size: 18px; color: #A3C4F0; margin-bottom: 32px; }
.final-cta .btn-cta { font-size: 16px; padding: 18px 36px; }


/* ===== GLOBAL FOOTER ===== */
.site-footer {
  background: linear-gradient(180deg, #040D2E 0%, #061155 100%);
  width: 100%;
  padding: 56px 0 0;
}
.footer-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 200px) minmax(0, 1fr) minmax(0, 220px);
  gap: 36px;
  padding-bottom: 40px;
  overflow: hidden;
}
.footer-main::after {
  content: '';
}

/* BRAND BLOCK */
.footer-brand-block {
  display: flex;
  flex-direction: column;
}
.footer-brand-logo {
  margin-bottom: 20px;
}
.footer-logo-img {
  height: 44px;
  width: auto;
}
.footer-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 16px;
  line-height: 1.3;
}
.ft-blue { color: #099EF8; }
.ft-violet { color: #6B0DD8; }
.ft-magenta { color: #D6209F; }
.ft-gold { color: #FFB700; }
.footer-support-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  color: #B8C8E8;
  margin: 0;
}

/* NAV COLUMNS GRID */
.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) minmax(160px, 1.5fr);
  gap: 20px;
}
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #FFB700;
  margin: 0 0 12px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col ul li a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
  color: #DBE7FF;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col ul li a:hover {
  color: #FFFFFF;
}
.footer-contact-micro {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #B8C8E8;
  margin: 10px 0 0;
}

/* CTA BLOCK */
.footer-cta-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-cta-headline {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0 0 18px;
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 26px;
  border: none;
  border-radius: 15px;
  background: linear-gradient(135deg, #099EF8 0%, #6B0DD8 100%);
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(9, 158, 248, 0.25);
  transition: box-shadow 0.2s ease, transform 0.15s ease;
  margin-bottom: 18px;
}
.footer-cta-btn:hover {
  box-shadow: 0 8px 28px rgba(9, 158, 248, 0.35);
  transform: translateY(-1px);
}
.footer-cta-support {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #B8C8E8;
  margin: 0;
}
.footer-cta-support a {
  color: #DBE7FF;
  text-decoration: none;
}
.footer-cta-support a:hover {
  color: #FFFFFF;
}

/* BOTTOM ROW */
.footer-bottom {
  border-top: 1px solid rgba(184, 200, 232, 0.1);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #B8C8E8;
}
.footer-bottom-secure {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #B8C8E8;
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 1120px) {
  /* Header collapses to the approved mobile menu at 1120px so the full
     desktop navigation never squeezes or collides. */
  .header-inner { display: flex; flex-wrap: nowrap; align-items: center; width: 100%; min-height: 90px; padding: 6px 20px; gap: 14px; }
  .header-nav { position: absolute; top: 100%; left: 0; right: 0; width: 100%; transform: none; display: none; flex-direction: column; align-items: stretch; gap: 0; margin: 0; padding: 4px 0 12px; background: #FFFFFF; border-bottom: 1px solid #E7EDF5; box-shadow: 0 12px 32px rgba(4,13,46,0.14); z-index: 9999; }
  .header-actions { margin-left: auto; gap: 12px; }
  .site-header.mobile-open .header-nav { display: flex; }
  .header-nav a { width: 100%; padding: 17px 24px; border-bottom: 1px solid #E7EDF5; color: #040D2E; font-size: 16px; font-weight: 600; }
  .header-nav a.active { color: #099EF8; font-weight: 700; }
  .header-nav > a:last-child, .header-nav .header-nav-item:last-child .header-dropdown a:last-child { border-bottom: none; }
  .mobile-menu-btn { display: block; }
  .btn-earn-income { display: none; }
  .nav-earn-income.mobile-only { display: block; }
  .header-nav a.nav-earn-income { color: var(--electric); font-weight: 700; }
  .header-logo-img { height: 55px; width: auto; }
  .header-dropdown { position: static; transform: none; box-shadow: none; padding: 0 0 0 14px; min-width: 0; border-radius: 0; background: transparent; }
  .header-nav-item .header-dropdown { display: none; }
  .header-nav-item.dropdown-open .header-dropdown { display: block; }
  .header-dropdown a { color: var(--text-muted); font-size: 15px; padding: 12px 10px; }
  .header-nav-item > a { justify-content: space-between; width: 100%; }
}
@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; padding: 32px 20px; }
  .hero-visual { min-height: 300px; order: 1; justify-content: center; padding-bottom: 0; }
  .hero-tagline { font-size: 18px; margin-bottom: 14px; line-height: 1.2; }
  .hero-headline { font-size: 44px; line-height: 1.0; letter-spacing: -1px; }
  .hero-product-visual { max-width: 100%; transform: none; }
  .program-cards-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pcard { min-height: auto; }
  .pcard-inner { padding: 36px 24px 24px; }
  .pcard-name-veyra { font-size: 22px; }
  .pcard-name-accent { font-size: 28px; }
  .pcard-price { font-size: 56px; }
  .pcard-price-period { font-size: 22px; }
  .pcard-features li { font-size: 15px; }
  .pcard-cta { font-size: 20px; height: 56px; line-height: 1; }
  .programs-title { font-size: 42px; }
  .programs-eyebrow { font-size: 16px; }
  .programs-sub { font-size: 16px; }
  
  .bmi-ageless-grid { grid-template-columns: 1fr; }
  .how-veyra-works-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .how-veyra-works-line { display: none; }
  .hvw-icon { width: 56px; height: 56px; }
  .hvw-title { font-size: 16px; }
  .hvw-desc { font-size: 12.5px; }
  .difference-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .difference-item:not(:last-child)::after { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 650px) {
  /* Kandi, Sep 5 2026: mobile header — Login + Start My Journey move into the approved hamburger drawer */
  .header-actions .btn-login, .header-actions .btn-cta { display: none; }
  .header-nav a.nav-mobile-action { display: block; }
  .header-nav a.nav-mobile-login { padding: 17px 24px; border-bottom: 1px solid #E7EDF5; color: #040D2E; font-size: 16px; font-weight: 600; }
  .header-nav a.nav-mobile-cta {
    margin: 16px 20px 6px;
    width: calc(100% - 40px);
    padding: 17px 24px;
    border: none;
    border-radius: 13px;
    background: linear-gradient(100deg, #099EF8, #6B0DD8);
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.3px;
  }
  .header-inner { min-height: 90px; padding: 4px 16px; gap: 10px; }
  .header-tagline { font-size: 14px; }
  .btn-login { font-size: 14px; }
  .btn-cta { padding: 0 18px; font-size: 15px; height: 48px; display: inline-flex; align-items: center; justify-content: center; }
  .header-actions .btn-cta { padding: 0 18px; font-size: 15px; height: 48px; }
  .header-actions { gap: 10px; }
  .hero { padding: 24px 16px; }
  .hero-tagline { font-size: 17px; margin-bottom: 12px; line-height: 1.2; }
  .hero-headline { font-size: 42px; line-height: 1.0; letter-spacing: -0.8px; }
  .hero-sub { font-size: 17px; line-height: 1.45; }
  .section { padding: 56px 16px; }
  .section-title { font-size: 28px; }
  .program-cards-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; gap: 20px; }
  .pcard { min-height: auto; }
  .pcard-inner { padding: 32px 20px 22px; }
  .pcard-name-veyra { font-size: 20px; }
  .pcard-name-accent { font-size: 26px; }
  .pcard-price { font-size: 52px; }
  .pcard-price-period { font-size: 20px; }
  .pcard-founding-label { font-size: 16px; }
  .pcard-retail-label { font-size: 14px; }
  .pcard-retail-amount { font-size: 17px; }
  .pcard-then-line { font-size: 14px; } .pcard-ff-line { font-size: 12px; }
  .pcard-features li { font-size: 15px; padding: 6px 0; }
  .pcard-cta { font-size: 20px; height: 56px; line-height: 1; }
  .programs-title { font-size: 36px; }
  .programs-eyebrow { font-size: 14px; }
  .programs-sub { font-size: 16px; }
  .programs-section { padding: 56px 16px 64px; }

  /* BMI + Ageless AI — mobile stack */
  .bmi-ageless-section { padding: 0 16px 64px; }
  .bmi-ageless-grid { grid-template-columns: 1fr; gap: 20px; }
  .bmi-card, .ageless-card { padding: 22px; }
  .bmi-ageless-heading { font-size: 24px; }
  .bmi-ageless-subcopy { font-size: 14px; margin-bottom: 18px; }
  .bmi-internal-grid { grid-template-columns: 1fr; gap: 20px; }
  .bmi-gauge-wrap { max-width: 200px; margin: 0 auto; }
  .bmi-gauge-col { padding-top: 8px; }
  .bmi-calculate-btn, .ageless-generate-btn { height: 50px; font-size: 15px; }
  .ageless-upload-area { height: 48px; }

  .how-veyra-works-section { padding: 40px 16px 48px; }
  .how-veyra-works-grid { grid-template-columns: 1fr; gap: 12px; }
  .how-veyra-works-heading { font-size: 28px; }
  .hvw-icon { width: 54px; height: 54px; }
  .hvw-title { font-size: 16px; }
  .hvw-desc { font-size: 13px; }
  .hvw-card { min-height: auto; padding: 18px; }
  .veyra-difference-section { padding: 48px 16px 52px; }
  .difference-headline { font-size: 30px; }
  .difference-sub { font-size: 14px; }
  .difference-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .difference-item { padding: 14px 12px; }
  .difference-item:not(:last-child)::after { display: none; }
  .difference-item:not(:last-child) { border-right: 1px solid rgba(255, 255, 255, 0.07); }
  .difference-icon-wrap { width: 48px; height: 48px; }
  .difference-title { font-size: 15px; }
  .difference-desc { font-size: 12px; }
  .faq-section { padding: 56px 16px 64px; }
  .faq-headline { font-size: 30px; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .final-cta h2 { font-size: 28px; }
  .btn-cta { padding: 16px 24px; font-size: 15px; }
  .hero-cta { font-size: 16px; padding: 16px 28px; }
}

/* ===== PROGRAM CTA AS <a> LINK ===== */
a.program-cta {
  display: block; text-decoration: none; text-align: center;
  width: 100%; padding: 14px; border-radius: var(--radius); font-size: 15px; font-weight: 700;
  transition: opacity 0.15s;
}
a.program-cta:hover { opacity: 0.9; }

/* ===== BMI FULL TOOLS LINK ===== */
.bmi-full-tools-link {
  display: block; text-align: center; margin-top: 16px;
  font-size: 14px; font-weight: 600; color: var(--electric); text-decoration: none;
}
.bmi-full-tools-link:hover { opacity: 0.8; }

/* Old FAQ view-all — replaced by .faq-view-all-btn */

/* ===== AGELESS AI CTA ===== */
.ageless-cta {
  display: block; width: 100%; padding: 16px; border-radius: var(--radius);
  font-size: 15px; font-weight: 700; text-align: center; margin-top: 16px;
}

/* ===== CATEGORY CARD AS <a> LINK ===== */
a

/* ===== AGELESS AI — REAL FEATURE ===== */
.ageless-upload-area {
  width: 100%; min-height: 200px; border: 2px dashed var(--border); border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color 0.15s, background 0.15s; padding: 32px 20px;
}
.ageless-upload-area:hover { border-color: var(--electric); background: #F8FBFF; }
.ageless-preview { width: 100%; height: 280px; border-radius: var(--radius); overflow: hidden; margin-top: 16px; border: 1px solid var(--border); }
.ageless-preview.has-image { display: block !important; }
.ageless-generate-btn {
  width: 100%; padding: 16px; border-radius: var(--radius); background: var(--gradient-cta);
  color: var(--white); font-size: 15px; font-weight: 700; margin-top: 16px; border: none;
  transition: opacity 0.15s;
}
.ageless-generate-btn:hover { opacity: 0.9; }
.ageless-loading {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px 0;
}
.ageless-spinner {
  width: 40px; height: 40px; border: 3px solid var(--border); border-top-color: var(--electric);
  border-radius: 50%; animation: ageless-spin 0.8s linear infinite;
}
@keyframes ageless-spin { to { transform: rotate(360deg); } }
.ageless-coming-soon {
  padding: 20px; border-radius: var(--radius); background: #F8FAFF; border: 1px solid var(--border);
}
.ageless-start-cta {
  display: block; width: 100%; padding: 16px; border-radius: var(--radius);
  font-size: 15px; font-weight: 700; text-align: center;
}
.ageless-result { margin-top: 16px; }
.ageless-result .ageless-comparison {
  position: relative; width: 100%; height: 280px; overflow: hidden; border-radius: var(--radius);
  display: flex; border: 1px solid var(--border);
}
.ageless-result .ageless-before {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0;
}
.ageless-result .ageless-after {
  position: absolute; top: 0; left: 0; width: 50%; height: 100%; z-index: 1; overflow: hidden;
  border-right: 3px solid var(--electric);
}
.ageless-result .ageless-slider-handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2;
  width: 44px; height: 44px; border-radius: 50%; background: var(--white);
  border: 3px solid var(--electric); display: flex; align-items: center; justify-content: center;
  cursor: ew-resize; box-shadow: 0 4px 14px rgba(9, 158, 248, 0.3);
}

/* ===== AGELESS AI — CONSENT ===== */
.ageless-consent {
  margin-top: 16px; padding: 16px; background: #F8FAFF; border: 1px solid var(--border);
  border-radius: var(--radius);
}
.ageless-consent-label {
  display: flex; align-items: flex-start; gap: 10px; cursor: pointer;
}
.ageless-consent-label input[type="checkbox"] {
  margin-top: 2px; width: 18px; height: 18px; accent-color: var(--electric); flex-shrink: 0;
}
.ageless-generate-btn:disabled {
  background: var(--border); cursor: not-allowed; opacity: 0.5;
}

/* ===== NATIVE CSS VISUAL TREATMENTS ===== */

/* Header logo — official dark logo on white header */
.header-logo-img {
  width: auto;
  height: 110px;
  max-height: none;
  object-fit: contain;
  display: block;
}
/* ===== Responsive logo overrides — MUST come after base rule ===== */
/* Source order fix: base rule at equal specificity wins over earlier media queries. */
/* These overrides come AFTER the base rule so they win the cascade. */
@media (max-width: 430px) {
  .header-logo-img { height: 50px; width: auto; }
}
@media (max-width: 390px) {
  .header-logo-img { height: 48px; width: auto; }
}

/* Footer logo — official light logo on dark footer */
.footer-logo-img {
  width: 260px;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

/* Hero background — CSS gradient/space treatment */
.hero {
  position: relative;
  background: radial-gradient(ellipse at 70% 30%, rgba(9, 158, 248, 0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 20% 80%, rgba(107, 13, 216, 0.04) 0%, transparent 50%),
              #FFFFFF;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 90% 20%, rgba(9, 158, 248, 0.03) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}
.hero-copy, .hero-visual { position: relative; z-index: 1; }

/* Trust bar — using supplied Chatty PNG icons (no circle backgrounds) */

/* Old program card overrides removed — using new .pcard system */

/* VEYRA Difference icons on dark background */
.difference-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--electric);
  background: rgba(9, 158, 248, 0.1);
  border: 1px solid rgba(9, 158, 248, 0.2);
}
/* Difference item hover */
.difference-item { transition: border-color 0.2s ease, background 0.2s ease; }
.difference-item:hover { background: rgba(255, 255, 255, 0.04); border-color: rgba(9, 158, 248, 0.2); }

/* Final CTA — subtle radial glow */
.final-cta {
  position: relative;
  background: radial-gradient(ellipse at 50% 50%, rgba(9, 158, 248, 0.12) 0%, transparent 60%),
              linear-gradient(135deg, #040D2E 0%, #061155 100%);
}

/* Category card visual — gradient placeholder while Chatty creates artwork */
.category-card-visual .asset-placeholder {
  background: linear-gradient(135deg, rgba(9, 158, 248, 0.08), rgba(107, 13, 216, 0.08));
  border: 2px dashed rgba(9, 158, 248, 0.3);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 12px;
}

/* Hero visual — placeholder style removed, using real asset */

/* Mobile trust bar refinements (< 430px) */
@media (max-width: 430px) {
  .trust-bar { padding: 0 16px 10px; }
  .trust-bar-inner { padding: 12px 14px; max-width: 100%; }
  .trust-icon-img { width: 29px; height: 29px; }
  .trust-label { font-size: 12px; white-space: normal; }
  .footer-logo-img { width: 200px; margin-bottom: 16px; }
  .hero-product-visual { min-height: 320px; }
}

/* ===== PREMIUM ENHANCEMENTS — MATCHING APPROVED VISUAL ===== */

/* Retail strike-through pricing */
.program-price-retail {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 4px;
  opacity: 0.5;
}
.retail-strike {
  text-decoration: line-through;
  text-decoration-color: rgba(255, 100, 100, 0.7);
  text-decoration-thickness: 2px;
}

/* Gold accent on program card names */
.program-name {
  position: relative;
  display: inline-block;
}
.program-name::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 2px;
  background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

/* Gold radial accent on hero */
.hero::after {
  content: '';
  position: absolute;
  top: 10%; right: 5%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Old featured card overrides removed — using new .pcard system */

/* Section eyebrow — gold accent */
.section-eyebrow {
  position: relative;
  display: inline-block;
}
.section-eyebrow::after {
  content: '';
  display: block;
  width: 30px; height: 2px;
  background: linear-gradient(90deg, var(--electric), #FFD700);
  margin: 8px auto 0;
}

/* Category card — enhanced gradient placeholder with gold accent */
.category-card-visual .asset-placeholder {
  background: linear-gradient(135deg, rgba(9, 158, 248, 0.06), rgba(255, 215, 0, 0.04), rgba(107, 13, 216, 0.06));
  border: 2px dashed rgba(9, 158, 248, 0.25);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 12px;
  position: relative;
}
.category-card-visual .asset-placeholder::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--electric), #FFD700, var(--violet));
  border-radius: 0 0 var(--radius) var(--radius);
}

/* Hero CTA — gold glow on hover */
.btn-cta {
  position: relative;
  overflow: hidden;
}
.btn-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
  transition: left 0.4s;
}
.btn-cta:hover::after {
  left: 100%;
}



/* Final CTA — gold accent line */
.final-cta::after {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 200px; height: 3px;
  background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

/* Footer — gold top accent */
.site-footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, transparent 10%, rgba(9, 158, 248, 0.5) 30%, rgba(255, 215, 0, 0.5) 50%, rgba(107, 13, 216, 0.5) 70%, transparent 90%);
}

/* Trust bar — no accent line (compact badge style) */

/* Hero headline — solid deep navy */
.hero-headline {
  color: #040D2E;
}

/* How It Works step numbers — gold ring */
.step-number {
  border: 2px solid rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, rgba(9, 158, 248, 0.1), rgba(255, 215, 0, 0.05));
}

/* Old badge override removed */

/* Responsive — retail pricing on mobile */
@media (max-width: 650px) {
  .pcard { min-height: auto; padding: 26px 20px; }
  .pcard-name { font-size: 23px; }
  .pcard-price { font-size: 44px; }
  .pcard-features li { font-size: 14px; }
  .pcard-cta { font-size: 20px; padding: 14px 20px; }
  .programs-title { font-size: 32px; }
  .programs-sub { font-size: 15px; }
  .hero::after { width: 200px; height: 200px; }
}

/* ===== AGELESS AI — STATIC ILLUSTRATIVE DEMO (FINAL BUILD SPEC) ===== */
.ageless-demo-static {
  margin-bottom: 20px;
}
.ageless-demo-comparison {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  cursor: ew-resize;
  user-select: none;
  background: #040D2E;
}
.ageless-demo-before, .ageless-demo-after {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.ageless-demo-before img, .ageless-demo-after img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  user-select: none;
  pointer-events: none;
}
.ageless-demo-before { z-index: 0; }
.ageless-demo-after {
  z-index: 1;
  width: 50%;
  overflow: hidden;
  border-right: 2px solid #040D2E;
}
.ageless-demo-after img {
  width: 200%;
  max-width: none;
}
.ageless-demo-slider-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid #040D2E;
  display: flex; align-items: center; justify-content: center;
  gap: 3px;
  cursor: ew-resize;
  box-shadow: 0 4px 14px rgba(4, 13, 46, 0.3);
}
.ageless-demo-tag {
  position: absolute;
  top: 12px;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  z-index: 5;
}
.ageless-demo-tag-before {
  left: 12px;
  background: rgba(4, 13, 46, 0.65);
}
.ageless-demo-tag-after {
  right: 12px;
  background: #6B0DD8;
}
.ageless-demo-caption {
  font-size: 11px;
  color: #98A2B3;
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* ===== REAL ASSETS — HERO PRODUCT VISUAL ===== */
.hero-product-visual {
  width: 100%;
  max-width: 840px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(4, 13, 46, 0.12));
  transform: translateY(8px);
}

/* ===== REAL ASSETS — CATEGORY CARD IMAGES ===== */




/* Ageless demo uses aspect-ratio (16:9) — scales naturally on all breakpoints */


/* Category card description */


/* Category card text padding */



/* Responsive */
@media (max-width: 650px) {
  
}


}
/* ===== WELLNESS CATEGORY CARDS — MATCHED TO APPROVED REFERENCE ===== */
.wellness-categories { background: #FFFFFF; max-width: 1440px; margin: 0 auto; padding: 76px 40px 82px; border-radius: 0; }

/* Wellness Ecosystem — Section Heading */
.wellness-ecosystem-header { text-align: center; margin-bottom: 40px; }
.wellness-ecosystem-eyebrow {
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px; color: #099EF8;
  margin-bottom: 14px; display: inline-block; position: relative;
}
.wellness-ecosystem-eyebrow::after {
  content: ''; display: block; width: 30px; height: 2px;
  background: linear-gradient(90deg, #099EF8, #6B0DD8, #FFD700);
  margin: 8px auto 0;
}
.wellness-ecosystem-title {
  font-family: 'Poppins', sans-serif; font-size: 46px; font-weight: 800;
  line-height: 1.05; color: #040D2E; margin-bottom: 14px;
}
.eco-accent-built { color: #099EF8; }
.eco-accent-around { color: #6B0DD8; }
.eco-accent-you { color: #FF6B35; }
.wellness-ecosystem-sub {
  font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 450;
  line-height: 1.45; color: #667085; max-width: 720px; margin: 0 auto;
}


.category-grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  max-width: 1360px;
  margin: 0 auto;
}

/* Row 1: landscape ~1.57:1 (measured from approved reference) */
.cat-card-large { grid-column: span 4; aspect-ratio: 1.57 / 1; }
/* Kandi, Sep 4: all six homepage category cards span 4 - two equal rows of
   three, full container width, edges aligned. Legacy small-card rule retained
   for reference only (unused on the homepage). */
.cat-card-small { grid-column: span 3; aspect-ratio: 1.07 / 1; }

/* Card base — full-bleed background image + light overlay in one layer */
.cat-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  text-decoration: none;
  display: block;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background-image:
    linear-gradient(
      100deg,
      rgba(0,0,0,0.38) 0%,
      rgba(0,0,0,0.16) 38%,
      rgba(0,0,0,0.0) 62%
    ),
    var(--category-image);
  background-size: var(--bg-size, cover);
  background-position: var(--bg-position, center);
  background-repeat: no-repeat;
}
.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(4, 13, 46, 0.28);
}
.cat-card:focus-visible {
  outline: 2px solid #099EF8;
  outline-offset: 3px;
  border-radius: 22px;
}

/* Per-card image positioning */
.cat-weight    { --category-image: url('../img/categories/weight-management.png'); --bg-position: 78% center; }
.cat-peptides   { --category-image: url('../img/categories/peptides.png');         --bg-position: 82% center; }
.cat-hormonal   { --category-image: url('../img/categories/hormonal-health.png');   --bg-position: 86% center; }
.cat-energy     { --category-image: url('../img/categories/energy-performance.png'); --bg-position: 78% center; --bg-size: cover; }
.cat-strength   { --category-image: url('../img/categories/strength-recovery.png'); --bg-position: 84% 55%; --bg-size: cover; }
.cat-longevity  { --category-image: url('../img/categories/wellness-longevity.png'); --bg-position: 78% center; --bg-size: cover; }
.cat-hair       { --category-image: url('../img/categories/hair-skin.png');         --bg-position: 82% center; --bg-size: cover; }

/* Content layer — compact, left-aligned, matches reference proportions */
.cat-content {
  position: absolute;
  z-index: 2;
  top: 0; left: 0;
  bottom: 0;
  width: 62%;
  padding: 18px 0 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.cat-title {
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.2;
  max-width: 78%;
}
.cat-card-small .cat-title { font-size: 22px; max-width: 82%; }
.cat-card-small .cat-content { width: 60%; padding: 16px 0 14px 16px; }

.cat-underline {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  margin: 6px 0 8px;
}

.cat-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.4;
  margin: 0;
  max-width: 85%;
}
.cat-card-small .cat-desc { font-size: 13px; max-width: 90%; }

/* Category underline colors */
.cat-weight .cat-underline   { background: #099ef8; }
.cat-peptides .cat-underline { background: #a855f7; }
.cat-hormonal .cat-underline { background: #14b8a6; }
.cat-energy .cat-underline   { background: #f97316; }
.cat-strength .cat-underline { background: #099ef8; }
.cat-longevity .cat-underline{ background: #a855f7; }
.cat-hair .cat-underline     { background: #ec4899; }

/* Circular arrow — bottom-left, thin outline (matches reference) */
.cat-arrow {
  margin-top: auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: rgba(255,255,255,0.04);
  transition: all 0.3s ease;
}
.cat-arrow svg { width: 16px; height: 16px; }
.cat-card-small .cat-arrow { width: 38px; height: 38px; }
.cat-card:hover .cat-arrow {
  background: rgba(255,255,255,0.95);
  color: #040d2e;
  border-color: #fff;
  transform: scale(1.08);
}
.cat-card:focus-visible .cat-arrow {
  background: rgba(255,255,255,0.95);
  color: #040d2e;
  border-color: #fff;
}


/* PER-CARD GRADIENT OVERRIDES — Energy, Strength, Hair & Skin */
/* These 3 images are darker on the left, so the base gradient creates a visual "split". */
/* Lighten the gradient so artwork reads as full-bleed like Wellness & Longevity. */
.cat-energy {
  background-image:
    linear-gradient(95deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.06) 28%, transparent 48%),
    var(--category-image);
}
.cat-strength {
  background-image:
    linear-gradient(95deg, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.04) 28%, transparent 48%),
    var(--category-image);
}
.cat-hair {
  background-image:
    linear-gradient(95deg, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.04) 28%, transparent 48%),
    var(--category-image);
}

/* Add subtle text shadow for readability without darkening the image */
.cat-energy .cat-title, .cat-strength .cat-title, .cat-hair .cat-title {
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.cat-energy .cat-desc, .cat-strength .cat-desc, .cat-hair .cat-desc {
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

/* Responsive — tablet */
@media (max-width: 1024px) and (min-width: 768px) {
  .category-grid-12 { gap: 14px; }
  .cat-card-large { aspect-ratio: 1.45 / 1; }
  .cat-card-small { aspect-ratio: 1.0 / 1; }
  .cat-content { width: 62%; padding: 16px 0 14px 16px; }
}

/* Responsive — mobile */
@media (max-width: 767px) {
  .wellness-categories { padding: 56px 16px 64px; }
  .wellness-ecosystem-title { font-size: 34px; }
  .wellness-ecosystem-eyebrow { font-size: 12px; letter-spacing: 1.5px; }
  .wellness-ecosystem-sub { font-size: 15px; }
  .category-grid-12 { grid-template-columns: 1fr; gap: 16px; }
  .cat-card-large, .cat-card-small {
    grid-column: span 1;
    aspect-ratio: 1.5 / 1;
  }
  .cat-content { width: 62%; padding: 16px 0 14px 16px; }
  .cat-title { font-size: 21px; max-width: 85%; }
  .cat-card-small .cat-title { font-size: 21px; max-width: 85%; }
  .cat-desc { font-size: 13.5px; max-width: 90%; }
  .cat-arrow { width: 36px; height: 36px; }
  .cat-card-small .cat-arrow { width: 36px; height: 36px; }

  /* Per-card mobile focal adjustments */
  .cat-weight   { --bg-position: 72% center; }
  .cat-peptides { --bg-position: 76% center; }
  .cat-hormonal { --bg-position: 80% center; }
  .cat-energy   { --bg-position: 74% center; --bg-size: cover; }
  .cat-strength { --bg-position: 80% 55%; --bg-size: cover; }
  .cat-longevity{ --bg-position: 74% center; --bg-size: cover; }
  .cat-hair     { --bg-position: 78% center; --bg-size: cover; }
}

@media (max-width: 430px) {
  .header-inner { padding: 4px 8px; gap: 6px; }
  .header-tagline { font-size: 11px; letter-spacing: 0.2px; }
  .btn-login { font-size: 13px; }
  .btn-cta { padding: 0 10px; font-size: 13px; letter-spacing: 0.2px; height: 46px; display: inline-flex; align-items: center; justify-content: center; }
  .header-actions .btn-cta { padding: 0 10px; font-size: 13px; letter-spacing: 0.2px; height: 46px; }
  .header-actions { gap: 6px; }
  .mobile-menu-btn { width: 28px; height: 28px; padding: 6px; }
}

@media (max-width: 390px) {
  .header-inner { padding: 4px 6px; gap: 4px; }
  .header-tagline { font-size: 10px; letter-spacing: 0.2px; }
  .btn-login { font-size: 12px; }
  .header-actions .btn-cta { padding: 0 8px; font-size: 12px; letter-spacing: 0.1px; }
  .btn-cta { padding: 0 8px; font-size: 12px; letter-spacing: 0.1px; }
  .header-actions { gap: 4px; }
  .mobile-menu-btn { width: 26px; height: 26px; padding: 5px; }
  .cat-content { width: 68%; }
  .cat-energy { --bg-position: 78% center; --bg-size: cover; }
  .cat-strength { --bg-position: 82% 55%; --bg-size: cover; }
  .cat-hair { --bg-position: 82% center; --bg-size: cover; }
}

/* Footer responsive fix: the 3-column footer frame (200px + 1fr + 220px) only leaves
   enough nav width above ~1290px. Below that, reflow using the approved mobile
   footer pattern (single column, ordered blocks, 2-col nav grid) so no link or
   support line ever clips or overlaps. The 430px block below still wins on mobile. */
@media (max-width: 1290px) {
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .footer-brand-block { order: 1; }
  .footer-cta-block { order: 2; }
  .footer-cta-headline { font-size: 22px; }
  .footer-cta-btn { width: 100%; max-width: 340px; }
  .footer-nav-grid { order: 3; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 16px; }
}

@media(max-width: 430px) {

  /* Kandi, Sep 5 2026: true mobile footer — smaller logo, single-column nav, full-width CTA */
  .footer-logo-img { width: 140px; margin-bottom: 12px; }
  .footer-tagline { font-size: 15px; }
  .footer-nav-grid { order: 3; grid-template-columns: 1fr; gap: 20px; }
  .footer-cta-btn { width: 100%; max-width: none; }

  /* VEYRA Difference — Mobile */
  .difference-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .difference-item { padding: 14px 10px; }
  .difference-item:not(:last-child)::after { display: none; }
  .difference-icon-img { width: 46px; }
  .difference-headline { font-size: 30px; }
  .difference-sub { font-size: 14.5px; }
  .difference-title { font-size: 15px; }
  .difference-desc { font-size: 12px; }
  .veyra-difference-section { padding: 48px 0 52px; }

  /* FAQ — Mobile */
  .faq-grid { grid-template-columns: 1fr; }
  .faq-headline { font-size: 30px; }
  .faq-question { font-size: 14.5px; }
  .faq-answer-inner { font-size: 13px; }
  .faq-section { padding: 56px 0 64px; }


  /* Footer — Mobile */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 32px;
  }
  .footer-brand-block { order: 1; }
  .footer-cta-block { order: 2; }
  .footer-cta-headline { font-size: 22px; }
  .footer-cta-btn { width: 100%; max-width: 340px; }
  .footer-nav-grid {
    order: 3;
    /* Kandi, Sep 5 2026: true mobile layout — single column so no link ever clips */
    grid-template-columns: 1fr;
    gap: 20px;
  }
  /* Kandi, Sep 4: mobile footer readability — larger text + taller touch rows */
  .footer-col h5 { font-size: 16px; margin-bottom: 14px; }
  .footer-col ul li a { font-size: 15px; line-height: 1.5; padding: 6px 0; display: inline-block; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }


}

/* ====================================================================
   HEADER DROPDOWN (moved from veyra-wellness.css — needed on ALL pages)
   This ensures the Wellness submenu is display:none by default
   and only appears on hover/click. Without this, the dropdown renders
   permanently as a static block below the nav.
   ==================================================================== */
.header-nav-item { position: relative; }
.header-nav-item > a { display: inline-flex; align-items: center; gap: 5px; }
.header-nav-item .nav-caret { width: 9px; height: 9px; transition: transform 0.2s ease; }
.header-nav-item:hover .nav-caret, .header-nav-item.dropdown-open .nav-caret { transform: rotate(180deg); }
.header-dropdown { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%); background: var(--white); border-radius: 16px; box-shadow: 0 20px 40px rgba(4,13,46,0.18); padding: 10px; min-width: 240px; display: none; z-index: 1001; }
.header-nav-item.dropdown-open .header-dropdown { display: block; }
.header-dropdown a { display: block; padding: 11px 16px; border-radius: 10px; font-size: 15px; font-weight: 600; color: var(--navy); white-space: nowrap; }
/* ---- Wellness dropdown selectability + keyboard fix (Sep 7 2026) ----
   1) ::before is an invisible bridge across the 14px hover gap so the menu
      stays open while the pointer travels from "Wellness" into the menu.
   2) Hover-open is scoped to real-mouse devices; touch devices open the menu
      solely via the .dropdown-open class (veyra-header.js), so one tap
      toggles and one tap selects — no sticky :hover on touch.
   3) focus-within opens the menu for keyboard users at desktop widths. */
@media (min-width: 1121px) {
  .header-dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -15px; height: 15px; background: transparent; }
  .header-nav-item:focus-within .header-dropdown { display: block; }
}
@media (hover: hover) and (pointer: fine) {
  .header-nav-item:hover .header-dropdown { display: block; }
}
.header-nav a:focus-visible, .header-dropdown a:focus-visible { outline: 2px solid var(--electric); outline-offset: 2px; }
.header-dropdown a:hover { background: #F1F5FC; color: var(--electric); }
.header-dropdown a.dd-divider { border-top: 1px solid var(--border); margin-top: 6px; padding-top: 14px; border-radius: 0 0 10px 10px; }

/* ============================================================
   ===== VEYRA REFLECTIONS (Kandi implementation directive, Sep 18 2026) =====
   Left panel ~60% / BMI right ~40% on desktop; stacked on mobile.
   Palette: light pearl / pale-blue / soft-lavender background,
   deep-navy typography, blue-violet illumination, restrained gold.
   The BMI calculator component styles above are UNCHANGED.
   ============================================================ */
.reflections-bmi-section { background: #FFFFFF; max-width: 1360px; margin: 0 auto; padding: 0 24px 90px; }
.reflections-bmi-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 22px; align-items: stretch; }

/* ---- left panel ---- */
.reflections-panel {
  background: linear-gradient(150deg, #F9FAF7 0%, #EEF4FB 46%, #F3EFFA 100%); /* pearl -> pale-blue -> soft-lavender */
  border: 1px solid #E2E9F5;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(4, 13, 46, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.reflections-panel::before {
  content: '';
  position: absolute; top: -120px; right: -120px; width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(9,158,248,0.16) 0%, rgba(107,13,216,0.10) 45%, transparent 70%);
  pointer-events: none; /* blue/violet illumination */
}
.reflections-lockup-img {
  width: 100%; max-width: 340px; height: auto; display: block;
  margin: 0 auto 16px; /* installed exactly as supplied — never resized in a way that crops or distorts */
}
.reflections-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 30px; font-weight: 800; color: #040D2E; /* deep navy */
  margin: 0 0 10px; line-height: 1.15;
  background: linear-gradient(95deg, #099EF8 0%, #6B0DD8 78%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.reflections-body-copy {
  font-family: 'Inter', sans-serif; font-size: 14.5px; color: #475467;
  margin: 0 0 8px; line-height: 1.5; max-width: 460px;
}
.reflections-supporting {
  font-family: 'Inter', sans-serif; font-size: 12.5px; font-weight: 700; color: #B8860B; /* restrained gold */
  text-transform: uppercase; letter-spacing: 1.2px; margin: 0 0 18px;
}

/* ============================================================
   Kandi directive (Sep 18 2026): reposition Reflections branding/
   copy into two INTERNAL columns beside the phone, desktop only.
   Left col = logo/tagline/headline/copy/gold-line/CTA/disclosure;
   right col = phone. Mobile (<=1024px) stays the original single-
   column flow below (natural source order already matches the
   required mobile order: logo -> copy -> phone -> CTA/disclosure).
   No image asset touched; layout-only via CSS grid-area mapping.
   ============================================================ */
@media (min-width: 1025px) {
  .reflections-panel {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    grid-template-areas:
      "logo       phone"
      "heading    phone"
      "body       phone"
      "gold       phone"
      "cta        phone"
      "disclosure phone"
      "workflow   workflow";
    column-gap: 34px;
    row-gap: 0;
    align-items: start;
    text-align: left;
  }
  .reflections-lockup-img { grid-area: logo; max-width: 296px; margin: 0 0 16px; }
  .reflections-heading { grid-area: heading; }
  .reflections-body-copy { grid-area: body; max-width: 420px; }
  .reflections-supporting { grid-area: gold; }
  .reflections-cta { grid-area: cta; justify-self: start; }
  #refl-disclosure-inline { grid-area: disclosure; max-width: 420px; }
  .reflections-phone { grid-area: phone; margin: 6px 0 0; justify-content: flex-start; }
  .reflections-workflow { grid-area: workflow; }
}

/* ---- interactive phone (pure HTML/CSS — no image shell) ---- */
.reflections-phone { width: 100%; display: flex; justify-content: center; margin-bottom: 20px; }
.phone-shell {
  width: 258px; background: #040D2E; border-radius: 34px; padding: 10px;
  box-shadow: 0 18px 44px rgba(4,13,46,0.28), 0 0 0 1px rgba(255,255,255,0.08) inset;
  position: relative;
}
.phone-notch { width: 84px; height: 6px; border-radius: 4px; background: #1D2A4D; margin: 2px auto 8px; }
.phone-screen {
  position: relative; width: 100%; height: 430px; border-radius: 24px; overflow: hidden;
  background: #EEF4FB; touch-action: pan-y;
}
.refl-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 0.45s ease; }
.refl-slide.active { opacity: 1; visibility: visible; }
.refl-cmp { position: absolute; inset: 0; }
.refl-cmp-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.refl-cmp-clip { position: absolute; inset: 0; overflow: hidden; will-change: width; }
.refl-cmp-clip img { position: absolute; inset: 0; width: 238px; height: 430px; object-fit: cover; max-width: none; }
.refl-cmp-divider {
  position: absolute; top: 0; bottom: 0; width: 2px; background: #FFFFFF;
  box-shadow: 0 0 0 1px rgba(4,13,46,0.18); cursor: ew-resize; z-index: 3;
  transform: translateX(-1px);
}
.refl-cmp-handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 34px; height: 34px; border-radius: 50%;
  background: #FFFFFF; color: #040D2E; font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(4,13,46,0.30); pointer-events: none;
}
.refl-img-tag {
  position: absolute; bottom: 12px; z-index: 4;
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 800; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 999px; text-transform: uppercase;
}
/* Endpoint label rule: a label hides when its image side is fully retracted. */
.refl-img-tag.refl-tag-off, .refl-tag-off { display: none; }

.refl-tag-photo { left: 12px; background: rgba(4,13,46,0.82); color: #FFFFFF; }
.refl-tag-viz { right: 12px; background: linear-gradient(95deg, #099EF8, #6B0DD8); color: #FFFFFF; }
.refl-slide-caption {
  position: absolute; top: 12px; left: 0; right: 0; z-index: 4; text-align: center;
  font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 700; color: #040D2E;
  text-shadow: 0 1px 2px rgba(255,255,255,0.6);
}
.phone-controls {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-top: 10px; padding: 0 4px 2px;
}
.phone-nav-btn {
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid #2A3A66;
  background: rgba(255,255,255,0.06); color: #FFFFFF; font-size: 13px; cursor: pointer;
  transition: background 0.2s ease;
}
.phone-nav-btn:hover, .phone-nav-btn:focus-visible { background: rgba(9,158,248,0.35); outline: none; }
.phone-dots { display: flex; gap: 7px; align-items: center; }
.phone-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0; cursor: pointer;
  background: rgba(255,255,255,0.32); transition: background 0.2s ease, transform 0.2s ease;
}
.phone-dot.active { background: #D4A72C; transform: scale(1.25); } /* restrained gold */
.phone-counter {
  position: absolute; top: 18px; right: 22px; z-index: 5;
  font-family: 'Inter', sans-serif; font-size: 10.5px; font-weight: 700; color: rgba(255,255,255,0.85);
  background: rgba(4,13,46,0.55); padding: 3px 8px; border-radius: 999px; letter-spacing: 0.6px;
}

/* ---- CTA + disclosure ---- */
.reflections-cta {
  height: 52px; padding: 0 34px; border: none; border-radius: 14px; cursor: pointer;
  background: linear-gradient(100deg, #099EF8 0%, #6B0DD8 100%);
  color: #FFFFFF; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 800; letter-spacing: 0.5px;
  box-shadow: 0 10px 24px rgba(9,158,248,0.28);
  transition: opacity 0.2s ease, transform 0.15s ease;
}
.reflections-cta:hover { opacity: 0.94; }
.reflections-cta:focus-visible { outline: 3px solid #B8860B; outline-offset: 2px; }
.reflections-disclosure {
  font-family: 'Inter', sans-serif; font-size: 11px; color: #7A8499; line-height: 1.5;
  margin: 12px 0 0; max-width: 470px;
}

/* ---- in-section workflow ---- */
.reflections-workflow {
  width: 100%; max-width: 520px; margin-top: 18px; padding: 22px;
  background: #FFFFFF; border: 1px solid #E2E9F5; border-radius: 16px;
  text-align: left; box-shadow: 0 8px 22px rgba(4,13,46,0.08);
}
.refl-step-title { font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 800; color: #040D2E; margin: 0 0 12px; }
.refl-step-hint { font-family: 'Inter', sans-serif; font-size: 12.5px; color: #667085; margin: -6px 0 12px; }
.refl-choice-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.refl-choice {
  border: 1.5px solid #D7DFEA; border-radius: 12px; background: #FBFCFE; cursor: pointer;
  padding: 14px; text-align: center; transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.refl-choice:hover, .refl-choice:focus-visible { border-color: #099EF8; box-shadow: 0 4px 14px rgba(9,158,248,0.15); outline: none; }
.refl-choice-name { display: block; font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 800; color: #040D2E; margin-bottom: 4px; }
.refl-choice-desc { display: block; font-family: 'Inter', sans-serif; font-size: 11.5px; color: #667085; line-height: 1.4; }
/* ---- BODY v2 selection steps (Kandi final spec §1+§13, Sep 18 2026) ---- */
.refl-choice-selected {
  border: 2px solid transparent;
  background: linear-gradient(#FFFFFF, #FFFFFF) padding-box, linear-gradient(95deg, #099EF8, #6B0DD8) border-box;
  box-shadow: 0 6px 18px rgba(9, 158, 248, 0.22);
}
.refl-choice-selected .refl-choice-name { color: #040D2E; }
.refl-field-error { font-family: 'Inter', sans-serif; font-size: 11.5px; color: #D92D20; margin: 2px 0 10px; line-height: 1.3; }
.refl-choice-selected::after {
  content: '\2713'; display: inline-block; margin-left: 6px; color: #C9A227;
  font-family: 'Poppins', sans-serif; font-weight: 800;
}
.refl-upload-btn {
  display: inline-block; padding: 11px 20px; border-radius: 10px; cursor: pointer;
  background: #FFFFFF; border: 1.5px dashed #099EF8; color: #099EF8;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700;
}
.refl-upload-btn:hover, .refl-upload-btn:focus-visible { background: #F0F8FF; outline: none; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.refl-preview { margin-top: 14px; text-align: center; }
.refl-preview img { max-width: 100%; max-height: 220px; border-radius: 12px; border: 1px solid #E2E9F5; }
.refl-preview-row { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; gap: 10px; }
.refl-preview-name { font-family: 'Inter', sans-serif; font-size: 12px; color: #667085; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.refl-replace { background: none; border: none; color: #099EF8; font-family: 'Inter', sans-serif; font-size: 12.5px; font-weight: 700; cursor: pointer; }
.refl-error {
  font-family: 'Inter', sans-serif; font-size: 12.5px; color: #D92D20; margin: 10px 0 0; line-height: 1.45;
}
.refl-fields label { display: block; font-family: 'Inter', sans-serif; font-size: 11.5px; font-weight: 600; color: #667085; text-transform: uppercase; letter-spacing: 0.4px; margin: 10px 0 5px; }
.refl-fields input {
  width: 100%; box-sizing: border-box; height: 46px; padding: 0 14px;
  border: 1px solid #D7DFEA; border-radius: 10px; font-size: 14.5px; font-family: 'Inter', sans-serif; color: #040D2E; background: #FFFFFF;
}
.refl-fields input:focus { outline: none; border-color: #099EF8; box-shadow: 0 0 0 3px rgba(9,158,248,0.12); }
.refl-consent-block { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
.refl-consent-item { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; font-family: 'Inter', sans-serif; font-size: 12.5px; color: #475467; line-height: 1.5; }
.refl-consent-item input { margin-top: 2px; flex-shrink: 0; width: 16px; height: 16px; accent-color: #099EF8; }
.refl-consent-item em { font-style: normal; font-weight: 700; color: #98A2B3; }
.refl-consent-optional { padding-top: 4px; border-top: 1px dashed #E2E9F5; }
.refl-consent-optional:first-of-type { border-top: 1px solid #D7DFEA; }
.refl-nav-row { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; gap: 10px; }
.refl-back { background: none; border: none; color: #667085; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; }
.refl-back:hover, .refl-back:focus-visible { color: #040D2E; outline: none; }
.refl-next-step, .refl-generate, .refl-retry {
  padding: 12px 22px; border: none; border-radius: 10px; cursor: pointer;
  background: linear-gradient(100deg, #099EF8 0%, #6B0DD8 100%);
  color: #FFFFFF; font-family: 'Inter', sans-serif; font-size: 13.5px; font-weight: 800; letter-spacing: 0.3px;
  transition: opacity 0.2s ease;
}
.refl-next-step:disabled { opacity: 0.45; cursor: not-allowed; }
.refl-next-step:hover:not(:disabled), .refl-generate:hover:not(:disabled), .refl-retry:hover { opacity: 0.92; }
.refl-processing { text-align: center; padding: 26px 0; }
.refl-processing p { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; color: #040D2E; margin: 14px 0 0; }
.refl-spinner {
  width: 40px; height: 40px; margin: 0 auto; border-radius: 50%;
  border: 4px solid #E2E9F5; border-top-color: #099EF8; border-right-color: #6B0DD8;
  animation: refl-spin 0.9s linear infinite;
}
@keyframes refl-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .refl-spinner { animation-duration: 2.4s; }
  .refl-slide { transition: none; }
}
.refl-result-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.refl-result-side { position: relative; border-radius: 12px; overflow: hidden; border: 1px solid #E2E9F5; }
.refl-result-side img { width: 100%; display: block; aspect-ratio: 4/5; object-fit: cover; }
.refl-result-label {
  position: absolute; top: 8px; left: 8px;
  font-family: 'Inter', sans-serif; font-size: 9.5px; font-weight: 800; letter-spacing: 0.8px;
  padding: 3px 8px; border-radius: 999px; text-transform: uppercase;
  background: rgba(4,13,46,0.82); color: #FFFFFF;
}
.refl-result-label-viz { background: linear-gradient(95deg, #099EF8, #6B0DD8); }
.refl-result-actions { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.refl-journey {
  flex: 1; text-align: center; padding: 12px 18px; border-radius: 10px; text-decoration: none;
  background: linear-gradient(100deg, #099EF8 0%, #6B0DD8 100%); color: #FFFFFF;
  font-family: 'Inter', sans-serif; font-size: 13.5px; font-weight: 800;
}
.refl-save {
  flex: 1; padding: 12px 18px; border-radius: 10px; cursor: pointer;
  background: #FFFFFF; border: 1.5px solid #B8860B; color: #8A6508;
  font-family: 'Inter', sans-serif; font-size: 13.5px; font-weight: 700;
}
.refl-save:hover, .refl-save:focus-visible { background: #FDF8EC; outline: none; }
.refl-save-note { font-family: 'Inter', sans-serif; font-size: 12px; color: #037949; margin: 10px 0 0; }
.refl-start-over { background: none; border: none; color: #667085; font-family: 'Inter', sans-serif; font-size: 12.5px; font-weight: 600; cursor: pointer; margin-top: 14px; }
.refl-start-over:hover { color: #040D2E; }

/* ---- responsive: Reflections stacks ABOVE the BMI calculator ---- */
@media (max-width: 1024px) {
  .reflections-bmi-grid { grid-template-columns: 1fr; gap: 20px; }
  .reflections-heading { font-size: 26px; }
}
@media (max-width: 480px) {
  .reflections-panel { padding: 22px 16px; }
  .reflections-heading { font-size: 23px; }
  .refl-choice-row { grid-template-columns: 1fr; }
  .refl-result-compare { grid-template-columns: 1fr 1fr; gap: 8px; }
  .refl-result-actions { flex-direction: column; }
}

/* ============================================================
   REFLECTIONS — single consent + expandable details (Sep 18 2026)
   ============================================================ */
.refl-consent-item.refl-consent-required { font-weight: 500; color: #344054; }
.refl-consent-details { margin-top: 2px; }
.refl-details-toggle {
  background: none; border: none; padding: 6px 2px; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 12.5px; font-weight: 700;
  color: #099EF8; letter-spacing: 0.2px; text-align: left;
}
.refl-details-toggle:hover { text-decoration: underline; }
.refl-details-toggle:focus-visible { outline: 2px solid #099EF8; outline-offset: 2px; border-radius: 4px; }
.refl-details-panel {
  margin-top: 6px; padding: 12px 14px; background: #F8FAFD;
  border: 1px solid #E2E9F5; border-radius: 12px;
}
.refl-details-panel ul { margin: 0; padding-left: 18px; display: flex; flex-direction: column; gap: 8px; }
.refl-details-panel li { font-family: 'Inter', sans-serif; font-size: 12px; color: #475467; line-height: 1.55; }
.refl-details-links { margin: 10px 0 0; font-family: 'Inter', sans-serif; font-size: 12px; color: #667085; }
.refl-details-links a { color: #099EF8; font-weight: 700; text-decoration: none; }
.refl-details-links a:hover { text-decoration: underline; }

/* ============================================================
   REFLECTIONS — RESULT MODAL (Kandi directive Sep 18 2026)
   Centered over the homepage; dims the page without unloading the
   Reflections section; reuses the approved phone visual unchanged.
   ============================================================ */
.refl-modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(4, 13, 46, 0.62);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; overflow-y: auto;
}
.refl-modal-overlay[hidden] { display: none; }
.refl-modal {
  position: relative; width: 100%; max-width: 420px;
  background: #FFFFFF; border-radius: 20px; padding: 26px 24px 22px;
  box-shadow: 0 30px 70px rgba(4, 13, 46, 0.35);
  text-align: center;
  margin: auto;
}
.refl-modal-close {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid #E2E9F5; background: #F8FAFD; color: #344054;
  font-size: 13px; cursor: pointer; line-height: 1;
}
.refl-modal-close:hover { background: #EEF4FB; }
.refl-modal-close:focus-visible { outline: 2px solid #099EF8; outline-offset: 2px; }
.refl-modal-logo { width: 120px; height: auto; margin: 6px auto 14px; display: block; }
.refl-modal-heading {
  font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 800;
  color: #040D2E; margin: 0 0 6px; line-height: 1.25;
}
.refl-modal-copy { font-family: 'Inter', sans-serif; font-size: 13px; color: #475467; margin: 0 0 16px; }
.refl-modal-phone { display: flex; justify-content: center; margin-bottom: 6px; }
.refl-modal-screen { cursor: ew-resize; touch-action: none; }
.refl-modal-expiry { font-family: 'Inter', sans-serif; font-size: 11.5px; color: #98A2B3; margin: 4px 0 10px; }
.refl-modal-actions { display: flex; flex-direction: column; gap: 10px; }
.refl-modal-btn {
  width: 100%; padding: 12px 16px; border-radius: 999px; border: none;
  font-family: 'Poppins', sans-serif; font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.4px; cursor: pointer; text-transform: uppercase;
}
.refl-modal-download { background: linear-gradient(95deg, #099EF8, #6B0DD8); color: #FFFFFF; }
.refl-modal-download:hover { filter: brightness(1.05); }
.refl-modal-save { background: #040D2E; color: #FFFFFF; }
.refl-modal-save:hover { background: #101C3F; }
.refl-modal-another { background: #FFFFFF; color: #040D2E; border: 1.5px solid #040D2E; }
.refl-modal-another:hover { background: #F8FAFD; }
.refl-modal .refl-save-note {
  font-family: 'Inter', sans-serif; font-size: 12.5px; margin: 10px 0 0; text-align: center;
}
.refl-login-prompt {
  font-family: 'Inter', sans-serif; font-size: 12.5px; color: #475467;
  margin: 10px 0 0; text-align: center;
}
.refl-login-prompt a { color: #099EF8; font-weight: 700; text-decoration: none; }
.refl-login-prompt a:hover { text-decoration: underline; }
.refl-modal .reflections-disclosure { text-align: center; margin-top: 12px; }

/* completed-step extras */
.refl-view-again {
  padding: 11px 18px; border-radius: 999px; border: none; cursor: pointer;
  background: linear-gradient(95deg, #099EF8, #6B0DD8); color: #FFFFFF;
  font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.4px;
  text-transform: uppercase;
}
.refl-view-again:hover { filter: brightness(1.05); }

/* modal on small screens: phone shell keeps approved size (258px); padding tightens */
@media (max-width: 480px) {
  .refl-modal-overlay { padding: 12px; align-items: flex-start; }
  .refl-modal { padding: 20px 14px 16px; border-radius: 16px; }
  .refl-modal-logo { width: 95px; height: auto; }
  .refl-modal-heading { font-size: 17px; }
}
