/* =====================================================
   OPTIMIZATION & LONGEVITY PAGE — Viva IV Therapy
   Premium gold-accent cinematic dark styles
   ===================================================== */

:root {
  --accent:    #358fe7;
  --accent2:   #1e73be;
  --gold:      #d4af37;
  --gold2:     #b8952a;
  --gold-dim:  rgba(212,175,55,0.15);
  --gold-border: rgba(212,175,55,0.25);
  --bg:        #222326;
  --bg2:       #1a1c1f;
  --bg3:       #131519;
  --surface:   #2e3035;
  --border:    rgba(255,255,255,0.08);
  --text:      #ffffff;
  --text-muted:#d1d1d1;
  --text-dim:  #8d8d8d;
  --green:     #2ecc71;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Raleway', sans-serif;
}

/* ── Utility ── */
.ol-gold      { color: var(--gold); }
.ol-gold-text { color: var(--gold); }

.ol-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.ol-section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--text);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.ol-section-header-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.ol-section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

/* Gold CTA button */
.ol-btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #0a0a0a;
  border: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: opacity 0.2s, transform 0.2s;
}
.ol-btn-gold:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: #0a0a0a;
}

/* =====================================================
   HERO
   ===================================================== */
.ol-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.ol-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 65% 45%, rgba(212,175,55,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 35% 50% at 15% 70%, rgba(53,143,231,0.06) 0%, transparent 50%),
    linear-gradient(160deg, #080c10 0%, #0f1118 45%, #0c1015 100%);
}

/* Gold grid */
.ol-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.04) 1px, transparent 1px);
  background-size: 70px 70px;
}

/* Pulsing gold orb */
.ol-hero-bg::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 65%);
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  animation: ol-glow 7s ease-in-out infinite;
}

@keyframes ol-glow {
  0%, 100% { opacity: 0.5; transform: translateY(-50%) scale(1); }
  50%       { opacity: 1;   transform: translateY(-50%) scale(1.12); }
}

.ol-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,12,16,0.9) 50%, transparent 100%);
}

.ol-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-left: max(5vw, 40px);
  padding: 150px 0 60px;
}

.ol-hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.ol-hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 600;
  line-height: 0.95;
  color: var(--text);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}

.ol-hero-sub {
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.ol-hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.ol-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dim);
  border-top: 1px solid var(--gold-border);
  padding-top: 1.5rem;
}

/* Hero stat strip */
.ol-hero-stat-strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(212,175,55,0.06);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 1.5rem max(5vw, 40px);
  margin-top: auto;
}

.ol-hstat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  text-align: center;
}

.ol-hstat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.ol-hstat-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ol-hstat-div {
  width: 1px;
  height: 40px;
  background: var(--gold-border);
  flex-shrink: 0;
}

/* =====================================================
   MANIFESTO
   ===================================================== */
.ol-manifesto {
  background: var(--bg3);
  padding: 80px 0;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.ol-manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.ol-manifesto-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ol-manifesto-quote {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin: 0;
  font-style: normal;
}

.ol-manifesto-cite {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
  font-family: var(--font-head);
}

/* =====================================================
   WHO THIS IS FOR
   ===================================================== */
.ol-who {
  background: var(--bg2);
  padding: 100px 0;
}

.ol-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ol-who-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.ol-who-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.ol-who-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border);
}

.ol-who-card:hover::before { opacity: 1; }

.ol-who-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.ol-who-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.8rem;
}

.ol-who-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* =====================================================
   THE PROCESS
   ===================================================== */
.ol-process {
  background: var(--bg);
  padding: 100px 0;
}

.ol-process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* Vertical connector line */
.ol-process-steps::before {
  content: '';
  position: absolute;
  left: 44px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-border) 10%, var(--gold-border) 90%, transparent);
}

.ol-step {
  display: flex;
  gap: 2.5rem;
  padding: 2.5rem 0 2.5rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.ol-step:last-child { border-bottom: none; }

.ol-step-num {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--bg);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
  margin-top: 4px;
}

