/*
Theme Name: Strategy To Screen
Theme URI: https://strategytoscreen.com
Author: Strategy To Screen
Author URI: https://strategytoscreen.com
Description: Custom WordPress theme for Strategy To Screen — Turn Expertise Into Authority
Version: 1.0.0
License: Proprietary
Text Domain: s2s
*/

/* ─── FONTS ───────────────────────────────────────────────── */
@import url('https://fonts.bunny.net/css?family=poppins:300,400,500,600,700,800&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --black:      #000000;
  --orange:     #FF8A2A;
  --orange-dim: #cc6e1f;
  --bg:         #FAFAF8;
  --ink:        #111111;
  --muted:      #666660;
  --rule:       #E2E2DE;
  --white:      #ffffff;
  --stone:      #D9D6D0;
  --font: 'Poppins', 'DM Sans', system-ui, sans-serif;
  --max:  1160px;
  --side: clamp(1.5rem, 5vw, 5rem);
}

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

/* ─── LAYOUT HELPERS ─────────────────────────────────────── */
.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--side);
}

/* ─── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  padding-block: 1.1rem;
}
.nav-inner {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--side);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--orange); }
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
}
.nav-links a:hover { color: var(--ink); }
.nav-links .active { color: var(--ink); font-weight: 600; }
.nav-cta {
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--orange);
  color: var(--white);
  padding: 0.6rem 1.25rem;
  border-radius: 4px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--orange-dim); }

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--rule);
  padding-block: 2.5rem;
  background: var(--bg);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo { font-size: 0.9rem; font-weight: 700; }
.footer-logo span { color: var(--orange); }
.footer-copy { font-size: 0.8rem; color: var(--muted); }
.footer-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  font-size: 0.82rem;
  color: var(--muted);
}
.footer-links a:hover { color: var(--ink); }

/* ─── WHATSAPP FLOAT ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  width: 3.6rem;
  height: 3.6rem;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 22px rgba(0,0,0,0.3); }
.whatsapp-float svg { width: 1.9rem; height: 1.9rem; fill: var(--white); }
.whatsapp-float::after {
  content: 'Chat with us';
  position: absolute;
  right: 4.3rem;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-float:hover::after { opacity: 1; }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.9rem 1.8rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--orange); transform: translateY(-1px); }
.btn-primary-orange {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.85rem 1.7rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primary-orange:hover { background: var(--orange-dim); }
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--muted);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.9rem 0;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--ink); }
.btn-outline {
  display: inline-block;
  border: 2px solid var(--black);
  color: var(--black);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--black); color: var(--white); }

/* ─── SCROLL ANIMATIONS ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─── SECTION LABEL ───────────────────────────────────────── */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.2rem;
}

/* ─── GHOST TYPOGRAPHY ────────────────────────────────────── */
.ghost-word {
  position: absolute;
  z-index: 0;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* ─── HOMEPAGE: HERO ─────────────────────────────────────── */
.hero {
  padding-top: 8rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--side);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--stone);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.8rem;
}
.hero-eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
  flex-shrink: 0;
}
.hero-headline {
  font-size: clamp(2.8rem, 6.5vw, 5.6rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 30ch;
  margin-inline: auto;
  margin-bottom: 1.8rem;
}
.hero-headline em { font-style: normal; color: var(--orange); }
.loop-wrap { display: block; margin-top: 0.12em; }
.loop-word { display: inline-block; color: var(--orange); }
.loop-cursor {
  display: inline-block;
  margin-left: 0.08em;
  color: var(--orange);
  font-weight: 300;
  animation: loop-blink 1s steps(1) infinite;
}
@keyframes loop-blink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 400;
  color: var(--muted);
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.7;
  margin-bottom: 2.6rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}
.hero-tagline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}
.hero-tagline span {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--stone);
  padding: 0.45rem 1rem;
  border-radius: 999px;
}

