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

:root {
  --ink:        #0c0d0f;
  --ink2:       #141618;
  --ink3:       #1c1e22;
  --gold:       #7ED98F;
  --gold-lt:    #7ED98F;
  --gold-dk:    #8a6e3e;
  --cream:      #f4efe8;
  --cream2:     #e8e1d6;
  --t1:         #f0ece6;
  --t2:         #b8b0a4;
  --t3:         #6e6760;
  --line:       rgba(184,151,90,0.18);
  --line2:      rgba(255,255,255,0.07);
  --serif:      'Instrument Serif', Georgia, serif;
  --sans:       'DM Sans', sans-serif;
  --max:        1360px;
  --pad:        clamp(1.5rem, 5vw, 4rem);
}

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

body {
  background: var(--ink);
  color: var(--t1);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
/* ── SHARED ── */
.wrap        { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.eyebrow     { font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); display: block; }
.rule-gold   { width: 40px; height: 1px; background: var(--gold); display: block; margin-bottom: 1.5rem; }

nav.solid {
    background: rgba(6, 8, 7, .96);
    border-bottom: .5px solid var(--bd);
    backdrop-filter: blur(14px);
}

/* ── BUTTONS ── */
.btn-p, .btn-s, .btn-ghost {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-size: 11.5px; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  cursor: pointer; border: none; text-decoration: none;
  transition: all .3s ease;
}
.btn-p {
  background: var(--gold);
  color: var(--ink);
  padding: 1rem 2.2rem;
}
.btn-p:hover { background: var(--gold-lt); transform: translateY(-1px); }

.btn-s {
  background: transparent;
  color: var(--t1);
  padding: 1rem 2.2rem;
  border: 1px solid var(--line);
}
.btn-s:hover { border-color: var(--gold); color: var(--gold); }

.btn-ghost {
  background: transparent;
  color: var(--gold);
  padding: 0;
  gap: .4rem;
  font-size: 11px;
}
.btn-ghost::after { content: '→'; font-size: 13px; }
.btn-ghost:hover { gap: .7rem; }


/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.mem-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.mem-hero video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .22;
}

.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .4;
  pointer-events: none;
}

.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 60%, transparent 30%, var(--ink) 100%);
  pointer-events: none;
}

.hero-line-l, .hero-line-r {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--line2);
}
.hero-line-l { left: var(--pad); }
.hero-line-r { right: var(--pad); }

.mem-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem var(--pad) 6rem;
  max-width: 960px;
}

.hero-kicker {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-kicker::before, .hero-kicker::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-dk);
}

.mem-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--cream);
  margin-bottom: 2rem;
}
.mem-hero h1 em {
  font-style: italic;
  color: var(--gold-lt);
  font-weight: 300;
}

.hero-authority {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 2.8rem;
}

.mem-hero p {
  font-size: 17px;
  color: var(--t2);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.85;
  font-weight: 300;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: 9px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--t3);
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dk), transparent);
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%, 100% { transform: scaleY(1); opacity: .5; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* ── HERO ── */
.hero{position:relative;min-height:100vh;display:flex;align-items:flex-end;overflow:hidden;}
.hero-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;}
.hero-ov{position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(6,8,7,.65) 0%,rgba(6,8,7,.15) 35%,rgba(6,8,7,.55) 65%,rgba(6,8,7,.98) 100%);}
.hero-ov2{position:absolute;inset:0;z-index:1;background:linear-gradient(90deg,rgba(6,8,7,.72) 0%,transparent 65%);}
.hero-content{position:relative;z-index:2;padding:0 3rem 5rem;max-width:860px;}
.hero-badge{display:inline-flex;align-items:center;gap:10px;background:rgba(29,184,127,0.1);border:.5px solid var(--ac-border);padding:6px 18px;border-radius:1px;font-size:10px;letter-spacing:.22em;text-transform:uppercase;color:var(--ac);font-weight:600;margin-bottom:2rem;}
.hero-badge::before{content:'★';font-size:9px;}
.hero-h{font-family:'Instrument Serif',serif;font-size:72px;font-weight:400;line-height:.93;letter-spacing:-.025em;color:var(--t1);margin-bottom:1.25rem;}
.hero-h em{font-style:italic;color:var(--ac);}
.hero-sub{font-family:'Instrument Serif',serif;font-size:20px;font-style:italic;color:rgba(196,145,58,.75);max-width:560px;line-height:1.55;margin-bottom:1.4rem;}
.hero-body{font-size:16px;color:rgba(242,238,232,.62);max-width:540px;line-height:1.9;margin-bottom:2.5rem; padding: 0;}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:2.0rem;}
.hero-stats{display:flex;gap:0;border-top:.5px solid var(--bd);padding-top:2rem;/*flex-wrap:wrap;*/}
.hero-stat{padding:0 2.5rem 0 0;margin-right:2.5rem;border-right:.5px solid var(--bd);}
.hero-stat:last-child{border-right:none;}
.hero-stat-n{font-family:'Instrument Serif',serif;font-size:36px;font-weight:400;color:var(--t1);line-height:1;}
.hero-stat-n span{color:var(--ac);font-style:italic;}
.hero-stat-l{font-size:11px;color:var(--t3);letter-spacing:.1em;text-transform:uppercase;margin-top:.3rem;}