.ol-step-body {
  flex: 1;
}

.ol-step-icon {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.ol-step-body h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.8rem;
}

.ol-step-body > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.2rem;
  max-width: 800px;
}

.ol-step-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.ol-step-details span {
  font-size: 0.78rem;
  color: var(--text-dim);
  background: rgba(212,175,55,0.06);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 3px 12px;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
}

/* =====================================================
   PILLARS (What We Optimize)
   ===================================================== */
.ol-pillars {
  background: var(--bg2);
  padding: 100px 0;
}

.ol-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  overflow: hidden;
}

.ol-pillar-card {
  background: var(--bg3);
  padding: 2rem 1.6rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.ol-pillar-card:hover {
  background: #1a1c20;
}

.ol-pillar-num {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 600;
  color: rgba(212,175,55,0.07);
  line-height: 1;
  position: absolute;
  top: 0.5rem;
  right: 0.8rem;
  pointer-events: none;
}

.ol-pillar-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.ol-pillar-card h3 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.7rem;
}

.ol-pillar-card p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.ol-pillar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.ol-pillar-card li {
  font-size: 0.78rem;
  color: var(--text-dim);
  padding-left: 1rem;
  position: relative;
  line-height: 1.4;
}

.ol-pillar-card li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.4rem;
  top: 4px;
}

/* =====================================================
   LAB SECTION
   ===================================================== */