/* ─── PROBLEM ─────────────────────────────────────────────── */
.problem { position: relative; overflow: hidden; padding-block: 6rem; border-top: 1px solid var(--rule); }
.problem-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.problem-col-right { position: relative; }
.problem-col-right > * { position: relative; z-index: 1; }
.ghost-quote {
  position: absolute;
  top: -1.2rem; left: -0.5rem;
  z-index: 0;
  font-size: clamp(9rem, 14vw, 13rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(255,138,42,0.10);
  pointer-events: none;
  user-select: none;
}
.problem-headline { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.025em; margin-bottom: 1.6rem; }
.problem-body { font-size: 1.05rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.4rem; }
.problem-body + .problem-body { margin-bottom: 0; }
.pull-quote { border-left: 3px solid var(--orange); padding-left: 1.4rem; font-size: 1.15rem; font-weight: 600; font-style: italic; color: var(--ink); line-height: 1.5; }

/* ─── VISIBILITY GAP ──────────────────────────────────────── */
.gap-section { position: relative; overflow: hidden; padding-block: 6rem; background: var(--black); color: var(--white); }
.gap-section > .wrap { position: relative; z-index: 1; }
.gap-section .ghost-word { top: 1rem; left: 0; width: 100%; text-align: center; font-size: clamp(7rem, 20vw, 14rem); color: rgba(255,255,255,0.045); }
.gap-section .section-label { color: var(--orange); text-align: center; }
.gap-headline { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.025em; color: var(--white); max-width: 38ch; margin: 0 auto 1rem; text-align: center; }
.gap-intro { font-size: 1.05rem; color: rgba(255,255,255,0.55); max-width: 56ch; line-height: 1.7; margin: 0 auto 3.5rem; text-align: center; }
.gap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(255,255,255,0.08); border-radius: 8px; overflow: hidden; }
.gap-col { background: #111111; padding: 2.5rem; }
.gap-col + .gap-col { background: #0d0d0d; }
.gap-col-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.6rem; }
.gap-col:first-child .gap-col-label { color: rgba(255,255,255,0.4); }
.gap-col:last-child .gap-col-label { color: var(--orange); }
.gap-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.gap-list li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.97rem; color: rgba(255,255,255,0.75); line-height: 1.4; }
.gap-list li::before { content: '✓'; flex-shrink: 0; font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.3); margin-top: 0.1em; }
.gap-col:last-child .gap-list li::before { content: '→'; color: var(--orange); }
.gap-bridge { margin-top: 3rem; text-align: center; font-size: 1.1rem; font-weight: 700; font-style: italic; color: rgba(255,255,255,0.6); }
.gap-bridge em { color: var(--white); font-style: normal; }

/* ─── HOMEPAGE FRAMEWORK PREVIEW ──────────────────────────── */
.framework { position: relative; overflow: hidden; padding-block: 6rem; border-top: 1px solid var(--rule); }
.framework > .wrap { position: relative; z-index: 1; }
.framework .ghost-word { top: 0.5rem; left: 0; width: 100%; text-align: center; font-size: clamp(7rem, 19vw, 13rem); color: rgba(17,17,17,0.035); }
.framework-flow { margin: 0 0 2.2rem; }
.framework-flow svg { display: block; width: 100%; height: auto; }
.framework-top { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; margin-bottom: 2.6rem; }
.framework-headline { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.025em; }
.framework-body-wrap { padding-top: 2.6rem; }
.framework-body { font-size: 1.05rem; color: var(--muted); line-height: 1.75; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: var(--rule); border-radius: 8px; overflow: hidden; }
.step { background: var(--bg); padding: 2.2rem; position: relative; }
.step-num { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.6rem; }
.step-title { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.9rem; }
.step-body { font-size: 0.93rem; color: var(--muted); line-height: 1.65; }
.framework-link { margin-top: 3rem; text-align: center; }

/* ─── ASSESSMENT ──────────────────────────────────────────── */
.assessment { padding-block: 6rem; background: #F3F3F0; border-top: 1px solid var(--rule); }
.assessment-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: start; }
.assessment-headline { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.025em; margin-bottom: 1.2rem; }
.assessment-body { font-size: 1.05rem; color: var(--muted); line-height: 1.75; margin-bottom: 2rem; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.check-list li { display: flex; gap: 0.9rem; align-items: flex-start; font-size: 0.97rem; line-height: 1.5; }
.check-list li::before { content: '✓'; flex-shrink: 0; width: 1.3rem; height: 1.3rem; background: var(--orange); color: var(--white); border-radius: 50%; font-size: 0.65rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin-top: 0.1em; }
.assessment-card { background: var(--white); border-radius: 12px; padding: 2.5rem; box-shadow: 0 2px 24px rgba(0,0,0,0.06); text-align: center; }
.assessment-card-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; }
.assessment-card-title { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.8rem; }
.assessment-card-sub { font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.8rem; }
.assessment-card .btn-primary { width: 100%; text-align: center; }
.assessment-card-note { font-size: 0.78rem; color: var(--muted); margin-top: 0.8rem; }