/* ════════════════════════════════════
   MARQUEE TICKER
════════════════════════════════════ */
.ticker-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--ink2);
  padding: 1rem 0;
}
.ticker-inner {
  display: flex;
  gap: 0;
  animation: ticker-run 30s linear infinite;
  width: max-content;
}
.ticker-item {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--t2);
  padding: 0 2.5rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.ticker-item::after {
  content: '◆';
  font-size: 5px;
  color: var(--gold);
  opacity: .7;
}
@keyframes ticker-run {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ════════════════════════════════════
   SECTION 1 — WHAT THIS IS
════════════════════════════════════ */
.what-section {
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.what-left h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  margin: 1.5rem 0 2rem;
}
.what-left h2 em { font-style: italic; color: var(--gold-lt); }

.what-right p {
  font-size: 16.5px;
  color: var(--t2);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.what-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 3rem;
}
.what-stat {
  background: var(--ink2);
  padding: 1.8rem 1.5rem;
  text-align: center;
}
.ws-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: .4rem;
}
.ws-label {
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--t3);
}


/* ════════════════════════════════════
   SECTION 2 — THE SYSTEM (PILLARS)
════════════════════════════════════ */
.system-section {
  background: var(--ink2);
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
  padding: clamp(5rem, 9vw, 8rem) var(--pad);
}

.system-header {
  max-width: var(--max);
  margin: 0 auto 4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.system-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-top: 1rem;
}
.system-header h2 em { font-style: italic; color: var(--gold-lt); }
.system-header p {
  font-size: 15.5px;
  color: var(--t2);
  max-width: 340px;
  line-height: 1.8;
  font-weight: 300;
}

.pillar-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.pillar {
  background: var(--ink);
  padding: 2.8rem 2.5rem;
  position: relative;
  transition: background .3s;
}
.pillar:hover { background: #141618; }

.pillar-num {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  color: var(--line);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color .3s;
}
.pillar:hover .pillar-num { color: rgba(184,151,90,.12); }

.pillar-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1.2rem;
}
.pillar-icon svg {
  width: 100%; height: 100%;
  stroke:#1db87f;
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: .8rem;
  line-height: 1.3;
}
.pillar-body {
  font-size: 14.5px;
  color: var(--t2);
  line-height: 1.85;
  font-weight: 300;
}
.pillar-divider {
  position: absolute;
  bottom: 2.8rem;
  left: 2.5rem;
  width: 24px;
  height: 1px;
  background: var(--gold-dk);
}


/* ════════════════════════════════════
   SECTION 3 — BIOBODYTRACK™ (FEATURE)
════════════════════════════════════ */
.track-section {
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.track-visual {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--ink2);
  border: 1px solid var(--line);
  overflow: hidden;
}
.track-visual video {
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: .55;
}
.track-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(12,13,15,.85);
  border: 1px solid var(--line);
  padding: .7rem 1.1rem;
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4caf7d;
  animation: pulse-live 1.8s ease-in-out infinite;
}
@keyframes pulse-live {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(1.3); }
}
.track-metric-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}
.tm-cell {
  background: rgba(12,13,15,.9);
  padding: 1rem .8rem;
  text-align: center;
}
.tm-val {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: .2rem;
}
.tm-lab {
  font-size: 8.5px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--t3);
}

