/* ─── DESIGN TOKENS ─── */
:root {
  --navy:       #0C1B35;
  --navy-mid:   #152D52;
  --navy-light: #1E4080;
  --gold:       #C49A4A;
  --gold-light: #D4AA6A;
  --gold-pale:  #F5ECD8;
  --cream:      #F5F1EB;
  --white:      #FFFFFF;
  --text:       #1C1C2E;
  --text-muted: #6B7280;
  --border:     #E4E4E8;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-h:    80px;
  --section-y: 110px;
  --max-w:    1260px;
  --pad-x:    clamp(24px, 5vw, 72px);

  --radius:    4px;
  --radius-lg: 10px;
  --shadow:    0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 16px 56px rgba(0,0,0,0.14);
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; font-weight: 700; }
h1 { font-size: clamp(2.6rem, 5.5vw, 5.25rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.65rem); }
p  { line-height: 1.78; }

/* ─── LAYOUT ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section-pad { padding: var(--section-y) 0; }

/* ─── LABEL ─── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.label::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.label--center { justify-content: center; }
.label--center::before { display: none; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(196, 154, 74, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.38);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* ─── NAVIGATION ─── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
#nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,0.28);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.nav-logo .dot { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.03em;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 24px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--white);
  transition: color 0.25s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-aura {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 900px 700px at 75% 40%, rgba(196,154,74,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 600px 500px at 5% 85%, rgba(30,64,128,0.55) 0%, transparent 60%);
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-body {
  position: relative; z-index: 1;
  max-width: 920px;
  padding: 72px var(--pad-x);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  margin-bottom: 36px;
  animation: fadeUp 0.9s var(--ease) 0.1s both;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gold);
}
/* ─── HERO DICTIONARY ENTRY ─── */
.hero-entry {
  margin-bottom: 40px;
  animation: fadeUp 0.9s var(--ease) 0.3s both;
}
.hero-entry-word {
  font-size: clamp(3rem, 7vw, 6.5rem);
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 12px;
}
.hero-entry-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.hero-entry-pron {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.01em;
}
.hero-entry-pos {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 3px 10px;
  border: 1px solid rgba(196,154,74,0.35);
  border-radius: 100px;
}
.hero-entry-def {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  max-width: 620px;
  margin-bottom: 28px;
}
.hero-entry-rule {
  width: 56px;
  height: 2px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: rgba(255,255,255,0.62);
  max-width: 520px;
  margin-bottom: 52px;
  line-height: 1.75;
  animation: fadeUp 0.9s var(--ease) 0.5s both;
}
.hero-sub strong {
  color: var(--white);
  font-weight: 700;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s var(--ease) 0.7s both;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 44px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.32);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50%      { opacity: 0.7; transform: translateX(-50%) translateY(8px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── PULL QUOTE ─── */
#pullquote {
  background: var(--cream);
  border-top: 3px solid var(--gold);
  padding: 80px 0;
}
.pq-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--pad-x);
}
.pq-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 22px;
}
.pq-attr {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.07em;
}

/* ─── CHALLENGE ─── */
#challenge { padding: var(--section-y) 0; background: var(--white); }
.challenge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}
.challenge-left h2 { margin-bottom: 24px; }
.challenge-left p { color: var(--text-muted); margin-bottom: 20px; }
.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.stat-card {
  padding: 32px 28px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }
.challenge-cards { display: flex; flex-direction: column; gap: 16px; }
.chal-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 26px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.chal-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.chal-icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.chal-body h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.chal-body p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ─── FRAMEWORK ─── */
#framework {
  padding: var(--section-y) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.fw-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 800px 600px at 85% 20%, rgba(196,154,74,0.06) 0%, transparent 60%);
}
.fw-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: end;
  margin-bottom: 72px;
  position: relative; z-index: 1;
}
.fw-header h2 { color: var(--white); }
.fw-intro p {
  color: rgba(255,255,255,0.62);
  margin-bottom: 18px;
  font-size: 1.0125rem;
  line-height: 1.82;
}
.fw-intro strong { color: var(--white); }
.lenses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(196,154,74,0.45);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative; z-index: 1;
}
.lens {
  background: var(--navy);
  padding: 52px 44px 56px;
  position: relative;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s var(--ease);
}
.lens:last-child { border-right: none; }
.lens:hover { background: rgba(255,255,255,0.025); }
.lens-type {
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
.lens-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.lens-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.8;
}
.lens-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}
.tag {
  display: inline-block;
  padding: 4px 13px;
  background: rgba(196,154,74,0.1);
  border: 1px solid rgba(196,154,74,0.25);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-light);
}

/* ─── ENERGY MODEL ─── */
#energy { background: var(--cream); padding-top: var(--section-y); padding-bottom: 0; }
.energy-header { max-width: 640px; margin-bottom: 56px; }
.energy-header h2 { margin-bottom: 0; }
.energy-bars { display: flex; flex-direction: column; }
.e-bar { width: 100%; }
.e-bar--1 { background: var(--navy); }
.e-bar--2 { background: var(--navy-mid); }
.e-bar--3 { background: var(--navy-light); }
.e-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 52px var(--pad-x);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: center;
}
.e-bar--1 .e-bar-inner { padding-top: 64px; padding-bottom: 64px; }
.e-bar--3 .e-bar-inner { padding-top: 44px; padding-bottom: 44px; }
.e-bar-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.e-type {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0;
}
.e-subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.e-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  width: fit-content;
  margin-top: 14px;
  color: var(--white);
}
.e-bar--1 .e-badge { background: rgba(196,154,74,0.25); }
.e-bar--2 .e-badge { background: rgba(255,255,255,0.12); }
.e-bar--3 .e-badge { background: rgba(255,255,255,0.09); }
.e-bar-body p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.e-bar--1 .e-bar-body p { color: rgba(255,255,255,0.78); font-size: 1.15rem; }
.energy-insight {
  margin-top: 40px;
  margin-bottom: var(--section-y);
  padding: 22px 26px;
  background: var(--white);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.72;
  box-shadow: var(--shadow);
}
.energy-insight strong { color: var(--navy); }