/* ─── WHO IT'S FOR ────────────────────────────────────────── */
.who { position: relative; overflow: hidden; padding-block: 6rem; border-top: 1px solid var(--rule); }
.who > .wrap { position: relative; z-index: 1; }
.who .ghost-word { top: 0.5rem; left: 0; width: 100%; text-align: center; font-size: clamp(6rem, 16vw, 11rem); color: rgba(17,17,17,0.035); }
.who-top { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; margin-bottom: 3.5rem; }
.who-headline { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.025em; }
.who-body { font-size: 1.05rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.2rem; }
.who-closing { font-size: 0.97rem; font-style: italic; color: var(--muted); border-left: 3px solid var(--orange); padding-left: 1rem; line-height: 1.6; }
.who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); border-radius: 8px; overflow: hidden; }
.who-card { background: var(--bg); padding: 1.5rem 1.6rem; font-size: 0.93rem; font-weight: 600; display: flex; align-items: center; gap: 0.7rem; }
.who-card::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

/* ─── FOUNDER SECTION ─────────────────────────────────────── */
.founder { padding-block: 6rem; background: var(--black); color: var(--white); }
.founder-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.founder-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.2rem; }
.founder-headline { font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.025em; color: var(--white); margin-bottom: 1.4rem; }
.founder-body { font-size: 1.05rem; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 2rem; }
.founder-stats { display: flex; flex-direction: column; gap: 2rem; }
.founder-stat { border-left: 2px solid rgba(255,255,255,0.1); padding-left: 1.5rem; }
.founder-stat-num { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.03em; color: var(--white); line-height: 1; margin-bottom: 0.3rem; }
.founder-stat-num em { color: var(--orange); font-style: normal; }
.founder-stat-label { font-size: 0.87rem; color: rgba(255,255,255,0.45); line-height: 1.4; }

/* ─── FINAL CTA ───────────────────────────────────────────── */
.final-cta { padding-block: 7rem; text-align: center; border-top: 1px solid var(--rule); position: relative; overflow: hidden; background: #F3F3F0; }
.final-cta::before { content: ''; position: absolute; bottom: -100px; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(255,138,42,0.08) 0%, transparent 70%); pointer-events: none; }
.final-cta > .wrap { position: relative; z-index: 1; }
.final-cta .ghost-word { top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: clamp(6rem, 16vw, 11rem); color: rgba(17,17,17,0.045); }
.final-cta-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.4rem; }
.final-cta-headline { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; max-width: 18ch; margin-inline: auto; margin-bottom: 1.4rem; }
.final-cta-body { font-size: 1.08rem; color: var(--muted); max-width: 52ch; margin-inline: auto; line-height: 1.7; margin-bottom: 2.5rem; }
.final-cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; align-items: center; }
.final-cta-inner { position: relative; z-index: 1; }

/* ─── CONTACT ─────────────────────────────────────────────── */
.contact { padding-block: 6rem; background: #F3F3F0; border-top: 1px solid var(--rule); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; }
.contact-headline { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.025em; margin-bottom: 1.2rem; }
.contact-body { font-size: 1.05rem; color: var(--muted); line-height: 1.75; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-detail { display: flex; align-items: center; gap: 0.9rem; font-size: 0.95rem; font-weight: 600; }
.contact-detail-icon { width: 2.2rem; height: 2.2rem; border-radius: 50%; background: var(--orange); color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.9rem; }
.contact-form-card { background: var(--white); border-radius: 12px; padding: 2.5rem; box-shadow: 0 2px 24px rgba(0,0,0,0.06); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--ink); }
.form-group input, .form-group textarea { width: 100%; font-family: var(--font); font-size: 0.95rem; padding: 0.85rem 1rem; border: 1px solid var(--rule); border-radius: 6px; background: var(--bg); color: var(--ink); transition: border-color 0.2s, box-shadow 0.2s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,138,42,0.12); }
.form-group textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.contact-submit { width: 100%; text-align: center; border: none; font-family: var(--font); }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 1rem; text-align: center; }
.form-success { display: none; background: rgba(255,138,42,0.1); border: 1px solid var(--orange); color: var(--ink); font-size: 0.9rem; font-weight: 600; padding: 1rem 1.2rem; border-radius: 6px; margin-bottom: 1.4rem; line-height: 1.5; }
.form-success.visible { display: block; }