.track-content { padding: 1rem 0; }
.track-content h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--cream);
  margin: 1.5rem 0 1.8rem;
}
.track-content h2 em { font-style: italic; color: var(--gold-lt); }
.track-content p {
  font-size: 16px;
  color: var(--t2);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1rem;
}
.track-list {
  list-style: none;
  margin: 2rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.track-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 14.5px;
  color: var(--t2);
}
.track-list li::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--gold);
  margin-top: .75rem;
  flex-shrink: 0;
}


/* ════════════════════════════════════
   SECTION 4 — PROGRAMME TIERS
════════════════════════════════════ */
.tiers-section {
  background: var(--ink2);
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
  padding: clamp(5rem, 9vw, 8rem) var(--pad);
}

.tiers-header {
  max-width: var(--max);
  margin: 0 auto 4rem;
  text-align: center;
}
.tiers-header h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  color: var(--cream);
  margin: 1.2rem 0 1rem;
  line-height: 1.15;
}
.tiers-header h2 em { font-style: italic; color: var(--gold-lt); }
.tiers-header p { font-size: 16px; color: var(--t2); max-width: 560px; margin: 0 auto; font-weight: 300; line-height: 1.85; }

.tiers-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.tier {
  background: var(--ink);
  padding: 3rem 2.8rem 3.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.tier.featured {
  background: linear-gradient(160deg, #111316 0%, #0e100d 100%);
}
.tier-flag {
  position: absolute;
  top: 0; right: 2.8rem;
  background: #1db87f;
  color: var(--ink);
  font-size: 8.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  padding: .35rem .8rem;
}

.tier-name {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: .4rem;
  line-height: 1;
}
.tier-tagline {
  font-size: 12px;
  color: #1db87f;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.tier-desc {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 2rem;
  flex: 1;
}
.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-bottom: 2.5rem;
}
.tier-features li {
  font-size: 13.5px;
  color: var(--t2);
  display: flex;
  align-items: center;
  gap: .8rem;
}
.tier-features li::before {
  content: '◆';
  font-size: 5px;
  color: var(--gold);
  flex-shrink: 0;
}

.tier-price-note {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--t3);
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  margin-bottom: 1.5rem;
}


/* ════════════════════════════════════
   SECTION 5 — MEMBERSHIP FRAMEWORK
════════════════════════════════════ */
.framework-section {
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}

.framework-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
  margin-bottom: 4rem;
}
.framework-top h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-top: 1.2rem;
}
.framework-top h2 em { font-style: italic; color: var(--gold-lt); }
.framework-top p { font-size: 16px; color: var(--t2); line-height: 1.9; font-weight: 300; }

.framework-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.fw-step {
  background: var(--ink);
  padding: 2.5rem 2rem 2.8rem;
  position: relative;
  overflow: hidden;
}
.fw-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: background .3s;
}
.fw-step:hover::before { background: var(--gold); }

.fw-n {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--line);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.fw-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: .7rem;
}
.fw-body {
  font-size: 13.5px;
  color: var(--t2);
  line-height: 1.85;
  font-weight: 300;
}


/* ════════════════════════════════════
   SECTION 6 — EMOTIONAL / INVITATION
════════════════════════════════════ */
.invitation-section {
  position: relative;
  background: linear-gradient(135deg, #0d0f0c 0%, #111209 50%, #0c0d0f 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: clamp(5rem, 11vw, 10rem) var(--pad);
  text-align: center;
}
.inv-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(184,151,90,.07) 0%, transparent 70%);
  pointer-events: none;
}
.invitation-section .eyebrow { justify-content: center; display: flex; margin-bottom: 2rem; }
.invitation-section h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  max-width: 800px;
  margin: 0 auto 1.8rem;
}
.invitation-section h2 em { font-style: italic; color: var(--gold-lt); }
.invitation-section p {
  font-size: 17px;
  color: var(--t2);
  max-width: 580px;
  margin: 0 auto 3rem;
  font-weight: 300;
  line-height: 1.9;
}
.inv-pillars {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 3.5rem;
  border: 1px solid var(--line);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.inv-pillar {
  padding: 1.5rem 2.5rem;
  border-right: 1px solid var(--line);
  flex: 1;
  min-width: 140px;
}
.inv-pillar:last-child { border-right: none; }
.inv-pillar-word {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-lt);
  display: block;
  margin-bottom: .25rem;
  font-style: italic;
}
.inv-pillar-sub {
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--t3);
}


