:root {
  --ink: #15332d;
  --ink-deep: #0d2722;
  --paper: #f5f0e6;
  --paper-light: #fbf8f1;
  --line: #c9c3b7;
  --sage: #b9c9ba;
  --mint: #d9e5d7;
  --teal: #1a6a5c;
  --coral: #da6d51;
  --white: #fffdf8;
  --text-muted: #5d6b66;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --shell: min(1180px, calc(100% - 40px));
  --radius: 6px;
  --section: clamp(80px, 10vw, 148px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

button, input, select, textarea { font: inherit; }
a { color: inherit; }
img { max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
.shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding-block: var(--section); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 100; top: 12px; left: 12px; padding: 10px 16px;
  background: var(--white); transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed; z-index: 50; inset: 0 0 auto; border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}
.site-header.scrolled {
  background: rgb(245 240 230 / 94%); border-color: rgb(21 51 45 / 14%);
  backdrop-filter: blur(14px);
}
.nav-wrap { height: 80px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; text-decoration: none; letter-spacing: -.045em; font-size: 24px; }
.brand img { width: 44px; height: 44px; margin-right: 10px; object-fit: contain; }
.brand span { font-family: var(--font-serif); }
.brand strong { color: var(--coral); font-family: var(--font-serif); font-size: inherit; font-weight: 400; letter-spacing: inherit; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); }
.site-nav > a { font-size: 13px; font-weight: 600; text-decoration: none; }
.site-nav > a:not(.button) { position: relative; }
.site-nav > a:not(.button)::after {
  content: ""; position: absolute; inset: auto 0 -5px; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right; transition: transform .2s ease;
}
.site-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; width: 48px; height: 48px; border: 0; background: transparent; }
.menu-toggle > span:not(.sr-only) { display: block; width: 23px; height: 1px; margin: 6px auto; background: var(--ink); }

.button {
  display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 22px;
  padding: 13px 20px; border: 1px solid var(--ink); border-radius: 2px; color: var(--white);
  background: var(--ink); font-weight: 700; font-size: 14px; text-decoration: none; cursor: pointer;
  transition: transform .2s ease, color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--teal); border-color: var(--teal); }
.button:disabled { cursor: wait; opacity: .62; transform: none; }
.button-small { min-height: 42px; padding: 9px 16px; }
.button-full { width: 100%; }
.button-coral { color: var(--ink-deep); background: var(--coral); border-color: var(--coral); }
.button-coral:hover { color: var(--white); background: #c65c43; border-color: #c65c43; }
.text-link { font-size: 14px; font-weight: 700; text-underline-offset: 5px; }

.hero { min-height: 860px; padding: 146px 0 90px; display: grid; align-items: center; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(390px, .72fr); gap: clamp(54px, 8vw, 120px); align-items: center; }
.eyebrow, .section-label {
  text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 700;
}
.hero-signature { display: flex; align-items: center; gap: 17px; margin-bottom: 19px; }
.hero-signature > img { width: clamp(82px, 8vw, 112px); height: auto; flex: 0 0 auto; }
.hero-signature .eyebrow { margin: 0 0 5px; }
.hero-brand-name { margin: 0; font-family: var(--font-serif); font-size: clamp(27px, 3vw, 38px); line-height: 1; letter-spacing: -.045em; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 25px; }
.eyebrow span { width: 30px; height: 1px; background: var(--coral); }
h1 {
  max-width: 780px; margin-bottom: 27px; font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(58px, 6.5vw, 96px); line-height: .95; letter-spacing: -.045em;
}
h1 em, h2 em { color: var(--coral); font-weight: 400; }
.hero-summary { max-width: 630px; color: #42544e; font-size: clamp(17px, 2vw, 20px); line-height: 1.65; }
.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 28px; }
.quiet-note { margin: 24px 0 0; color: var(--text-muted); font-size: 12px; }

.practice-map { padding: 24px; color: var(--white); background: var(--ink); transform: rotate(1.5deg); }
.map-heading, .path-topline, .form-heading { display: flex; justify-content: space-between; gap: 20px; }
.map-heading { padding-bottom: 18px; border-bottom: 1px solid rgb(255 255 255 / 22%); font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }
.map-mark { color: var(--sage); }
.map-title { margin: 28px 0 30px; max-width: 360px; font-family: var(--font-serif); font-size: 31px; line-height: 1.12; }
.skill-map { margin: 0; padding: 0; list-style: none; }
.skill-map li { display: grid; grid-template-columns: 32px 1fr auto; gap: 10px; align-items: baseline; padding: 14px 0; border-top: 1px solid rgb(255 255 255 / 15%); }
.skill-map li > span { color: var(--coral); font-size: 10px; }
.skill-map strong { font-size: 14px; }
.skill-map small { color: var(--sage); font-size: 10px; text-align: right; }
.map-outcome { margin: 24px -24px -24px; padding: 18px 24px; display: flex; justify-content: space-between; background: var(--mint); color: var(--ink); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }

.problem { background: var(--paper-light); border-block: 1px solid var(--line); }
.statement-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(50px, 10vw, 150px); }
.section-label { margin-bottom: 25px; color: var(--teal); }
.section-label.light { color: var(--sage); }
h2 { margin-bottom: 0; font-family: var(--font-serif); font-size: clamp(43px, 5vw, 70px); font-weight: 400; line-height: 1.04; letter-spacing: -.035em; }
.statement-copy { padding-top: 43px; font-size: 17px; }
.statement-line { margin: 38px 0 0; padding-left: 22px; border-left: 2px solid var(--coral); font-weight: 700; }