/* ─── PAGE HEADER (inner pages) ──────────────────────────── */
.page-header { padding-top: 8rem; padding-bottom: 5rem; text-align: center; border-bottom: 1px solid var(--rule); position: relative; overflow: hidden; }
.page-header > .wrap { position: relative; z-index: 1; }
.page-header-back { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.85rem; font-weight: 600; color: var(--muted); margin-bottom: 2.2rem; transition: color 0.2s; }
.page-header-back:hover { color: var(--ink); }
.page-header-eyebrow { display: inline-flex; align-items: center; gap: 0.55rem; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); background: var(--stone); padding: 0.55rem 1.1rem; border-radius: 999px; margin-bottom: 1.8rem; }
.page-header-eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); display: inline-block; flex-shrink: 0; }
.page-header-headline { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 800; line-height: 1.06; letter-spacing: -0.03em; max-width: 24ch; margin-inline: auto; margin-bottom: 1.6rem; }
.page-header-headline em { font-style: normal; color: var(--orange); }
.page-header-sub { font-size: clamp(1rem, 1.6vw, 1.18rem); font-weight: 400; color: var(--muted); max-width: 56ch; margin-inline: auto; line-height: 1.7; margin-bottom: 2.4rem; }
.page-header-tagline { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; }
.page-header-tagline span { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); background: var(--stone); padding: 0.45rem 1rem; border-radius: 999px; }

