/* ─────────────────────────────────────────────
   FUTURE-YOU-PROGRAM  ·  Design System v2
   Dark-gold prestige · Mobile-first responsive
───────────────────────────────────────────── */

:root {
  --black:        #090909;
  --ink:          #0e0e0e;
  --charcoal:     #141414;
  --graphite:     #1c1c1c;
  --gold:         #C9A56E;
  --gold-light:   #DFC08A;
  --gold-dark:    #9E7A45;
  --gold-dim:     rgba(201,165,110,0.12);
  --gold-border:  rgba(201,165,110,0.28);
  --gold-glow:    rgba(201,165,110,0.08);
  --white:        #FFFFFF;
  --text:         #F0EDE8;
  --muted:        #A89880;
  --quiet:        #6B6055;
  --shadow:       0 28px 80px rgba(0,0,0,0.52);
  --shadow-sm:    0 8px 32px rgba(0,0,0,0.38);
  --radius:       2px;
  --transition:   220ms cubic-bezier(0.22,1,0.36,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--black);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 1;
}
h1 { color: var(--white); font-size: clamp(48px, 7.5vw, 96px); }
h2 { color: var(--text);  font-size: clamp(34px, 4.5vw, 62px); line-height: 1.04; }
h3 { color: var(--text);  font-size: clamp(20px, 2.2vw, 26px); line-height: 1.2; }
p  { line-height: 1.72; }