.section-intro { max-width: 760px; margin-bottom: 64px; }
.section-intro > p:last-child { max-width: 570px; margin: 25px 0 0; color: var(--text-muted); font-size: 17px; }
.pathway-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.path-card { min-height: 670px; padding: clamp(28px, 4vw, 52px); display: flex; flex-direction: column; border: 1px solid var(--ink); }
.path-india { background: var(--mint); }
.path-global { color: var(--white); background: var(--ink); }
.path-topline { padding-bottom: 22px; border-bottom: 1px solid currentColor; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.path-card > div:nth-child(2) { margin-top: 52px; }
.path-brand { margin-bottom: 16px; color: var(--teal); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.path-global .path-brand { color: var(--coral); }
.path-brand small { font-size: 9px; opacity: .75; }
.path-card h3 { max-width: 470px; margin-bottom: 18px; font-family: var(--font-serif); font-size: clamp(39px, 4.5vw, 58px); font-weight: 400; line-height: 1.02; }
.path-card > div > p:last-child { max-width: 520px; opacity: .78; }
.clean-list { margin: 34px 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; list-style: none; font-size: 13px; }
.clean-list li::before { content: "+"; margin-right: 8px; color: var(--coral); }
.card-cta { margin-top: auto; padding: 18px 0 3px; display: flex; justify-content: space-between; border-top: 1px solid currentColor; font-size: 14px; font-weight: 700; text-decoration: none; }
.card-cta span { font-size: 20px; transition: transform .2s ease; }
.card-cta:hover span { transform: translate(4px, -4px); }

.approach { color: var(--white); background: var(--ink-deep); }
.approach-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 10vw, 150px); }
.approach .section-intro { margin: 0; }
.approach-mark { width: 72px; height: 72px; margin: 0 0 27px; object-fit: contain; }
.approach .section-intro > p:last-child { color: var(--sage); }
.learning-chain { margin: 0; padding: 0; list-style: none; }
.learning-chain li { display: grid; grid-template-columns: 42px 1fr auto; gap: 20px; align-items: baseline; padding: 23px 0; border-top: 1px solid rgb(255 255 255 / 18%); }
.learning-chain li:last-child { border-bottom: 1px solid rgb(255 255 255 / 18%); }
.learning-chain span { color: var(--coral); font-size: 11px; }
.learning-chain strong { font-family: var(--font-serif); font-size: clamp(25px, 3vw, 35px); font-weight: 400; }
.learning-chain small { color: var(--sage); text-align: right; }

.founder { background: var(--paper-light); }
.founder-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(60px, 10vw, 150px); align-items: start; }
.founder-index { aspect-ratio: .82; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; color: var(--white); background: var(--teal); }
.founder-index > span { font-family: var(--font-serif); font-size: clamp(90px, 13vw, 180px); line-height: .8; letter-spacing: -.08em; }
.founder-index small { padding-top: 18px; border-top: 1px solid rgb(255 255 255 / 35%); text-transform: uppercase; letter-spacing: .11em; }
.founder-copy blockquote { margin: 0 0 38px; font-family: var(--font-serif); font-size: clamp(35px, 4vw, 56px); line-height: 1.14; letter-spacing: -.025em; }
.founder-copy > p:not(.section-label):not(.founder-signoff) { max-width: 720px; color: var(--text-muted); }
.founder-signoff { margin-top: 36px; padding-top: 19px; border-top: 1px solid var(--line); font-weight: 700; }
.founder-signoff span { display: block; color: var(--text-muted); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; }