/* ════════════════════════════════════
   SECTION 7 — YOUR JOURNEY (3 STEPS)
════════════════════════════════════ */
.journey-section {
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.journey-left h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin: 1.2rem 0 1.5rem;
}
.journey-left h2 em { font-style: italic; color: var(--gold-lt); }
.journey-left p { font-size: 15.5px; color: var(--t2); line-height: 1.9; font-weight: 300; }

.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.jstep {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line2);
  align-items: start;
}
.jstep:last-child { border-bottom: none; }
.jstep-n {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: #1db87f;
  line-height: 1;
  padding-top: .2rem;
}
.jstep-tag { font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.jstep-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: .6rem;
  line-height: 1.3;
}
.jstep-body { font-size: 14.5px; color: var(--t2); line-height: 1.85; font-weight: 300; }


/* ════════════════════════════════════
   SECTION 8 — ACCESS & AVAILABILITY
════════════════════════════════════ */
.access-section {
  background: var(--ink2);
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
  padding: clamp(4rem, 8vw, 7rem) var(--pad);
}
.access-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.access-left h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin: 1.2rem 0 1.5rem;
}
.access-left h2 em { font-style: italic; color: var(--gold-lt); }
.access-left p { font-size: 15.5px; color: var(--t2); line-height: 1.9; font-weight: 300; }

.access-right {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.acc-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.4rem 1.8rem;
  border: 1px solid var(--line);
  background: var(--ink);
}
.acc-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: .35rem;
}
.acc-text { font-size: 14px; color: var(--t2); line-height: 1.75; font-weight: 300; }

.scarcity-tag {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: rgba(184,151,90,.08);
  border: 1px solid var(--line);
  padding: .6rem 1.2rem;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2rem;
}
.sc-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-live 2s ease-in-out infinite;
}


/* ════════════════════════════════════
   FORM SECTION
════════════════════════════════════ */
.form-section {
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.form-left-ctx { padding-top: 1rem; }
.form-left-ctx h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin: 1.2rem 0 1.5rem;
}
.form-left-ctx h2 em { font-style: italic; color: var(--gold-lt); }
.form-left-ctx p { font-size: 15px; color: var(--t2); line-height: 1.9; font-weight: 300; margin-bottom: 1.2rem; }

.form-trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin: 2rem 0;
}
.form-trust-list li {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  font-size: 13px;
  color: var(--t2);
}
.form-trust-list li::before {
  content: '';
  display: block;
  width: 14px;
  height: 1px;
  background: var(--gold);
  margin-top: .65rem;
  flex-shrink: 0;
}
.form-direct {
  border-top: 1px solid var(--line2);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}
.form-direct .fd-label { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.form-direct p { font-size: 13.5px; color: var(--t3); line-height: 1.8; }
.form-direct a { color: var(--gold); text-decoration: none; }
.form-direct a:hover { color: var(--gold-lt); }

/* The form itself */
.mem-form {
  background: var(--ink2);
  border: 1px solid var(--line);
  padding: 3rem;
}

.field-section-label {
  font-size: 9.5px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 1rem;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid var(--line);
  display: block;
}

.field-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.field-group label {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--t2);
}
.field-group input,
.field-group select,
.field-group textarea {
  background: var(--ink);
  border: 1px solid var(--line2);
  color: var(--t1);
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 300;
  padding: .85rem 1.1rem;
  outline: none;
  transition: border-color .25s;
  width: 100%;
  appearance: none;
}
.field-group input::placeholder,
.field-group textarea::placeholder { color: var(--t3); }
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus { border-color: var(--gold-dk); }
.field-group textarea { min-height: 120px; resize: vertical; }

.option-group {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.opt-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: 13.5px;
  color: var(--t2);
  cursor: pointer;
  font-weight: 300;
}
.opt-item input[type="radio"] {
  width: auto; padding: 0;
  accent-color: var(--gold);
  cursor: pointer;
}