/* ─── ABOUT PAGE ─────────────────────────────────────────── */
.page-hero { padding-top: 9rem; padding-bottom: 6rem; border-bottom: 1px solid var(--rule); position: relative; overflow: hidden; }
.page-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.3fr; gap: 6rem; align-items: end; }
.page-hero-left .section-label { margin-bottom: 1.4rem; }
.page-hero-headline { font-size: clamp(2.6rem, 5.5vw, 4.8rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.03em; }
.page-hero-headline em { font-style: normal; color: var(--orange); }
.page-hero-right { padding-bottom: 0.4rem; }
.page-hero-intro { font-size: 1.1rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.8rem; }
.page-hero-headline .h-line { display: block; margin-bottom: 0.05em; }
.page-hero-headline .h-line:last-child { margin-bottom: 0; }
.page-hero-tagline { border-left: 3px solid var(--orange); padding-left: 1.4rem; font-size: 1.05rem; font-weight: 600; font-style: italic; color: var(--ink); line-height: 1.55; }
.observation { padding-block: 7rem; border-bottom: 1px solid var(--rule); }
.observation-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: start; }
.observation-sticky { position: sticky; top: 7rem; }
.observation-headline { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.025em; margin-bottom: 1.6rem; }
.observation-sub { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.observation-body { display: flex; flex-direction: column; gap: 2rem; }
.observation-para { font-size: 1.05rem; color: var(--muted); line-height: 1.8; }
.observation-para strong { color: var(--ink); font-weight: 600; }
.observation-callout { background: var(--black); color: var(--white); border-radius: 8px; padding: 2.2rem 2.4rem; }
.observation-callout-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.9rem; }
.observation-callout-text { font-size: 1.15rem; font-weight: 600; line-height: 1.55; color: var(--white); }
.problem-band { padding-block: 6rem; background: var(--black); color: var(--white); }
.problem-band .section-label { color: var(--orange); }
.problem-band-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: center; }
.problem-band-headline { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.025em; color: var(--white); margin-bottom: 0.6rem; }
.problem-band-sub { font-size: 1rem; color: rgba(255,255,255,0.4); font-style: italic; line-height: 1.6; }
.problem-items { display: flex; flex-direction: column; gap: 1.5px; background: rgba(255,255,255,0.08); border-radius: 8px; overflow: hidden; }
.problem-item { background: #111111; padding: 1.6rem 2rem; display: flex; gap: 1.2rem; align-items: flex-start; }
.problem-item + .problem-item { background: #0d0d0d; }
.problem-item-num { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; color: var(--orange); flex-shrink: 0; padding-top: 0.25em; min-width: 2rem; }
.problem-item-text { font-size: 0.97rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.problem-item-text strong { color: var(--white); font-weight: 600; display: block; margin-bottom: 0.2rem; }
.problem-band-footer { margin-top: 4rem; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2.5rem; font-size: 1.05rem; font-weight: 600; font-style: italic; color: rgba(255,255,255,0.5); text-align: center; }
.problem-band-footer em { color: var(--white); font-style: normal; }
.belief { padding-block: 7rem; border-bottom: 1px solid var(--rule); }
.belief-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 6rem; align-items: center; }
.belief-headline { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.025em; margin-bottom: 1.6rem; }
.belief-body { font-size: 1.05rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.4rem; }
.belief-body + .belief-body { margin-bottom: 0; }
.belief-pillars { display: flex; flex-direction: column; gap: 1.5px; background: var(--rule); border-radius: 8px; overflow: hidden; }
.belief-pillar { background: var(--bg); padding: 1.6rem 1.8rem; display: flex; gap: 1rem; align-items: flex-start; }
.belief-pillar-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; margin-top: 0.45em; }
.belief-pillar-text { font-size: 0.97rem; line-height: 1.6; }
.belief-pillar-text strong { font-weight: 700; display: block; margin-bottom: 0.15rem; }
.belief-pillar-text span { color: var(--muted); font-size: 0.92rem; }
.how { padding-block: 6rem; background: #F3F3F0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.how-top { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; margin-bottom: 4rem; }
.how-headline { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.025em; }
.how-right { padding-top: 2.6rem; }
.how-body { font-size: 1.05rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.2rem; }
.how-body:last-child { margin-bottom: 0; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: var(--rule); border-radius: 8px; overflow: hidden; }
.how-step { background: var(--white); padding: 2.2rem; }
.how-step-phase { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.6rem; }
.how-step-title { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.9rem; }
.how-step-body { font-size: 0.93rem; color: var(--muted); line-height: 1.65; }
.vision { padding-block: 7rem; text-align: center; position: relative; overflow: hidden; border-bottom: 1px solid var(--rule); }
.vision::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, rgba(255,138,42,0.07) 0%, transparent 70%); pointer-events: none; }
.vision-inner { position: relative; z-index: 1; max-width: 760px; margin-inline: auto; }
.vision-headline { font-size: clamp(2rem, 4.5vw, 3.8rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1.8rem; }
.vision-headline em { font-style: normal; color: var(--orange); }
.vision-body { font-size: 1.1rem; color: var(--muted); line-height: 1.8; max-width: 58ch; margin-inline: auto; margin-bottom: 1.4rem; }
.vision-closing { font-size: 1.1rem; font-weight: 700; color: var(--ink); line-height: 1.6; }

/* ─── FRAMEWORK PAGE ─────────────────────────────────────── */
.intro-section { padding-block: 6rem; }
.intro-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 5rem; align-items: start; }
.intro-headline { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.025em; }
.intro-body { font-size: 1.05rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.4rem; }
.intro-body:last-of-type { margin-bottom: 1.6rem; }
.questions { padding-block: 6rem; background: #F3F3F0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.questions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.questions-headline { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.025em; margin-bottom: 1.2rem; }
.questions-body { font-size: 1.05rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.8rem; }
.questions-lead { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 1.8rem; }
.question-list { display: flex; flex-direction: column; gap: 1rem; }
.question-card { background: var(--white); border-radius: 10px; padding: 1.7rem 1.7rem; display: flex; gap: 1.1rem; align-items: flex-start; box-shadow: 0 2px 16px rgba(0,0,0,0.05); }
.question-num { font-size: 1.5rem; font-weight: 800; color: var(--orange); flex-shrink: 0; line-height: 1.1; }
.question-text { font-size: 0.98rem; font-weight: 600; line-height: 1.5; padding-top: 0.15rem; }
.questions-closing { font-size: 0.97rem; font-style: italic; color: var(--muted); border-left: 3px solid var(--orange); padding-left: 1rem; line-height: 1.6; }
.stages { padding-block: 6rem; }
.stages-top { text-align: center; max-width: 60ch; margin-inline: auto; margin-bottom: 1rem; }
.stages-top .section-label { display: flex; justify-content: center; }
.stages-headline { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.025em; }
.stage-row { display: grid; grid-template-columns: 1.3fr 1fr; gap: 4rem; align-items: start; padding-block: 4rem; border-top: 1px solid var(--rule); }
.stage-row.reverse .stage-content { order: 2; }
.stage-row.reverse .stage-produces { order: 1; }
.stage-meta { display: flex; align-items: baseline; gap: 1.1rem; margin-bottom: 1.3rem; }
.stage-num-big { font-size: 2.8rem; font-weight: 800; color: var(--orange); letter-spacing: -0.03em; line-height: 1; }
.stage-meta-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.stage-title { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.18; margin-bottom: 1.2rem; }
.stage-body { font-size: 1.02rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.2rem; }
.stage-lead-in { font-size: 0.95rem; font-weight: 700; color: var(--ink); margin-bottom: 1rem; }
.stage-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.4rem; }
.stage-list li { display: flex; gap: 0.85rem; align-items: flex-start; font-size: 0.95rem; color: var(--ink); line-height: 1.5; }
.stage-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; margin-top: 0.55em; }
.stage-closing { font-size: 0.97rem; color: var(--muted); line-height: 1.7; font-style: italic; }
.stage-produces { background: #F3F3F0; border-radius: 12px; padding: 2.2rem; }
.stage-produces-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.9rem; }
.stage-produces-text { font-size: 1.08rem; font-weight: 600; line-height: 1.55; color: var(--ink); }
.order-section { padding-block: 6rem; background: var(--black); color: var(--white); }
.order-section .section-label { color: var(--orange); }
.order-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.order-headline { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.025em; color: var(--white); margin-bottom: 1rem; }
.order-body { font-size: 1.05rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.order-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.order-list li { display: flex; align-items: flex-start; gap: 0.9rem; font-size: 0.98rem; color: rgba(255,255,255,0.8); line-height: 1.5; background: #111111; padding: 1.4rem 1.6rem; border-radius: 8px; }
.order-list li::before { content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.closing-statement { padding-block: 7rem; text-align: center; border-top: 1px solid var(--rule); position: relative; overflow: hidden; }
.closing-statement::before { content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(255,138,42,0.08) 0%, transparent 70%); pointer-events: none; }
.closing-statement-inner { position: relative; z-index: 1; }
.closing-statement-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.4rem; }
.closing-statement-headline { font-size: clamp(1.9rem, 4.2vw, 3.1rem); font-weight: 800; line-height: 1.22; letter-spacing: -0.025em; max-width: 30ch; margin-inline: auto; margin-bottom: 1.6rem; }
.closing-statement-headline .dim { color: var(--muted); }
.closing-statement-headline .hl { color: var(--orange); }
.closing-statement-body { font-size: 1.06rem; color: var(--muted); max-width: 58ch; margin-inline: auto; line-height: 1.75; }

/* ─── SERVICES PAGE ──────────────────────────────────────── */
.services { border-top: 1px solid var(--rule); overflow-x: hidden; }
.service-block { position: relative; padding-block: 5rem; }
.service-block > .service-head, .service-block > .service-grid { position: relative; z-index: 1; }
.service-ghost-num { position: absolute; top: -1.6rem; right: -2.5rem; z-index: 0; font-size: clamp(9rem, 19vw, 15rem); font-weight: 800; line-height: 1; letter-spacing: -0.04em; color: rgba(17,17,17,0.04); pointer-events: none; user-select: none; }
.service-block + .service-block { border-top: 1px solid var(--rule); }
.service-head { margin-bottom: 2.2rem; max-width: 70ch; }
.service-meta { display: flex; align-items: baseline; gap: 1.1rem; margin-bottom: 1rem; }
.service-num-big { font-size: 2.6rem; font-weight: 800; color: var(--orange); letter-spacing: -0.03em; line-height: 1; }
.service-meta-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.service-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 0.6rem; }
.service-subtitle { font-size: 1.05rem; font-weight: 700; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3.5rem; align-items: start; }
.service-body { font-size: 1.02rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.2rem; }
.service-lead { font-size: 0.95rem; font-weight: 700; color: var(--ink); margin-bottom: 1rem; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.service-list li { display: flex; gap: 0.85rem; align-items: flex-start; font-size: 0.95rem; color: var(--ink); line-height: 1.5; }
.service-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; margin-top: 0.55em; }
.service-side { display: flex; flex-direction: column; gap: 1.4rem; }
.service-fit { background: #F3F3F0; border-radius: 12px; padding: 1.8rem; }
.service-fit-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.service-fit-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.service-fit-list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.92rem; color: var(--ink); line-height: 1.45; }
.service-fit-list li::before { content: '✓'; flex-shrink: 0; width: 1.1rem; height: 1.1rem; background: var(--orange); color: var(--white); border-radius: 50%; font-size: 0.6rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin-top: 0.1em; }
.service-produces { background: var(--black); border-radius: 12px; padding: 1.8rem; }
.service-produces-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.8rem; }
.service-produces-text { font-size: 1rem; font-weight: 600; line-height: 1.55; color: rgba(255,255,255,0.92); }
.method-section { position: relative; overflow: hidden; padding-block: 6rem; background: var(--black); color: var(--white); text-align: center; }
.method-section > .wrap { position: relative; z-index: 1; }
.method-section .ghost-word { top: 1.5rem; left: 0; width: 100%; text-align: center; font-size: clamp(7rem, 19vw, 13rem); color: rgba(255,255,255,0.045); }
.method-flow { margin: -0.5rem 0 2.4rem; }
.method-flow svg { display: block; width: 100%; height: auto; }
.method-section .section-label { color: var(--orange); }
.method-headline { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.025em; color: var(--white); max-width: 42ch; margin: 0 auto 1rem; }
.method-body { font-size: 1.05rem; color: rgba(255,255,255,0.55); max-width: 90ch; line-height: 1.7; margin: 0 auto 3rem; }
.method-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: rgba(255,255,255,0.08); border-radius: 8px; overflow: hidden; margin-bottom: 3rem; text-align: left; }
.method-step { background: #111111; padding: 2.2rem; }
.method-step-num { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.7rem; }
.method-step-title { font-size: 1.18rem; font-weight: 800; letter-spacing: -0.02em; color: var(--white); margin-bottom: 0.7rem; }
.method-step-body { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.method-link { text-align: center; }

/* ─── FOUNDER/BIO PAGE ────────────────────────────────────── */
.bio-hero { padding-top: 7rem; padding-bottom: 4rem; position: relative; overflow: hidden; border-bottom: 1px solid var(--rule); }
.bio-hero::before { content: 'YUVAAN'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: clamp(5rem, 16vw, 16rem); font-weight: 800; letter-spacing: -0.04em; color: transparent; -webkit-text-stroke: 1px rgba(0,0,0,0.045); white-space: nowrap; pointer-events: none; user-select: none; z-index: 0; }
.bio-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 340px 1fr; gap: 4rem; align-items: center; }
.bio-photo-col { display: flex; flex-direction: column; align-items: center; }
.bio-photo-frame { width: 100%; height: 420px; border-radius: 14px; background: #E8E5E0; border: 2px solid var(--rule); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; position: relative; overflow: hidden; }
.bio-photo-frame .photo-placeholder-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--stone); display: flex; align-items: center; justify-content: center; }
.bio-photo-frame .photo-placeholder-icon svg { width: 40px; height: 40px; fill: var(--muted); }
.bio-photo-frame .photo-placeholder-text { font-size: 0.78rem; font-weight: 600; color: var(--muted); text-align: center; letter-spacing: 0.04em; text-transform: uppercase; padding-inline: 1rem; }
.bio-photo-frame::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 5px; background: var(--orange); }
.social-buttons { display: flex; flex-direction: row; gap: 0.75rem; margin-bottom: 1.8rem; }
.social-btn { display: flex; align-items: center; justify-content: center; gap: 0.55rem; padding: 0.65rem 1.2rem; border-radius: 8px; font-size: 0.82rem; font-weight: 600; transition: transform 0.18s, box-shadow 0.18s, opacity 0.18s; cursor: pointer; white-space: nowrap; }
.social-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.15); opacity: 0.92; }
.social-btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.social-btn-linkedin { background: #0A66C2; color: var(--white); }
.social-btn-youtube { background: #FF0000; color: var(--white); }
.social-btn-instagram { background: linear-gradient(135deg, #833AB4, #C13584, #E1306C, #F56040, #FCAF45); color: var(--white); }
.bio-intro-eyebrow { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.8rem; }
.bio-intro-name { font-size: clamp(3rem, 6vw, 5.2rem); font-weight: 800; line-height: 1.0; letter-spacing: -0.035em; margin-bottom: 1.4rem; }
.bio-intro-name em { font-style: normal; color: var(--orange); }
.bio-intro-title { font-size: 1.15rem; font-weight: 500; color: var(--muted); margin-bottom: 1.8rem; }
.bio-tagline { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.2rem; }
.bio-tagline span { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--orange); padding: 0.38rem 0.85rem; border: 1.5px solid var(--orange); border-radius: 999px; }
.bio-intro-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.bio-section { padding-block: 5rem; border-bottom: 1px solid var(--rule); }
.bio-section-inner { display: grid; grid-template-columns: 260px 1fr; gap: 5rem; align-items: start; }
.bio-section-chapter { position: sticky; top: 6rem; }
.bio-chapter-num { font-size: 5rem; font-weight: 800; color: var(--stone); line-height: 1; letter-spacing: -0.04em; margin-bottom: 0.6rem; }
.bio-chapter-label { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange); }
.bio-section-headline { font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.025em; margin-bottom: 1.5rem; }
.bio-section-headline em { font-style: normal; color: var(--orange); }
.bio-section-body { font-size: 1.02rem; line-height: 1.8; color: var(--ink); margin-bottom: 1.2rem; }
.bio-section-body:last-child { margin-bottom: 0; }
.bio-pull-quote { margin-block: 2rem; padding: 1.5rem 1.8rem; border-left: 3px solid var(--orange); background: rgba(255,138,42,0.05); border-radius: 0 8px 8px 0; font-size: 1.05rem; font-weight: 600; line-height: 1.65; color: var(--ink); font-style: italic; }
.bio-beliefs { padding-block: 5rem; border-bottom: 1px solid var(--rule); }
.beliefs-headline { font-size: clamp(1.6rem, 2.8vw, 2.4rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 1.5rem; }
.beliefs-body { font-size: 1.02rem; line-height: 1.8; color: var(--ink); max-width: 68ch; margin-bottom: 1.2rem; }
.bio-cta { padding-block: 6rem; background: var(--black); position: relative; overflow: hidden; }
.bio-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(255,138,42,0.12) 0%, transparent 60%); pointer-events: none; }
.bio-cta-inner { position: relative; z-index: 1; text-align: center; }
.bio-cta-label { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.2rem; }
.bio-cta-headline { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; color: var(--white); max-width: 30ch; margin-inline: auto; margin-bottom: 1.5rem; }
.bio-cta-headline em { font-style: normal; color: var(--orange); }
.bio-cta-sub { font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.75; max-width: 52ch; margin-inline: auto; margin-bottom: 2.5rem; }
.bio-cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .problem-inner, .framework-top, .assessment-inner, .who-top, .founder-inner, .contact-inner,
  .page-hero-inner, .observation-inner, .problem-band-inner, .belief-inner, .how-top,
  .intro-grid, .questions-grid, .order-grid, .stage-row, .service-grid,
  .bio-hero-inner, .bio-section-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps, .how-steps, .method-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .gap-grid { grid-template-columns: 1fr; }
  .framework-body-wrap, .how-right { padding-top: 0; }
  .ghost-word, .ghost-quote, .framework-flow, .method-flow, .service-ghost-num { display: none; }
  .observation-sticky, .bio-section-chapter { position: static; }
  .stage-row .stage-content, .stage-row.reverse .stage-content { order: 1; }
  .stage-row .stage-produces, .stage-row.reverse .stage-produces { order: 2; }
  .bio-photo-frame { width: 260px; height: 320px; }
  .bio-hero::before { display: none; }
}
@media (max-width: 560px) {
  .nav-links { display: none; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .founder-stats { flex-direction: row; flex-wrap: wrap; }
  .whatsapp-float { width: 3.2rem; height: 3.2rem; bottom: 1.2rem; right: 1.2rem; }
  .whatsapp-float svg { width: 1.7rem; height: 1.7rem; }
  .whatsapp-float::after { display: none; }
}