.eyebrow {
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

/* ── Scroll reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }

/* ── Buttons ── */
.btn {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.06em;
  min-height: 50px;
  padding: 14px 24px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn.primary {
  background: var(--gold);
  color: var(--black);
}
.btn.primary:hover { background: var(--gold-light); box-shadow: 0 8px 28px rgba(201,165,110,0.28); }
.btn.secondary {
  border-color: var(--gold-border);
  color: var(--text);
}
.btn.secondary:hover { border-color: var(--gold); color: var(--gold-light); }

/* ── Layout helpers ── */
.section-inner {
  margin: 0 auto;
  max-width: 1200px;
  padding: 100px clamp(20px, 5vw, 60px);
}
.section-inner.narrow { max-width: 900px; }

/* ─────────────────────────────────────────────
   HEADER
───────────────────────────────────────────── */
.site-header {
  align-items: center;
  background: rgba(9,9,9,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-border);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 68px;
  position: fixed;
  right: 0;
  top: 0;
  transition: box-shadow var(--transition), background var(--transition);
  z-index: 100;
}
.site-header.is-scrolled {
  background: rgba(9,9,9,0.96);
  box-shadow: 0 1px 0 var(--gold-border), 0 16px 48px rgba(0,0,0,0.5);
}

.brand {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
  gap: 14px;
}
.brand-mark {
  align-items: center;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  letter-spacing: 0.06em;
  width: 38px;
  border-radius: var(--radius);
}
.brand-text {
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(16px, 2.5vw, 36px);
}
.nav-links a {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.header-cta {
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 10px 18px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  border-radius: var(--radius);
  flex-shrink: 0;
}
.header-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  align-items: flex-start;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 94svh;
  overflow: hidden;
  padding: clamp(100px,14vh,140px) clamp(20px,5vw,60px) 80px;
  position: relative;
}

.hero-image, .hero-shade {
  inset: 0;
  position: absolute;
}
.hero-image {
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  width: 100%;
}
.hero-shade {
  background:
    radial-gradient(ellipse at 64% 18%, rgba(201,165,110,0.22), transparent 36%),
    linear-gradient(100deg, rgba(9,9,9,0.97) 0%, rgba(9,9,9,0.86) 42%, rgba(9,9,9,0.3) 78%),
    linear-gradient(0deg, rgba(9,9,9,0.94) 0%, rgba(9,9,9,0.06) 46%);
}

/* Subtle top gold line */
.hero::before {
  content: '';
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
  z-index: 2;
}

.hero-content {
  color: var(--white);
  max-width: 720px;
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 18px 0 24px;
  letter-spacing: -0.01em;
}

.hero-copy {
  color: rgba(240,237,232,0.78);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  left: clamp(20px,5vw,60px);
  position: absolute;
  z-index: 3;
  max-width: calc(100% - clamp(40px,10vw,120px));
}
.hero-proof span {
  background: rgba(9,9,9,0.52);
  border: 1px solid var(--gold-border);
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 9px 14px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

/* ─────────────────────────────────────────────
   INTRO BAND
───────────────────────────────────────────── */
.intro {
  background: var(--ink);
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
}
.split {
  display: grid;
  gap: clamp(32px,6vw,80px);
  grid-template-columns: minmax(0,0.85fr) minmax(0,1.15fr);
  align-items: center;
}
.intro-copy {
  color: var(--muted);
  font-size: clamp(16px,1.5vw,19px);
  line-height: 1.78;
}
.intro-copy p + p { margin-top: 1em; }

/* ─────────────────────────────────────────────
   PATHS  (3-col cards)
───────────────────────────────────────────── */
.paths { background: var(--black); }

.section-heading {
  margin: 0 auto 56px;
  max-width: 860px;
  text-align: center;
}
.section-heading p:last-child {
  color: var(--muted);
  font-size: clamp(15px,1.4vw,18px);
  margin-top: 18px;
}

.path-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3,minmax(0,1fr));
}

.path-card {
  background: linear-gradient(160deg,rgba(28,21,8,0.55) 0%,rgba(14,14,14,0.98) 100%);
  border: 1px solid var(--gold-border);
  border-top: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  min-height: 400px;
  padding: 32px 28px 28px;
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: var(--shadow-sm);
}
.path-card:hover {
  border-color: rgba(201,165,110,0.6);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.path-index {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.7;
}

.path-card h3 { color: var(--text); margin-bottom: 14px; }
.path-card p  { color: var(--muted); font-size: 0.9rem; line-height: 1.75; margin-bottom: 18px; }

.path-card ul {
  list-style: none;
  border-top: 1px solid var(--gold-dim);
  padding: 16px 0 0;
  margin-bottom: 28px;
  flex: 1;
}
.path-card ul li {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  padding: 5px 0 5px 18px;
  position: relative;
}
.path-card ul li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.5rem;
  left: 0;
  position: absolute;
  top: 8px;
}
.path-card a {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: auto;
  text-transform: uppercase;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.path-card a::after { content: "→"; }
.path-card a:hover { color: var(--gold); }

/* ─────────────────────────────────────────────
   CYCLE  (video bg)
───────────────────────────────────────────── */
.cycle-section {
  background: var(--black);
  overflow: hidden;
  position: relative;
}
.cycle-bg-video, .cycle-bg-overlay {
  inset: 0;
  position: absolute;
}
.cycle-bg-video {
  height: 100%; object-fit: cover; opacity: 0.3; width: 100%; z-index: 0;
}
.cycle-bg-overlay {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(201,165,110,0.14), transparent 38%),
    linear-gradient(180deg, rgba(9,9,9,0.95) 0%, rgba(9,9,9,0.7) 40%, rgba(9,9,9,0.96) 100%);
  z-index: 1;
}
.cycle-section .section-inner { position: relative; z-index: 2; }
.cycle-section h2, .cycle-section h3 { color: var(--white); }

.cycle-layout {
  display: grid;
  gap: clamp(32px,5vw,60px);
  grid-template-columns: 1fr;
}
.cycle-wheel {
  isolation: isolate;
  margin: 0 auto;
  max-width: 1080px;
  position: relative;
  width: 100%;
}
.cycle-wheel::before {
  background: radial-gradient(circle at 50%54%, rgba(201,165,110,0.18), transparent 62%);
  content: '';
  filter: blur(30px);
  inset: 8% 4% -4%;
  opacity: 0.7;
  position: absolute;
  z-index: -1;
}
.cycle-image {
  border: 1px solid rgba(201,165,110,0.14);
  box-shadow: 0 32px 100px rgba(0,0,0,0.55);
  width: 100%;
}
.cycle-mobile-flow { display: none; }

.cycle-panel {
  background: linear-gradient(160deg, rgba(28,21,8,0.68) 0%, rgba(17,17,17,0.96) 100%);
  border: 1px solid var(--gold-border);
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 1080px;
  min-height: 360px;
  padding: clamp(28px,4vw,48px);
  border-radius: var(--radius);
}
.cycle-panel h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px,5vw,58px);
  color: var(--white);
  margin: 14px 0 18px;
}
.cycle-panel p, .cycle-panel li { color: var(--muted); font-size: clamp(15px,1.4vw,18px); line-height: 1.7; }
.cycle-panel ul { padding-left: 20px; margin-top: 14px; }
.cycle-panel li + li { margin-top: 8px; }