.req { color: var(--gold); }
.field-group select { color: var(--t2); }
.field-group select option { background: var(--ink); }

.form-submit-area { margin-top: 2.5rem; border-top: 1px solid var(--line2); padding-top: 2rem; }
.form-submit-area .btn-p { width: 100%; justify-content: center; padding: 1.2rem 2rem; font-size: 11px; }
.form-submit-area .fn { font-size: 11.5px; color: var(--t3); margin-top: 1rem; line-height: 1.65; text-align: center; }

.form-row-opt { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }


/* ════════════════════════════════════
   ADVISOR CTA SECTION
════════════════════════════════════ */
.advisor-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}
.adv-media {
  position: relative;
  overflow: hidden;
}
.adv-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .5;
}
.adv-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 40%, var(--ink2) 100%);
}

.adv-content {
  background: var(--ink2);
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
  padding: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.adv-content h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin: 1.2rem 0 1.2rem;
}
.adv-content h2 em { font-style: italic; color: var(--gold-lt); }
.adv-content p { font-size: 15.5px; color: var(--t2); line-height: 1.9; font-weight: 300; margin-bottom: 2rem; }

.adv-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 2.5rem;
}
.adv-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 14px;
  color: var(--t2);
}
.adv-list li::before {
  content: '';
  display: block;
  width: 14px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.adv-acts { display: flex; gap: 1rem; flex-wrap: wrap; }


/* ════════════════════════════════════
   CLOSING SECTION
════════════════════════════════════ */
.closing-section {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 12vw, 11rem) var(--pad);
  text-align: center;
}
.closing-bg {
  position: absolute; inset: 0;
  background-image: url('https://www.biohealthcareclub.com/images/background/4.jpg');
  background-size: cover;
  background-position: center;
  opacity: .07;
}
.closing-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--ink) 0%, transparent 30%, transparent 70%, var(--ink) 100%);
}

.closing-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.closing-pre {
  font-size: 9.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 2rem;
}
.closing-inner h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.closing-inner h2 em { font-style: italic; color: var(--gold-lt); }
.closing-inner p { font-size: 17px; color: var(--t2); font-weight: 300; line-height: 1.9; margin-bottom: 3rem; }

.closing-words {
  display: flex;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--line);
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}
.cl-word {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-lt);
  padding: 1.2rem 2rem;
  border-right: 1px solid var(--line);
  flex: 1;
  min-width: 130px;
}
.cl-word:last-child { border-right: none; }

.closing-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 4rem; }

.closing-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  max-width: 700px;
  margin: 0 auto;
}
.cp-item {
  background: rgba(12,13,15,.8);
  padding: 1.5rem;
  text-align: center;
}
.cp-val {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  display: block;
  margin-bottom: .25rem;
}
.cp-lab {
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--t3);
}


/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1024px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .framework-steps { grid-template-columns: repeat(2, 1fr); }
  .tiers-grid { grid-template-columns: 1fr; }
  .tier { padding: 2.5rem 2rem 3rem; }
  .form-row-opt { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .what-section,
  .track-section,
  .journey-section,
  .access-inner,
  .form-section { grid-template-columns: 1fr; }
  .track-visual { aspect-ratio: 16/10; }
  .what-stat-row { grid-template-columns: 1fr 1fr; }
  .pillar-grid { grid-template-columns: 1fr; }
  .framework-steps { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: 1fr; }
  .advisor-section { grid-template-columns: 1fr; }
  .adv-media { min-height: 300px; }
  .closing-proof { grid-template-columns: 1fr; }
  .closing-words { flex-direction: column; }
  .cl-word { border-right: none; border-bottom: 1px solid var(--line); }
  .cl-word:last-child { border-bottom: none; }
  .inv-pillars { flex-direction: column; }
  .inv-pillar { border-right: none; border-bottom: 1px solid var(--line); }
  .inv-pillar:last-child { border-bottom: none; }
  .mem-form { padding: 2rem 1.5rem; }
  .field-row { grid-template-columns: 1fr; }
  .system-header { flex-direction: column; align-items: flex-start; }
  .framework-top { grid-template-columns: 1fr; }
}