.survey { background: var(--mint); }
.survey-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(55px, 9vw, 130px); align-items: start; }
.survey-copy { position: sticky; top: 130px; }
.survey-copy > p:nth-of-type(2) { max-width: 500px; margin-top: 28px; color: var(--text-muted); }
.survey-time { margin-top: 48px; display: flex; align-items: center; gap: 16px; }
.survey-time strong { font-family: var(--font-serif); font-size: 78px; font-weight: 400; line-height: .8; }
.survey-time span { font-size: 11px; font-weight: 700; line-height: 1.35; text-transform: uppercase; letter-spacing: .1em; }
.form-panel { padding: clamp(25px, 4vw, 48px); border: 1px solid var(--ink); background: var(--paper-light); }
.form-heading { margin-bottom: 38px; padding-bottom: 18px; border-bottom: 1px solid var(--line); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.field { margin-bottom: 24px; }
.field label, .field legend { display: block; margin-bottom: 8px; font-size: 12px; font-weight: 700; }
.field label span { color: var(--text-muted); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 2px; border: 0; border-bottom: 1px solid #8e9b95;
  border-radius: 0; outline: 0; color: var(--ink); background: transparent;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #7e8a84; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-width: 2px; border-color: var(--teal); }
.field [aria-invalid="true"] { border-color: #b43d2b; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.field-row .field { min-width: 0; }
.field-year { max-width: 190px; }
.field-hint, .privacy-note { margin: -14px 0 22px; color: var(--text-muted); font-size: 10px; }
.radio-field { padding: 0; border: 0; }
.radio-field label { display: inline-flex; align-items: center; margin-right: 18px; cursor: pointer; }
.radio-field input { width: 18px; min-height: 18px; margin: 0 7px 0 0; accent-color: var(--teal); }
.honeypot { position: absolute !important; left: -10000px !important; }
.form-status { min-height: 24px; margin: 13px 0 0; font-size: 12px; font-weight: 700; }
.form-status.error { color: #9c2e20; }
.form-status.success { color: var(--teal); }
.form-panel.is-complete > *:not(.form-status) { display: none; }
.form-panel.is-complete .form-status { min-height: 220px; display: grid; place-items: center; font-family: var(--font-serif); font-size: 34px; line-height: 1.2; text-align: center; }

.early-access { color: var(--white); background: var(--ink); }
.access-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(60px, 9vw, 130px); align-items: start; }
.access-copy { position: sticky; top: 130px; }
.access-copy > p:last-child { max-width: 500px; color: var(--sage); }
.access-manifesto { margin: 40px 0; font-family: var(--font-serif); font-size: clamp(30px, 4vw, 45px); line-height: 1.25; }
.access-manifesto em { color: var(--coral); }
.form-panel-dark { color: var(--white); border-color: rgb(255 255 255 / 35%); background: var(--ink-deep); }
.form-panel-dark .form-heading { border-color: rgb(255 255 255 / 20%); }
.form-panel-dark .field input, .form-panel-dark .field select, .form-panel-dark .field textarea { color: var(--white); border-color: #73857e; }
.form-panel-dark .field select option { color: var(--ink); }
.form-panel-dark .field input::placeholder, .form-panel-dark .field textarea::placeholder { color: #8fa098; }
.form-panel-dark .field-hint, .form-panel-dark .privacy-note { color: var(--sage); }
.form-panel-dark .form-status.success { color: var(--sage); }

.consent-banner {
  position: fixed; z-index: 100; right: 18px; bottom: 18px; width: min(540px, calc(100% - 36px));
  padding: 18px; display: flex; align-items: center; justify-content: space-between; gap: 22px;
  color: var(--white); background: var(--ink-deep); border: 1px solid rgb(255 255 255 / 25%);
  box-shadow: 0 14px 50px rgb(0 0 0 / 25%);
}
.consent-banner p { margin: 0; font-size: 12px; }
.consent-banner p a { color: var(--sage); text-underline-offset: 3px; }
.consent-banner > div { flex: 0 0 auto; display: flex; align-items: center; gap: 12px; }
.consent-decline { padding: 8px 3px; border: 0; color: var(--sage); background: transparent; cursor: pointer; text-decoration: underline; text-underline-offset: 4px; }

.site-footer { padding: 46px 0; color: var(--white); background: var(--ink-deep); border-top: 1px solid rgb(255 255 255 / 15%); }
.footer-grid { display: grid; grid-template-columns: .5fr 1fr auto; gap: 35px; align-items: end; }
.brand-footer { color: var(--white); }
.brand-footer { font-size: 30px; }
.brand-footer img { width: 52px; height: 52px; border-radius: 50%; background: var(--paper-light); }
.footer-grid > p { max-width: 360px; margin: 0; color: var(--sage); font-size: 12px; }
.footer-meta { display: flex; gap: 20px; font-size: 11px; }
.footer-meta a { text-underline-offset: 4px; }

.legal-page { min-height: calc(100vh - 126px); padding: 140px 0 90px; background: var(--paper-light); }
.legal-shell { width: min(760px, calc(100% - 40px)); margin-inline: auto; }
.legal-shell h1 { margin-bottom: 22px; font-size: clamp(48px, 7vw, 76px); }
.legal-shell h2 { margin: 46px 0 14px; font-size: clamp(28px, 4vw, 38px); }
.legal-shell p, .legal-shell li { color: var(--text-muted); }
.legal-shell a { color: var(--teal); text-underline-offset: 4px; }
.legal-updated { padding-bottom: 22px; border-bottom: 1px solid var(--line); font-size: 12px; }

.reveal { opacity: 1; transform: translateY(0); }
.practice-map.reveal { transform: rotate(1.5deg); }

:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }

@media (max-width: 1024px) {
  .site-nav { gap: 18px; }
  .site-nav > a { font-size: 12px; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr .78fr; gap: 45px; }
  .skill-map li { grid-template-columns: 28px 1fr; }
  .skill-map small { display: none; }
  .clean-list { grid-template-columns: 1fr; }
  .path-card { min-height: 710px; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 32px, 680px); }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed; inset: 80px 0 auto; padding: 30px 24px 40px; display: grid; gap: 8px;
    background: var(--paper-light); border-bottom: 1px solid var(--line); transform: none;
    transition: transform .25s ease;
  }
  .js .site-nav { transform: translateY(-130%); }
  .js .site-nav.open { transform: translateY(0); }
  body.menu-open { overflow: hidden; }
  .site-nav > a { padding: 10px; font-size: 16px; }
  .site-nav .button { margin-top: 8px; }
  .hero { padding-top: 125px; }
  .hero-grid, .statement-grid, .approach-grid, .founder-grid, .survey-grid, .access-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 65px; }
  .practice-map { width: min(92%, 500px); justify-self: center; }
  .statement-copy { padding-top: 0; }
  .path-card { min-height: 650px; }
  .approach-grid, .founder-grid, .survey-grid, .access-grid { gap: 60px; }
  .founder-index { max-width: 450px; aspect-ratio: 1.1; }
  .survey-copy, .access-copy { position: static; }
  .footer-grid { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 660px) {
  :root { --shell: calc(100% - 28px); --section: 78px; }
  .nav-wrap { height: 70px; }
  .site-nav { top: 70px; }
  .hero { padding: 118px 0 76px; }
  .hero-signature { gap: 13px; margin-bottom: 17px; }
  .hero-signature > img { width: 72px; }
  .hero-brand-name { font-size: 29px; }
  .hero-signature .eyebrow { font-size: 9px; letter-spacing: .12em; }
  .hero-signature .eyebrow span { width: 18px; }
  h1 { font-size: clamp(50px, 15.5vw, 70px); }
  h2 { font-size: clamp(39px, 11.5vw, 52px); }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .text-link { align-self: flex-start; }
  .practice-map { width: calc(100% - 12px); padding: 20px; }
  .map-outcome { margin: 24px -20px -20px; padding: 17px 20px; }
  .approach-mark { width: 58px; height: 58px; margin-bottom: 22px; }
  .brand-footer { font-size: 27px; }
  .brand-footer img { width: 46px; height: 46px; }
  .pathway-grid { grid-template-columns: 1fr; }
  .path-card { min-height: auto; padding: 28px 24px; }
  .path-card > div:nth-child(2) { margin-top: 38px; }
  .clean-list { margin-bottom: 50px; }
  .learning-chain li { grid-template-columns: 32px 1fr; gap: 12px; }
  .learning-chain small { grid-column: 2; text-align: left; }
  .founder-index { max-width: none; }
  .form-panel { margin-inline: -2px; padding: 25px 20px; }
  .consent-banner { align-items: stretch; flex-direction: column; }
  .consent-banner > div { justify-content: space-between; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .field-year { max-width: none; }
  .radio-field label { min-height: 44px; margin-right: 14px; }
  .footer-meta { justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .practice-map.reveal { transform: none; }
}