/* ─────────────────────────────────────────────
   MENTOR
───────────────────────────────────────────── */
.mentor { background: var(--ink); border-top: 1px solid var(--gold-dim); border-bottom: 1px solid var(--gold-dim); }
.mentor-grid {
  display: grid;
  gap: clamp(40px,6vw,88px);
  grid-template-columns: minmax(0,1fr) minmax(0,1.15fr);
  align-items: start;
}
.mentor-grid > div:first-child h2 { color: var(--text); }
.mentor-points { display: grid; gap: 0; }
.mentor-points div {
  border-top: 1px solid var(--gold-dim);
  padding: 28px 0;
}
.mentor-points div:last-child { border-bottom: 1px solid var(--gold-dim); }
.mentor-points h3 { color: var(--text); margin-bottom: 10px; font-size: clamp(17px,1.6vw,22px); }
.mentor-points p  { color: var(--muted); font-size: 0.92rem; line-height: 1.75; }

/* ─────────────────────────────────────────────
   PLATFORM  (4-col)
───────────────────────────────────────────── */
.platform {
  background:
    linear-gradient(to bottom, rgba(9,9,9,0.72) 0%, rgba(9,9,9,0.55) 40%, rgba(9,9,9,0.72) 100%),
    url('assets/fyp-5elements2.png') center center / cover no-repeat;
  background-attachment: fixed;
}
.platform-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4,minmax(0,1fr));
}
.platform-grid article {
  background: linear-gradient(160deg, rgba(28,21,8,0.72) 0%, rgba(9,9,9,0.88) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--gold-border);
  min-height: 240px;
  padding: 28px 24px;
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}
.platform-grid article:hover { border-color: rgba(201,165,110,0.55); transform: translateY(-3px); }
.platform-grid span {
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}
.platform-grid h3 { color: var(--text); font-size: 1.1rem; margin-bottom: 12px; }
.platform-grid p  { color: var(--muted); font-size: 0.88rem; line-height: 1.7; }

/* ─────────────────────────────────────────────
   ASSESSMENT
───────────────────────────────────────────── */
.assessment { background: var(--ink); border-top: 1px solid var(--gold-dim); border-bottom: 1px solid var(--gold-dim); }
.assessment-layout {
  align-items: start;
  display: grid;
  gap: clamp(40px,6vw,80px);
  grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr);
}
.assessment-copy { color: var(--muted); font-size: 0.95rem; margin-top: 18px; line-height: 1.75; }

.assessment-card, .lead-form {
  background: linear-gradient(160deg, rgba(28,21,8,0.6) 0%, rgba(14,14,14,0.98) 100%);
  border: 1px solid var(--gold-border);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  padding: clamp(24px,4vw,40px);
}