/* ─── APPROACH ─── */
#approach { padding: var(--section-y) 0; background: var(--white); }
.approach-lead { max-width: 640px; margin-bottom: 72px; }
.approach-lead h2 { margin-bottom: 18px; }
.approach-lead p { color: var(--text-muted); font-size: 1.05rem; }
.phases {}
.phase {
  display: grid;
  grid-template-columns: 110px 1fr;
  border-top: 1px solid var(--border);
  transition: background 0.3s;
}
.phase:last-child { border-bottom: 1px solid var(--border); }
.phase:hover { background: #FAFAF8; }
.phase-num-col {
  padding: 56px 0;
  display: flex;
  align-items: flex-start;
}
.phase-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  transition: color 0.35s var(--ease);
}
.phase:hover .phase-num { color: var(--gold); }
.phase-body {
  padding: 56px 0 56px 64px;
  border-left: 1px solid var(--border);
}
.phase-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.phase-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.phase-desc { color: var(--text-muted); max-width: 580px; margin-bottom: 30px; }
.phase-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px 24px;
}
.phase-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text);
  list-style: none;
}
.phase-list li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  flex-shrink: 0;
}

/* ─── IMPACT ─── */
#impact {
  padding-top: var(--section-y);
  padding-bottom: 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.impact-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 900px 600px at 80% 20%, rgba(196,154,74,0.06) 0%, transparent 60%),
              radial-gradient(ellipse 600px 400px at 10% 90%, rgba(196,154,74,0.04) 0%, transparent 50%);
}

/* ─── CTA ─── */
#cta {
  padding: 128px 0;
  background: var(--cream);
  text-align: center;
}
#cta h2 { color: var(--navy); margin-bottom: 22px; max-width: 680px; margin-left: auto; margin-right: auto; }
#cta p { color: var(--text-muted); font-size: 1.0625rem; max-width: 480px; margin: 0 auto 44px; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 72px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.footer-brand .nav-logo { display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.45); max-width: 280px; line-height: 1.75; }
.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.48); transition: color 0.25s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ─── PROBLEM SECTION ─── */
#problem { background: var(--cream); padding: var(--section-y) 0; }
.problem-inner { max-width: 820px; margin: 0 auto; }
.problem-headline-muted {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 3.1rem);
  font-weight: 700;
  color: rgba(28,28,46,0.32);
  display: block;
  line-height: 1.15;
  margin-bottom: 8px;
}
.problem-headline-strong {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 3.1rem);
  font-weight: 700;
  color: var(--navy);
  display: block;
  line-height: 1.15;
  margin-bottom: 36px;
}
.problem-rule {
  border: none;
  border-top: 1px solid var(--gold);
  margin: 0 0 40px;
  opacity: 0.55;
}
.problem-inner p { color: var(--text-muted); margin-bottom: 20px; font-size: 1.0625rem; }
.text-gold { color: var(--gold); }

/* ─── LENS CARD ADDITIONS ─── */
.lens-subtitle {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 22px;
  display: block;
}
.lens-rule {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 0 0 24px;
}
.lens-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.72;
  margin-bottom: 18px;
}
.lens-body-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.82;
  margin-bottom: 24px;
}
.lens-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-light);
  border-top: 1px solid rgba(196,154,74,0.28);
  padding-top: 20px;
  display: block;
}

/* ─── SIX TYPES PROFILE CARDS ─── */
/* ─── SIX TYPES HEADER ─── */
.sixtypes-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 64px;
}
.sixtypes-header h2 { color: var(--white); margin-bottom: 0; }
.sixtypes-header-right { padding-top: 6px; }
.sixtypes-header-right p { color: rgba(255,255,255,0.62); font-size: 1.0rem; line-height: 1.85; }

/* ─── TYPE BARS ─── */
.type-bars {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--section-y);
}
.t-bar {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.25s;
}
.t-bar:hover { background: rgba(255,255,255,0.025); }
.t-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 44px var(--pad-x);
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 72px;
  align-items: center;
}
.t-bar-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.t-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: rgba(196,154,74,0.18);
  font-weight: 700;
}
.t-combo {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.t-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.t-summary {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: var(--white);
  line-height: 1.45;
}

@media (max-width: 840px) {
  .sixtypes-header { grid-template-columns: 1fr; gap: 32px; }
  .t-bar-inner { grid-template-columns: 1fr; gap: 20px; }
  .t-num { font-size: 1.8rem; }
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }
.reveal-d4 { transition-delay: 0.48s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1080px) {
  .challenge-grid  { grid-template-columns: 1fr; gap: 56px; }
  .fw-header       { grid-template-columns: 1fr; gap: 36px; }
  .e-bar-inner     { grid-template-columns: 1fr; gap: 28px; }
  .footer-top      { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 840px) {
  .lenses          { grid-template-columns: 1fr; }
  .phase           { grid-template-columns: 1fr; }
  .phase-num-col   { padding: 40px 0 0; }
  .phase-body      { border-left: none; border-top: 1px solid var(--border); padding: 28px 0 44px; }
  .stats-row       { grid-template-columns: 1fr; }
  .nav-links, .nav-right .btn { display: none; }
  .hamburger       { display: flex; }
}
@media (max-width: 560px) {
  .hero-ctas       { flex-direction: column; }
  .cta-btns        { flex-direction: column; align-items: center; }
  .footer-top      { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom   { flex-direction: column; gap: 10px; text-align: center; }
}