.ol-labs {
  background: linear-gradient(160deg, #0a0d12 0%, #0f1318 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.ol-labs::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  bottom: -150px;
  right: -100px;
}

.ol-labs-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.ol-labs-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.ol-labs-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.ol-lh {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.ol-lh-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ol-lh strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.ol-lh p {
  font-size: 0.82rem !important;
  color: var(--text-dim) !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

/* Lab card */
.ol-labs-card {
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.ol-labs-card-header {
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
  border-bottom: 1px solid var(--gold-border);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ol-labs-card-header .ol-gold-text {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ol-labs-count {
  font-family: var(--font-head);
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
}

.ol-labs-categories {
  padding: 1rem 0;
}

.ol-lcat {
  padding: 0.8rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.ol-lcat:last-child { border-bottom: none; }

.ol-lcat-title {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.ol-lcat-items {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.55;
}

.ol-labs-card-note {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-align: center;
  padding: 0.8rem 1.5rem;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.2);
  font-style: italic;
}

/* =====================================================
   TIERS
   ===================================================== */
.ol-tiers {
  background: var(--bg);
  padding: 100px 0;
}

.ol-tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

/* Base tier */
.ol-tier {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.6rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.3s, border-color 0.3s;
}

.ol-tier:hover { transform: translateY(-4px); }

.ol-tier-badge {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.8rem;
}

.ol-tier-badge--performance { color: var(--accent); }
.ol-tier-badge--elite       { color: var(--gold); }
.ol-tier-badge--executive   { color: var(--gold); }

.ol-tier-popular {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.ol-tier-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.8rem;
}

.ol-tier-price-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}

.ol-tier-price-period {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.ol-tier-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.ol-tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.ol-tier-features li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.ol-check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.ol-check--gold { color: var(--gold); }
.ol-x          { color: var(--text-dim); flex-shrink: 0; font-size: 0.8rem; }

/* Tier buttons */
.ol-tier-btn {
  display: block;
  text-align: center;
  padding: 0.8rem 1rem;
  border-radius: 4px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: auto;
}

.ol-tier-btn:hover { opacity: 0.85; transform: translateY(-1px); }

.ol-tier-btn--foundation {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.ol-tier-btn--performance {
  background: var(--accent);
  border: none;
  color: #fff;
}

.ol-tier-btn--elite {
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.08));
  border: 1px solid var(--gold-border);
  color: var(--gold);
}

.ol-tier-btn--executive {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border: none;
  color: #0a0a0a;
  font-weight: 700;
}

/* Performance tier highlight */
.ol-tier--performance {
  border-color: rgba(53,143,231,0.3);
  background: linear-gradient(160deg, rgba(53,143,231,0.05) 0%, var(--surface) 50%);
}

/* Elite tier */
.ol-tier--elite {
  border-color: var(--gold-border);
  background: linear-gradient(160deg, var(--gold-dim) 0%, var(--surface) 50%);
}

/* Executive tier — the crown jewel */
.ol-tier--executive {
  border: 2px solid var(--gold);
  background: linear-gradient(160deg, rgba(212,175,55,0.12) 0%, #1a1c20 60%);
  box-shadow: 0 0 40px rgba(212,175,55,0.12), inset 0 1px 0 rgba(212,175,55,0.15);
}

.ol-tier-crown {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.ol-tier--executive .ol-tier-price-num {
  color: var(--gold);
}

.ol-exec-note {
  font-size: 0.72rem;
  color: rgba(212,175,55,0.5);
  text-align: center;
  margin: 0.6rem 0 0;
  font-style: italic;
}

.ol-tiers-compare-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.ol-tiers-compare-note a {
  color: var(--gold);
  text-decoration: none;
}

/* =====================================================
   EXECUTIVE SPOTLIGHT
   ===================================================== */
.ol-exec {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.ol-exec-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(212,175,55,0.10) 0%, transparent 60%),
    linear-gradient(160deg, #060810 0%, #0c0f14 100%);
}

.ol-exec-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212,175,55,0.15) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.3;
}

.ol-exec-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ol-exec-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.ol-exec-text em { color: var(--gold); font-style: normal; }

.ol-exec-bullets {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.ol-exec-bullet {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ol-exec-bullet-icon {
  font-size: 0.6rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.ol-exec-bullet strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.ol-exec-bullet p {
  font-size: 0.85rem !important;
  color: var(--text-dim) !important;
  margin: 0 !important;
  line-height: 1.55 !important;
}

/* Executive apply card */
.ol-exec-apply-card {
  background: linear-gradient(160deg, rgba(212,175,55,0.1), rgba(0,0,0,0.5));
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 0 60px rgba(212,175,55,0.1);
}

.ol-exec-apply-crown {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.ol-exec-apply-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin: 0 0 1rem;
}

.ol-exec-apply-price {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.25rem;
}

.ol-exec-apply-price span {
  font-size: 1rem;
  color: var(--text-dim);
}

.ol-exec-apply-limit {
  font-size: 0.78rem;
  color: rgba(212,175,55,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-head);
  margin: 0 0 1.5rem;
}

.ol-exec-apply-divider {
  height: 1px;
  background: var(--gold-border);
  margin-bottom: 1.2rem;
}

.ol-exec-apply-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ol-exec-apply-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}

.ol-exec-apply-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.4rem;
  top: 5px;
}

/* =====================================================
   PEPTIDES
   ===================================================== */
.ol-peptides {
  background: var(--bg2);
  padding: 100px 0;
}

.ol-peptides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.ol-pep-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.ol-pep-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ol-pep-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-border);
}

.ol-pep-category {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.ol-pep-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.8rem;
}

.ol-pep-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.ol-pep-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.ol-pep-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 2px 10px;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
}

.ol-peptides-note {
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 1.2rem 1.8rem;
}

.ol-peptides-note p {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.6;
  font-style: italic;
}

/* =====================================================
   DR. CORDOVA
   ===================================================== */
.ol-doctor {
  background: var(--bg);
  padding: 100px 0;
}

.ol-doctor-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: center;
}

.ol-doctor-img {
  position: relative;
}

.ol-doctor-img::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  pointer-events: none;
}

.ol-doctor-img::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  right: 20px;
  top: 20px;
  background: var(--gold-dim);
  border-radius: 8px;
  z-index: -1;
}

.ol-doctor-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
  display: block;
  position: relative;
  z-index: 1;
}