label {
  color: var(--text);
  display: grid;
  font-size: 11px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input, select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  color: var(--text);
  font: 500 15px "Inter", Arial, sans-serif;
  min-height: 48px;
  padding: 12px 16px;
  transition: border-color var(--transition);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
input:focus, select:focus {
  border-color: var(--gold-dark);
  outline: none;
  background: rgba(201,165,110,0.05);
}

.assessment-result {
  background: rgba(201,165,110,0.05);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.6;
  min-height: 80px;
  padding: 18px 20px;
}
.form-result { color: var(--gold-light); font-size: 0.9rem; font-weight: 600; line-height: 1.5; min-height: 22px; }
.checkbox {
  align-items: flex-start;
  cursor: pointer;
  display: flex;
  font-size: 12px;
  font-weight: 500;
  gap: 12px;
  letter-spacing: 0.02em;
  line-height: 1.6;
  text-transform: none;
  color: var(--muted);
}

/* Custom checkbox — override global input rule */
.checkbox input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 1.5px solid rgba(201,165,110,0.45);
  border-radius: 3px;
  cursor: pointer;
  display: grid;
  flex-shrink: 0;
  height: 16px;
  margin: 2px 0 0;
  min-height: 16px !important;
  padding: 0;
  place-content: center;
  transition: background 0.18s ease, border-color 0.18s ease;
  width: 16px;
}
.checkbox input[type="checkbox"]::before {
  content: '';
  width: 8px;
  height: 8px;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.15s ease;
  background: var(--black);
}
.checkbox input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.checkbox input[type="checkbox"]:checked::before {
  transform: scale(1);
}
.checkbox input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 2px;
}

/* ─────────────────────────────────────────────
   ROADMAP  (timeline)
───────────────────────────────────────────── */
.roadmap { background: var(--black); overflow: hidden; position: relative; }
.roadmap-bg-video, .roadmap-bg-overlay { inset: 0; position: absolute; }
.roadmap-bg-video { height: 100%; object-fit: cover; opacity: 0.22; width: 100%; z-index: 0; }
.roadmap-bg-overlay {
  background:
    radial-gradient(ellipse at 50% 10%, rgba(201,165,110,0.14), transparent 36%),
    linear-gradient(180deg, rgba(9,9,9,0.95) 0%, rgba(9,9,9,0.7) 44%, rgba(9,9,9,0.96) 100%);
  z-index: 1;
}
.roadmap .section-inner { position: relative; z-index: 2; }

.timeline {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(5,minmax(0,1fr));
  margin-top: 16px;
}
.timeline div {
  border-left: 1px solid rgba(201,165,110,0.2);
  min-height: 260px;
  padding: 28px 20px 20px;
}
.timeline div:last-child { border-right: 1px solid rgba(201,165,110,0.2); }
.timeline span {
  color: var(--gold-dark);
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.timeline h3 { color: var(--text); font-size: 1.1rem; margin-bottom: 10px; }
.timeline p  { color: var(--muted); font-size: 0.85rem; line-height: 1.65; }

/* ─────────────────────────────────────────────
   CONVERSATION
───────────────────────────────────────────── */
.conversation {
  background:
    radial-gradient(ellipse at 80% 10%, rgba(201,165,110,0.12), transparent 38%),
    var(--charcoal);
  border-top: 1px solid var(--gold-dim);
}
.conversation h2 { color: var(--white); }
.conversation-panel {
  align-items: center;
  display: grid;
  gap: clamp(40px,6vw,80px);
  grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr);
}
.conversation p { color: var(--muted); margin-top: 16px; font-size: 0.95rem; }
.lead-form { box-shadow: var(--shadow); }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.site-footer {
  align-items: center;
  background: var(--ink);
  border-top: 1px solid var(--gold-dim);
  color: var(--muted);
  display: flex;
  flex-direction: column;
  font-size: 12px;
  gap: 16px;
  justify-content: center;
  padding: 36px clamp(20px,5vw,60px);
  text-align: center;
}
.site-footer > span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-nav a {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold-light); }
.footer-sep {
  color: var(--gold-dim);
  font-size: 11px;
  user-select: none;
}
.site-footer p {
  color: var(--quiet);
  font-size: 11px;
  letter-spacing: 0.04em;
  margin: 0;
}