.ol-doctor-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.ol-doctor-creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 2rem;
}

.ol-cred {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.7rem 1rem;
}

.ol-cred .ol-gold-text {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  min-width: 44px;
  line-height: 1;
}

.ol-cred span:last-child {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.35;
}

/* =====================================================
   CONSULT CTA
   ===================================================== */
.ol-consult {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

.ol-consult-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(212,175,55,0.14) 0%, transparent 60%),
    linear-gradient(160deg, #06080c 0%, #0a0c10 100%);
}

.ol-consult-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212,175,55,0.2) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.35;
}

.ol-consult-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ol-consult-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.0;
  color: var(--text);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 1rem 0 1.5rem;
}

.ol-consult-content > p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.ol-consult-bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
  margin-bottom: 2.5rem;
  font-size: 0.88rem;
  color: var(--text-dim);
}

.ol-consult-btn {
  font-size: 1rem;
  padding: 1.1rem 2.8rem;
  letter-spacing: 0.06em;
  box-shadow: 0 0 50px rgba(212,175,55,0.3);
}

.ol-consult-sub {
  font-size: 0.85rem !important;
  color: var(--text-dim) !important;
  margin: 1.5rem auto 0.8rem !important;
}

.ol-consult-sub a, .ol-quiz-note a {
  color: var(--gold);
  text-decoration: none;
}

.ol-quiz-note {
  font-size: 0.82rem !important;
  color: var(--text-dim) !important;
  margin: 0.4rem auto 0 !important;
}

/* =====================================================
   DISCLAIMER
   ===================================================== */
.ol-disclaimer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.ol-disclaimer p {
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* =====================================================
   RESPONSIVE — Tablet (≤1200px)
   ===================================================== */
@media (max-width: 1200px) {
  .ol-tiers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ol-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .ol-labs-inner,
  .ol-exec-content,
  .ol-doctor-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ol-labs-card,
  .ol-doctor-img {
    position: static;
  }

  .ol-doctor-img img {
    height: 360px;
  }

  .ol-who-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ol-peptides-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ol-hero-stat-strip {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .ol-hstat-div { display: none; }
  .ol-hstat { min-width: 120px; }
}

/* =====================================================
   RESPONSIVE — Mobile (≤768px)
   ===================================================== */
@media (max-width: 768px) {
  .ol-hero-content {
    margin-left: 0;
    padding: 120px 1.5rem 50px;
  }

  .ol-hero-title {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .ol-hero-ctas { flex-direction: column; }

  .ol-who       { padding: 70px 0; }
  .ol-process   { padding: 70px 0; }
  .ol-pillars   { padding: 70px 0; }
  .ol-labs      { padding: 70px 0; }
  .ol-tiers     { padding: 70px 0; }
  .ol-exec      { padding: 70px 0; }
  .ol-peptides  { padding: 70px 0; }
  .ol-doctor    { padding: 70px 0; }
  .ol-consult   { padding: 80px 0; }
  .ol-manifesto { padding: 60px 0; }

  .ol-who-grid {
    grid-template-columns: 1fr;
  }

  .ol-tiers-grid {
    grid-template-columns: 1fr;
  }

  .ol-pillars-grid {
    grid-template-columns: 1fr;
  }

  .ol-peptides-grid {
    grid-template-columns: 1fr;
  }

  .ol-doctor-creds {
    grid-template-columns: 1fr;
  }

  .ol-process-steps::before { display: none; }

  .ol-step {
    gap: 1.2rem;
    flex-direction: column;
  }

  .ol-step-num {
    width: 36px;
    height: 36px;
    font-size: 0.65rem;
  }

  .ol-consult-bullets {
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
  }

  .ol-section-title {
    font-size: clamp(1.7rem, 7vw, 2.5rem);
  }

  .ol-manifesto-quote {
    font-size: clamp(1.2rem, 4vw, 1.7rem);
  }
}