/* ─────────────────────────────────────────────
   FLOATING WHATSAPP BUTTON
───────────────────────────────────────────── */
.wa-float {
  align-items: center;
  background: #25D366;
  border-radius: 999px;
  bottom: 28px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.38), 0 2px 8px rgba(0,0,0,0.28);
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.06em;
  padding: 14px 22px 14px 18px;
  position: fixed;
  right: 28px;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  z-index: 200;
}
.wa-float:hover {
  background: #20bc5a;
  box-shadow: 0 8px 36px rgba(37,211,102,0.5), 0 4px 12px rgba(0,0,0,0.3);
  transform: translateY(-3px);
}
.wa-icon {
  fill: #fff;
  flex-shrink: 0;
  height: 22px;
  width: 22px;
}

/* ─────────────────────────────────────────────
   PATH PILL-SLIDER
───────────────────────────────────────────── */
.path-pill-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.4rem;
}
.path-pill {
  background: transparent;
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.55rem 1.4rem;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.path-pill:hover  { border-color: var(--gold); color: var(--gold-light); }
.path-pill.active { background: var(--gold); border-color: var(--gold); color: var(--black); }

.path-slider { max-width: 780px; margin: 0 auto; }

.path-slide {
  display: none;
  animation: pathFadeIn 0.35s ease;
  /* Card treatment — identical to .path-card */
  background: linear-gradient(160deg, rgba(28,21,8,0.55) 0%, rgba(14,14,14,0.98) 100%);
  border: 1px solid var(--gold-border);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  flex-direction: column;
  min-height: 360px;
  padding: 36px 40px 32px;
}
.path-slide.active { display: flex; }

.path-slide .path-index {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.7;
}
.path-slide h3 { color: var(--text); margin-bottom: 14px; font-size: clamp(22px,2.8vw,30px); }
.path-slide p  { color: var(--muted); font-size: 1rem; line-height: 1.8; margin-bottom: 20px; max-width: 620px; }
.path-slide ul {
  list-style: none;
  border-top: 1px solid var(--gold-dim);
  padding: 18px 0 0;
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 2rem;
}
.path-slide ul li {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  padding-left: 1.2rem;
  position: relative;
}
.path-slide ul li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.5rem;
  left: 0;
  position: absolute;
  top: 0.35rem;
}
.path-slide a {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: auto;
  text-transform: uppercase;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.path-slide a::after { content: "→"; }
.path-slide a:hover  { color: var(--gold); }

@keyframes pathFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────
   RESPONSIVE  ·  ≤ 1024px  (tablet)
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links { gap: 20px; }
  .path-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .platform-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .timeline { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .timeline div:nth-child(3) { border-right: 1px solid rgba(201,165,110,0.2); }
  .timeline div:nth-child(4) { border-top: 1px solid rgba(201,165,110,0.2); }
}

/* ─────────────────────────────────────────────
   RESPONSIVE  ·  ≤ 820px  (small tablet / large phone)
───────────────────────────────────────────── */
@media (max-width: 820px) {
  .nav-links { display: none; }

  .split,
  .mentor-grid,
  .assessment-layout,
  .conversation-panel { grid-template-columns: 1fr; }

  .path-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }

  .timeline {
    grid-template-columns: 1fr;
    border-left: 1px solid rgba(201,165,110,0.2);
  }
  .timeline div {
    border-left: none;
    border-top: 1px solid rgba(201,165,110,0.14);
    border-right: none;
    min-height: auto;
    padding: 22px 20px;
  }
  .timeline div:first-child { border-top: none; }
  .timeline div:last-child { border-right: none; }

  .section-inner { padding: 72px clamp(20px,5vw,40px); }
  .section-heading { margin-bottom: 36px; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE  ·  ≤ 600px  (mobile)
───────────────────────────────────────────── */
/* Disable parallax on mobile (iOS bug) */
@media (max-width: 820px) {
  .platform { background-attachment: scroll; }
}

@media (max-width: 600px) {
  .site-header { height: 60px; padding: 0 18px; gap: 12px; }
  .brand-mark  { height: 34px; width: 34px; font-size: 10px; }
  .brand-text  { font-size: 10px; letter-spacing: 0.06em; max-width: 180px; }
  .header-cta  { display: none; }

  .hero {
    min-height: 100svh;
    padding: 80px 18px 120px;
    align-items: flex-start;
  }
  .hero::before { top: 60px; }
  .hero h1 { font-size: clamp(40px,10.5vw,56px); letter-spacing: -0.01em; }
  .hero-copy { font-size: 15px; }
  .hero-shade {
    background:
      radial-gradient(ellipse at 66%18%, rgba(201,165,110,0.14), transparent 30%),
      linear-gradient(100deg, rgba(9,9,9,0.97) 0%, rgba(9,9,9,0.88) 60%, rgba(9,9,9,0.44) 100%),
      linear-gradient(0deg, rgba(9,9,9,0.96) 0%, rgba(9,9,9,0.08) 50%);
  }
  .hero-actions .btn { width: 100%; }
  .hero-proof { gap: 6px; }
  .hero-proof span { font-size: 10px; padding: 8px 12px; }

  h2 { font-size: clamp(30px,8vw,42px); }
  h3 { font-size: clamp(18px,5vw,22px); }

  .section-inner { padding: 56px 18px; }
  .section-heading { margin-bottom: 28px; text-align: left; }
  .section-heading p:last-child { font-size: 14px; }

  .path-card { min-height: auto; padding: 26px 22px 22px; }
  .platform-grid { grid-template-columns: 1fr; gap: 12px; }
  .platform-grid article { min-height: auto; padding: 22px; }

  /* Cycle: show mobile flow, hide wheel */
  .cycle-wheel {
    background: linear-gradient(160deg, rgba(28,21,8,0.45), rgba(9,9,9,0.7));
    border: 1px solid var(--gold-border);
    overflow: hidden;
    padding: 8px;
  }
  .cycle-image {
    height: 280px;
    object-fit: cover;
    object-position: center;
    width: 100%;
  }
  .cycle-mobile-flow {
    display: grid;
    gap: 0;
    margin-top: 6px;
  }
  .cycle-mobile-flow div {
    align-items: flex-start;
    background: linear-gradient(90deg, rgba(28,21,8,0.72), rgba(14,14,14,0.97));
    border: 1px solid rgba(201,165,110,0.2);
    border-bottom: none;
    display: flex;
    gap: 14px;
    min-height: 88px;
    padding: 14px 16px;
    position: relative;
  }
  .cycle-mobile-flow div:first-child { border-top-color: rgba(201,165,110,0.45); }
  .cycle-mobile-flow div:last-child  { border-bottom: 1px solid rgba(201,165,110,0.2); }
  .cycle-mobile-flow div::after {
    background: var(--gold-border);
    bottom: -12px;
    content: '';
    height: 24px;
    left: 34px;
    position: absolute;
    width: 1px;
    z-index: 1;
  }
  .cycle-mobile-flow div:last-child::after { display: none; }
  .cycle-mobile-flow span {
    align-items: center;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    color: var(--gold-light);
    display: inline-flex;
    flex: 0 0 38px;
    font-size: 11px;
    font-weight: 800;
    height: 38px;
    justify-content: center;
    letter-spacing: 0.04em;
  }
  .cycle-mobile-flow strong { color: var(--text); display: block; font-size: 16px; margin-bottom: 4px; }
  .cycle-mobile-flow article { min-width: 0; }
  .cycle-mobile-flow p { color: var(--muted); font-size: 12px; line-height: 1.5; }

  .cycle-panel { padding: 24px 20px; min-height: auto; }
  .cycle-panel h3 { font-size: 32px; }
  .cycle-panel p, .cycle-panel li { font-size: 14px; }

  .mentor-points div { padding: 22px 0; }
  .assessment-layout { gap: 32px; }
  .assessment-card, .lead-form { padding: 22px 18px; gap: 14px; }

  .timeline { border-left: 2px solid rgba(201,165,110,0.3); padding-left: 20px; }
  .timeline div { border-top: none; padding: 0 0 24px; position: relative; }
  .timeline div::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 6px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
  }

  .conversation-panel > div:first-child { order: 0; }
  .site-footer { gap: 14px; padding: 28px 18px; }
}
