@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=DM+Sans:wght@400;500;600&family=Newsreader:opsz,wght@6..72,400;6..72,500&display=swap");

:root {
  --satth-forest: #163f33;
  --satth-forest-deep: #10352b;
  --satth-olive: #4d5633;
  --satth-moss: #717a52;
  --satth-ochre: #a8793a;
  --satth-clay: #b76446;
  --satth-ivory: #f3eedf;
  --satth-parchment: #e8dec9;
  --satth-paper-light: #f8f4e9;
  --satth-ink: #20231f;
  --satth-graphite: #5f625c;
  --satth-rule: rgba(32, 35, 31, 0.2);
  --satth-rule-light: rgba(243, 238, 223, 0.24);
  --shell: 1210px;
  --space-section: clamp(4.5rem, 9vw, 8rem);
  --ease: 210ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--satth-ivory);
  color: var(--satth-ink);
  font: 400 1rem/1.6 "DM Sans", Arial, sans-serif;
}
img { display: block; max-width: 100%; }
button, input { font: inherit; }
button { cursor: pointer; }
a { color: inherit; }
.shell { width: min(calc(100% - 2.5rem), var(--shell)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 100; top: .5rem; left: .5rem; padding: .7rem 1rem; transform: translateY(-150%); background: var(--satth-forest); color: var(--satth-ivory); }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--satth-clay); outline-offset: 4px; }
.paper-grain { background-image: radial-gradient(rgba(32,35,31,.05) .65px, transparent .75px); background-size: 7px 7px; }
.section-eyebrow {
  margin: 0 0 1.25rem;
  color: var(--satth-ochre);
  font: 500 clamp(1rem, .9vw, 1.125rem)/1.25 "DM Mono", monospace;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.utility-label, .preview-tag, .status-label {
  font: 500 .72rem/1.3 "DM Mono", monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; color: inherit; letter-spacing: -.04em; }
h1, h2 { font-family: "Newsreader", Georgia, serif; font-weight: 500; line-height: .98; }
h3 { font-weight: 500; line-height: 1.16; }
em { color: var(--satth-forest); font-weight: 400; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--satth-rule);
  background: rgba(248,244,233,.96);
  backdrop-filter: blur(12px);
}
.header-inner { display: flex; min-height: 4.75rem; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .75rem; color: var(--satth-ink); text-decoration: none; letter-spacing: .16em; }
.brand img { width: 2.65rem; height: 2.65rem; object-fit: contain; }
.brand b { font-size: .95rem; }
.site-header nav { display: none; gap: 1.5rem; font-size: .86rem; }
.site-header nav a { text-decoration: none; }
.site-header nav a:hover { color: var(--satth-clay); }
.header-action { min-height: 2.85rem; padding: .68rem 1rem; border-radius: 1rem; background: var(--satth-forest); color: var(--satth-ivory); font-weight: 600; text-decoration: none; }
.button { display: inline-flex; min-height: 2.85rem; align-items: center; justify-content: center; gap: .4rem; padding: .72rem 1.1rem; border: 1px solid transparent; border-radius: .85rem; font-weight: 600; text-decoration: none; }
.button-primary { background: var(--satth-forest); color: var(--satth-ivory); }
.button-accent { background: var(--satth-ochre); color: var(--satth-forest-deep); }
.button-secondary { border-color: var(--satth-forest); color: var(--satth-forest); }
.button:disabled { cursor: not-allowed; opacity: .58; }

.hero { padding: var(--space-section) 0; background-color: var(--satth-parchment); }
.hero-grid, .promise-grid, .journey-layout, .language-grid, .trust-grid, .founder-grid { display: grid; gap: 3rem; }
.hero h1 { max-width: 10ch; font-size: clamp(3.5rem, 11vw, 7.7rem); }
.hero h1 em { display: inline-block; }
.punjabi { margin: .8rem 0 1.25rem; color: var(--satth-forest); font-size: clamp(1.05rem, 2vw, 1.35rem); }
.hero-lead { max-width: 34rem; margin: 0; font-size: clamp(1.02rem, 1.4vw, 1.18rem); }
.ask-panel {
  align-self: end;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(32,35,31,.16);
  border-radius: 1.8rem;
  background: rgba(248,244,233,.9);
  box-shadow: .75rem .75rem 0 rgba(168,121,58,.13);
}
.ask-heading { display: flex; align-items: start; justify-content: space-between; gap: 1rem; }
.ask-heading h2 { margin-top: .4rem; font-family: "DM Sans", sans-serif; font-size: clamp(1.65rem, 3vw, 2.35rem); letter-spacing: -.035em; }
.utility-label { color: var(--satth-clay); }
.preview-tag, .status-label { display: inline-block; padding: .45rem .65rem; border: 1px solid var(--satth-rule); color: var(--satth-olive); }
.ask-field { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .65rem; margin-top: 1.35rem; }
.ask-field input {
  width: 100%;
  min-height: 3.75rem;
  padding: 1rem;
  border: 1px solid var(--satth-rule);
  border-radius: .85rem;
  background: var(--satth-paper-light);
  color: var(--satth-ink);
}
.ask-field button { min-width: 5.25rem; min-height: 3.5rem; padding-inline: .9rem; border: 0; border-radius: .85rem; background: var(--satth-forest); color: var(--satth-ivory); font-weight: 600; }
.access-signal { display: grid; gap: .2rem; margin-top: .85rem; padding: .8rem 0; border-block: 1px solid var(--satth-rule); color: var(--satth-graphite); font-size: .78rem; }
.access-signal strong { color: var(--satth-forest); font-weight: 600; }
.ask-examples { display: grid; margin-top: 1rem; }
.ask-examples button { min-height: 2.75rem; padding: .6rem 0; border: 0; border-bottom: 1px solid var(--satth-rule); background: transparent; color: var(--satth-graphite); text-align: left; }
.ask-examples button:hover { color: var(--satth-forest); }
.ask-disclosure { margin: 1rem 0 0; color: var(--satth-graphite); font-size: .78rem; }
.ask-result { margin-top: 1rem; padding-top: 1rem; border-top: 2px solid var(--satth-forest); }
.ask-result strong { font: 500 1.35rem/1.2 "Newsreader", serif; }
.ask-result p { margin: .4rem 0 0; color: var(--satth-graphite); }

.promise { position: relative; isolation: isolate; overflow: hidden; padding: var(--space-section) 0; background: var(--satth-ivory); }
.roots-memory { position: absolute; z-index: -1; inset: auto auto 0 -6%; width: min(66rem, 95vw); opacity: .085; }
.promise-grid { align-items: end; }
.promise-copy h2 { max-width: 11ch; font-size: clamp(3rem, 7vw, 6rem); }
.promise-copy > p:not(.section-eyebrow) { max-width: 34rem; font-size: 1.08rem; }
.promise-copy aside { max-width: 27rem; margin-top: 2rem; padding: 1rem 0 0 1.1rem; border-top: 1px solid var(--satth-rule); border-left: 3px solid var(--satth-clay); color: var(--satth-olive); font: 1.25rem/1.35 "Newsreader", serif; }
.narrative-figure { margin: 0; color: var(--satth-olive); }
.narrative-picture, .narrative-picture img, .story-picture, .story-picture img, .watercolor-frame img { width: 100%; }
.narrative-figure figcaption { margin-top: 1rem; padding-top: .85rem; border-top: 1px solid var(--satth-rule); color: var(--satth-graphite); font-size: .82rem; }
.watercolor-frame { overflow: hidden; border: 1px solid rgba(32,35,31,.12); background: rgba(248,244,233,.55); }
.watercolor-frame img { height: 100%; object-fit: cover; }

.advice-culture { padding: var(--space-section) 0; background-color: var(--satth-parchment); }
.advice-grid, .narrative-split { display: grid; gap: 3rem; align-items: center; }
.advice-copy h2 { max-width: 12ch; font-size: clamp(2.75rem, 5.8vw, 5.2rem); }
.advice-copy > p:not(.section-eyebrow) { max-width: 34rem; font-size: 1.06rem; }
.advice-path { display: flex; flex-wrap: wrap; gap: .45rem .7rem; margin-top: 1.75rem; color: var(--satth-forest); font: 500 .74rem/1.3 "DM Mono", monospace; }
.advice-path span { display: inline-flex; min-height: 2.75rem; align-items: center; }
.advice-path span:not(:last-child)::after { margin-left: .7rem; color: var(--satth-ochre); content: "→"; }
.advice-scene { position: relative; }
.advice-scene > picture, .advice-scene > picture img { width: 100%; max-height: 23rem; object-fit: contain; opacity: .88; }
.conversation { position: relative; margin: -1.8rem 0 0 auto; width: min(100%, 31rem); padding: 1.1rem 1.25rem; border-left: 3px solid var(--satth-ochre); background: var(--satth-paper-light); box-shadow: .55rem .55rem 0 rgba(168,121,58,.12); }
.conversation p { margin: 0; padding: .6rem 0; border-bottom: 1px solid var(--satth-rule); color: var(--satth-graphite); font-size: .84rem; }
.conversation p:last-child { border-bottom: 0; }
.conversation b { color: var(--satth-ink); font-weight: 600; }
.conversation .satth-reply { color: var(--satth-forest); }

.guided-journey {
  position: relative;
  padding: var(--space-section) 0;
  background: var(--satth-olive);
  color: var(--satth-ivory);
  background-image: repeating-linear-gradient(45deg, rgba(243,238,223,.027) 0 1px, transparent 1px 7px);
}
.guided-journey .section-eyebrow { color: #f0c477; }
.journey-intro h2 { max-width: 11ch; font-size: clamp(2.8rem, 6vw, 5.3rem); }
.journey-intro > p:not(.section-eyebrow) { max-width: 31rem; }
.fine-print { color: #ddd8c8; font-size: .8rem; }
.journey-component { display: grid; gap: 1.5rem; align-items: center; }
.selector-hint { margin: 0 0 .7rem; color: #e2ddcf; font-size: .78rem; }
.step-list { border-top: 1px solid var(--satth-rule-light); }
.step-button {
  display: grid;
  width: 100%;
  min-height: 4.8rem;
  grid-template-columns: 3rem 1fr;
  gap: .15rem 1rem;
  align-items: center;
  padding: .85rem .9rem;
  border: 0;
  border-bottom: 1px solid var(--satth-rule-light);
  border-left: 3px solid transparent;
  background: transparent;
  color: #dad8cb;
  text-align: left;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.step-button:hover { background: rgba(243,238,223,.07); color: var(--satth-ivory); }
.step-button[aria-pressed="true"] { border-left-color: #e2b763; background: rgba(243,238,223,.12); color: var(--satth-ivory); }
.step-number { grid-row: 1 / 3; color: #dec993; font: 500 1.1rem "DM Mono", monospace; }
.step-button[aria-pressed="true"] .step-number { color: #efbb5e; }
.step-label { font-size: 1.2rem; font-weight: 500; line-height: 1.15; }
.step-summary { color: inherit; font-size: .8rem; line-height: 1.35; }
.phone-wrap { width: min(100%, 19rem); justify-self: center; }
.product-phone { padding: .75rem; border: 2px solid var(--satth-parchment); border-radius: 2.15rem; background: var(--satth-forest-deep); box-shadow: .65rem .65rem 0 rgba(168,121,58,.76); }
.phone-status { display: flex; justify-content: space-between; padding: .2rem .35rem .75rem; color: var(--satth-ivory); font: 500 .68rem "DM Mono", monospace; }
.phone-status b { letter-spacing: .14em; }
.phone-screen { min-height: 28.5rem; padding: 1.45rem 1rem; border-radius: 1.45rem; background: var(--satth-paper-light); color: var(--satth-ink); }
.phone-kicker, .phone-step { margin: 0; color: var(--satth-clay); font: 500 .65rem/1.35 "DM Mono", monospace; letter-spacing: .08em; text-transform: uppercase; }
.phone-step { margin-top: 1.1rem; color: var(--satth-olive); }
.phone-screen h3 { margin-top: .7rem; font: 500 1.65rem/.98 "Newsreader", serif; }
.phone-screen > p:not(.phone-kicker):not(.phone-step):not(.phone-boundary) { color: var(--satth-graphite); font-size: .82rem; }
.progress { height: .3rem; margin: 1.35rem 0 1.2rem; overflow: hidden; background: rgba(32,35,31,.12); }
.progress span { display: block; width: 20%; height: 100%; background: var(--satth-ochre); transition: width var(--ease); }
.phone-screen ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--satth-rule); }
.phone-screen li { display: flex; gap: .6rem; padding: .55rem 0; border-bottom: 1px solid var(--satth-rule); color: var(--satth-graphite); font-size: .76rem; }
.phone-screen li.complete { color: var(--satth-forest); font-weight: 500; }
.phone-boundary { margin: 1rem 0 0; color: var(--satth-clay); font-size: .67rem; }
.phone-screen.is-updating > * { opacity: .2; transform: translateY(.35rem); }
.phone-screen > * { transition: opacity 190ms ease, transform 190ms ease; }

.launch-journeys { padding: var(--space-section) 0; background-color: var(--satth-ivory); }
.section-intro { max-width: 48rem; margin-bottom: 3rem; }
.section-intro h2 { font-size: clamp(2.8rem, 6vw, 5.3rem); }
.section-intro > p:not(.section-eyebrow) { max-width: 40rem; }
.journey-stories { border-top: 2px solid var(--satth-forest); }
.story {
  display: grid;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--satth-rule);
}
.story-copy .utility-label { color: var(--satth-clay); }
.story h3 { margin-top: .6rem; font: 500 clamp(2rem, 4vw, 3.3rem)/1 "Newsreader", serif; }
.story-price { display: inline-block; margin-top: .85rem; color: var(--satth-forest); font: 500 .8rem "DM Mono", monospace; letter-spacing: .06em; text-transform: uppercase; }
.story p { max-width: 38rem; margin-bottom: .4rem; color: var(--satth-graphite); }
.story .boundary { font-size: .78rem; }
.story-figure { margin: 0; align-self: center; }
.story-figure img { max-height: 19rem; margin-inline: auto; }
.utility-story {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1.5rem;
  border-left: 4px solid var(--satth-clay);
  background: var(--satth-parchment);
}
.utility-story img { width: min(100%, 13rem); }
.utility-story h3 { margin: .35rem 0; font: 500 1.75rem "Newsreader", serif; }
.utility-story p { margin: 0; color: var(--satth-graphite); }

.language-notifications { padding: var(--space-section) 0; background: var(--satth-moss); color: var(--satth-ivory); }
.language-notifications .section-eyebrow { color: #f3c57b; }
.access-intro { margin-bottom: clamp(3.5rem, 8vw, 6.5rem); }
.access-intro h2 { max-width: 13ch; font-size: clamp(2.8rem, 6.5vw, 5.8rem); }
.access-intro > p:not(.section-eyebrow) { max-width: 42rem; color: #eee8d9; font-size: 1.05rem; }
.access-rows { margin-top: 2rem; border-top: 1px solid rgba(243,238,223,.45); }
.access-row { display: grid; gap: .3rem; padding: .95rem 0; border-bottom: 1px solid rgba(243,238,223,.25); }
.access-row span { color: #e9e3d4; }
.access-row strong { color: var(--satth-ivory); font-weight: 500; }
.language-copy h2 { font-size: clamp(2.8rem, 6.5vw, 5.8rem); }
.language-copy em { color: var(--satth-parchment); }
.bilingual-fragment { margin-top: 2.2rem; padding: 1.35rem; border: 1px solid rgba(243,238,223,.38); background: rgba(243,238,223,.09); }
.bilingual-fragment p { margin: .85rem 0 0; font-size: 1.08rem; }
.bilingual-fragment p[lang="pa"] { font: 400 1.4rem/1.5 "Newsreader", Georgia, serif; }
.language-status { color: #e7e1d0; font-size: .78rem; }
.notification-panel { align-self: end; padding: clamp(1.25rem, 3vw, 2rem); background: var(--satth-parchment); color: var(--satth-ink); }
.notification-panel h3 { font: 500 clamp(2rem, 4vw, 3.2rem)/1 "Newsreader", serif; }
.notification-panel > p:not(.section-eyebrow) { color: var(--satth-graphite); }
.notification { display: flex; min-height: 4.6rem; align-items: center; gap: 1rem; padding: .85rem 0; border-top: 1px solid var(--satth-rule); }
.notification span { display: grid; flex: 0 0 2rem; height: 2rem; place-items: center; border-radius: 50%; background: var(--satth-forest); color: var(--satth-ivory); font: .7rem "DM Mono", monospace; }

.trust { padding: var(--space-section) 0; background: var(--satth-parchment); }
.trust header h2 { max-width: 10ch; font-size: clamp(2.75rem, 6vw, 5rem); }
.trust header > p:not(.section-eyebrow) { max-width: 34rem; }
.trust-rows { border-top: 2px solid var(--satth-forest); }
.trust-rows article { display: grid; grid-template-columns: 2.5rem 1fr; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--satth-rule); }
.trust-rows article > span { color: var(--satth-clay); font: .75rem "DM Mono", monospace; }
.trust-rows h3 { font-size: 1rem; }
.trust-rows p { margin: .35rem 0 0; color: var(--satth-graphite); }

.founder { position: relative; isolation: isolate; overflow: hidden; padding: var(--space-section) 0; background: var(--satth-forest-deep); color: var(--satth-ivory); }
.founder::before { position: absolute; z-index: -1; inset: 0; content: ""; background-image: repeating-linear-gradient(45deg, rgba(243,238,223,.032) 0 1px, transparent 1px 7px); }
.founder-memory { position: absolute; z-index: -1; right: -8rem; bottom: -11rem; width: min(44rem, 74vw); opacity: .1; }
.founder .section-eyebrow { color: #efbd6a; }
.founder h2 { max-width: 12ch; font-size: clamp(3rem, 7vw, 6.3rem); }
.founder-purpose { max-width: 30rem; margin: 1.5rem 0 0; color: #e6dfcf; font: 400 1.25rem/1.4 "Newsreader", serif; }
.founder-details { align-self: end; }
.founder-details > strong { display: block; margin-bottom: 1.8rem; color: var(--satth-parchment); font: 500 clamp(3rem, 7vw, 5rem)/1 "Newsreader", serif; }
.founder-details ul { margin: 0 0 2rem; padding: 0; list-style: none; border-top: 1px solid var(--satth-rule-light); }
.founder-details li { padding: .9rem 0; border-bottom: 1px solid var(--satth-rule-light); }
.founder-cta { display: inline-flex; min-height: 2.75rem; align-items: center; color: #efbd6a; font-weight: 600; }
.why-thirteen { margin-top: 1.3rem; padding-top: 1rem; border-top: 1px solid var(--satth-rule-light); }
.why-thirteen summary { min-height: 2.75rem; color: #efbd6a; cursor: pointer; font-weight: 500; }
.why-thirteen p { color: #e0dccf; font-size: .84rem; }
.why-thirteen .why-boundary { color: #c9c8bd; font-size: .72rem; }
.site-footer { padding: 2.2rem 0; background: var(--satth-forest); color: var(--satth-ivory); }
.site-footer .brand { color: var(--satth-ivory); }
.footer-grid { display: grid; gap: 1rem; }
.footer-grid p { margin: .65rem 0 0; color: #dedccd; font-size: .8rem; }
.footer-grid nav { display: grid; align-content: start; gap: .45rem; }
.footer-grid nav strong { color: var(--satth-parchment); font-size: .8rem; }
.footer-grid nav a { color: #dedccd; font-size: .8rem; }
.footer-base { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--satth-rule-light); color: #c9c8bd; font-size: .72rem; }

.page-main { min-height: 65vh; padding: clamp(3.5rem, 8vw, 7rem) 0; background: var(--satth-ivory); }
.page-hero { padding: clamp(3rem, 7vw, 6rem) 0; background: var(--satth-parchment); }
.page-hero h1 { max-width: 14ch; font-size: clamp(2.75rem, 7vw, 5.75rem); }
.page-hero p:not(.section-eyebrow) { max-width: 42rem; }
.page-card, .document-layout { width: min(calc(100% - 2rem), 50rem); margin-inline: auto; padding: clamp(1.25rem, 4vw, 2.5rem); border: 1px solid var(--satth-rule); background: var(--satth-paper-light); }
.document-layout { width: min(calc(100% - 2rem), 68rem); }
.document-layout h2 { margin-top: 2.5rem; font-size: clamp(1.8rem, 4vw, 2.7rem); }
.document-layout h3 { margin-top: 1.75rem; }
.document-layout li + li { margin-top: .5rem; }
.document-meta { color: var(--satth-graphite); font-size: .82rem; }
.document-toc { margin: 2rem 0; padding: 1.25rem; border-left: 3px solid var(--satth-ochre); background: var(--satth-parchment); }
.form-grid { display: grid; gap: 1rem; }
.form-grid label { display: grid; gap: .35rem; font-weight: 500; }
.form-grid input { min-height: 3rem; padding: .75rem; border: 1px solid var(--satth-rule); background: #fffdf7; }
.form-status { min-height: 1.5rem; color: var(--satth-graphite); }
.outcome-panel { border-left: 4px solid var(--satth-ochre); }
.page-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.purpose-note { margin-top: 2rem; padding: 1.25rem; border-top: 1px solid var(--satth-rule); color: var(--satth-graphite); }
.founder-page-hero { position: relative; isolation: isolate; overflow: hidden; background: var(--satth-forest-deep); color: var(--satth-ivory); }
.founder-page-hero .section-eyebrow { color: #efbd6a; }
.founder-page-hero p { color: #e0dccf; }
.founder-page-hero .founder-price { display: block; margin-top: 1.5rem; color: var(--satth-parchment); font: 500 clamp(2.8rem, 7vw, 5rem)/1 "Newsreader", serif; }
.founder-page-grid { display: grid; gap: 2rem; align-items: start; }
.checkout-panel { position: sticky; top: 6rem; width: 100%; }
.checkout-panel h2 { font: 500 clamp(1.9rem, 4vw, 2.7rem)/1 "Newsreader", serif; }
.draft-notice { margin: 2rem 0; padding: 1rem; border-left: 3px solid var(--satth-clay); background: var(--satth-parchment); }

@media (min-width: 760px) {
  .site-header nav { display: flex; }
  .ask-field { grid-template-columns: 1fr auto; }
  .ask-field button { min-width: 7rem; }
  .hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(23rem, .8fr); align-items: center; gap: 5rem; }
  .promise-grid { grid-template-columns: .85fr 1.15fr; gap: 4rem; }
  .advice-grid, .narrative-split { grid-template-columns: .86fr 1.14fr; gap: 5rem; }
  .journey-layout { grid-template-columns: minmax(19rem, .72fr) minmax(29rem, 1.28fr); align-items: center; gap: 4.5rem; }
  .journey-component { grid-template-columns: minmax(14rem, 1fr) 19rem; gap: clamp(2.5rem, 5vw, 4.5rem); }
  .story { grid-template-columns: 1fr 1fr; align-items: center; min-height: 24rem; }
  .story:nth-child(even) .story-copy { order: 2; }
  .story:nth-child(even) .story-figure { order: 1; }
  .utility-story { grid-template-columns: 13rem 1fr; }
  .language-grid, .trust-grid, .founder-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .access-row { grid-template-columns: .8fr 1.2fr; align-items: baseline; }
  .footer-grid { grid-template-columns: auto 1fr auto; align-items: center; }
  .founder-page-grid { grid-template-columns: minmax(0, 1.15fr) minmax(20rem, .72fr); }
}

@media (max-width: 759px) {
  .shell { width: min(calc(100% - 2rem), var(--shell)); }
  .hero { padding-top: 3.4rem; }
  .hero h1 { font-size: clamp(3.05rem, 15vw, 4.8rem); }
  .header-action { font-size: .85rem; }
  .journey-component { gap: 1.25rem; }
  .step-list { display: grid; grid-template-columns: repeat(5, minmax(3.2rem, 1fr)); border-top: 0; gap: .3rem; }
  .step-button { min-height: 3.5rem; grid-template-columns: 1fr; gap: .1rem; justify-items: center; padding: .55rem .15rem; border: 1px solid rgba(243,238,223,.25); border-left-width: 1px; text-align: center; }
  .step-button[aria-pressed="true"] { border: 1px solid #e2b763; }
  .step-number { grid-row: auto; font-size: .72rem; }
  .step-label { font-size: .77rem; }
  .step-summary { display: none; }
  .phone-wrap { width: min(100%, 18rem); }
  .phone-screen { min-height: 26rem; }
  .story { padding: 2rem 0; }
  .story-figure img { max-height: 14rem; }
  .promise-copy h2, .language-copy h2 { overflow-wrap: anywhere; }
  .conversation { margin-top: -1rem; }
  .checkout-panel { position: static; }
}

@media (min-width: 760px) and (max-width: 959px) {
  .journey-layout { grid-template-columns: 1fr; }
  .journey-intro { max-width: 40rem; }
  .journey-component { grid-template-columns: minmax(16rem, 1fr) 19rem; gap: 2.5rem; }
}

@media (max-width: 350px) {
  .brand b { display: none; }
  .header-action { padding-inline: .8rem; }
  .hero h1 { font-size: 2.9rem; }
  .ask-panel { padding: 1rem; border-radius: 1.25rem; }
  .preview-tag { display: none; }
  .step-list { gap: .15rem; }
  .step-label { font-size: .69rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Conversion experience v1: accessible extensions to the canonical SATTH system. */
:root {
  --surface-page: var(--satth-ivory);
  --surface-elevated: var(--satth-paper-light);
  --ink-primary: var(--satth-ink);
  --ink-secondary: #555b54;
  --action-primary: var(--satth-forest);
  --action-hover: #0d3228;
  --section-dark: var(--satth-forest-deep);
  --accent-brass: var(--satth-ochre);
  --accent-warning: #a34732;
  --border-default: rgba(32,35,31,.24);
  --focus-ring: #d88b2d;
  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --mobile-body: 1.0625rem;
  --mobile-secondary: .9375rem;
  --mobile-meta: .8125rem;
  --control-min: 44px;
}
html { scroll-padding-top: 6rem; }
body { min-width: 320px; color: var(--ink-primary); font-size: 17px; }
button, input, select, textarea { font: inherit; }
a, button, summary, input { outline-offset: 3px; }
:focus-visible { outline: 3px solid var(--focus-ring); }
.button { min-height: 48px; font-size: 1rem; }
.text-link { display: inline-flex; min-height: 44px; align-items: center; color: var(--satth-forest); font-weight: 600; }
.brand strong { text-transform: none; letter-spacing: .025em; }
.brand strong span { font-weight: 500; }
.language-quick, .menu-button { min-width: 44px; min-height: 44px; border: 1px solid var(--border-default); background: transparent; color: var(--satth-forest); }
.language-quick { display: inline-flex; align-items: center; padding: .55rem .7rem; color: var(--satth-forest); font-size: .76rem; font-weight: 600; text-decoration: none; }
.menu-button { display: none; font-size: 1.25rem; }
.mobile-menu { padding: 1rem max(1rem, calc((100vw - 76rem)/2)); border-top: 1px solid var(--border-default); background: var(--satth-paper-light); }
.mobile-menu[hidden] { display: none; }
.mobile-menu a { display: flex; min-height: 46px; align-items: center; border-bottom: 1px solid var(--border-default); color: var(--satth-ink); }
.hero { padding-bottom: 0; }
.hero h1 { max-width: 13ch; font-size: clamp(2.9rem, 6.4vw, 6rem); }
.hero h1 em { display: inline; }
.hero-question, .hero-answer { display: block; }
.hero-lead-mobile, .mobile-hero-link { display: none; }
.hero-lead { max-width: 43rem; }
.hero-grid > *, .ask-panel, .ask-heading > *, .ask-field > * { min-width: 0; }
.language-trust { color: var(--satth-forest); font-weight: 500; }
.ask-panel { align-self: center; }
.access-signal { display: grid; gap: .2rem; margin: 1rem 0; padding: .8rem 0; border-block: 1px solid var(--border-default); font-size: .88rem; }
.access-signal strong { color: var(--satth-forest); }
.founder-strip { display: grid; gap: 1rem; align-items: center; margin-top: clamp(2rem,5vw,4rem); padding-block: 1.2rem; border-top: 1px solid var(--border-default); }
.founder-strip div { display: grid; gap: .2rem; }
.founder-strip div > strong { color: var(--satth-forest); font-size: 1.05rem; }
.founder-strip div > span { color: var(--ink-secondary); font-size: .92rem; }
.founder-strip a { color: var(--satth-forest); font-weight: 700; }
.promise-body { max-width: 34rem; margin: 0; color: var(--ink-secondary); font-size: 1.08rem; }
.promise-copy h2 { max-width: 12ch; font-size: clamp(2.7rem,5.6vw,5.25rem); }
.guide-grid { display: grid; gap: 1px; border: 1px solid var(--border-default); background: var(--border-default); }
.guide-card { position: relative; display: grid; min-width: 0; background: var(--satth-paper-light); }
.guide-media { overflow: hidden; background: var(--satth-parchment); }
.guide-media picture, .guide-media img { width: 100%; height: 100%; }
.guide-media img { object-fit: cover; }
.guide-card-copy { padding: 1.25rem; }
.guide-meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .65rem; }
.guide-meta .status-label { border-color: rgba(22,63,51,.28); background: rgba(22,63,51,.06); color: var(--satth-forest); }
.guide-card h3 { margin: .65rem 0; font: 500 clamp(1.55rem,3vw,2.1rem)/1.08 "Newsreader",serif; }
.guide-card h3 a { color: var(--satth-ink); text-decoration: none; }
.guide-card h3 a::after { position: absolute; inset: 0; content: ""; }
.guide-card p { color: var(--ink-secondary); }
.guides-more { margin-top: 1.5rem; }
.media-landscape { aspect-ratio: 16/10; }
.media-card { aspect-ratio: 4/3; }
.media-portrait { aspect-ratio: 4/5; }
.media-square { aspect-ratio: 1; }
.language-modes { display: grid; gap: .6rem; margin: 1.5rem 0; }
.language-modes button { display: grid; min-height: 60px; grid-template-columns: 1fr auto; align-items: center; gap: 1rem; padding: .8rem 1rem; border: 1px solid rgba(243,238,223,.42); background: rgba(243,238,223,.08); color: var(--satth-ivory); text-align: left; }
.language-modes button span { font-size: .8rem; }
.language-modes button[aria-pressed="true"] { border-left: 4px solid #efbd6a; background: rgba(243,238,223,.18); }
.language-modes button:disabled { cursor: not-allowed; opacity: .72; }
.trust-boundary { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border-default); color: var(--ink-secondary); }
.founder-scope { margin: 1.5rem 0; border-top: 1px solid var(--satth-rule-light); }
.founder-scope div { display: grid; gap: .25rem; padding: .85rem 0; border-bottom: 1px solid var(--satth-rule-light); }
.founder-scope span, .founder-timing span { color: #efbd6a; font: 500 .78rem/1.35 "DM Mono", monospace; letter-spacing: .08em; text-transform: uppercase; }
.founder-scope strong, .founder-timing strong { color: var(--satth-ivory); font-weight: 500; }
.founder-timing { display: grid; grid-template-columns: auto 1fr; gap: .35rem 1rem; }
.founder-counter { margin-top: 1.5rem; }
.founder-counter strong { display: block; color: var(--satth-parchment); font-weight: 600; }
.founder-progress { height: .5rem; margin-top: .7rem; overflow: hidden; background: rgba(243,238,223,.2); }
.founder-progress span { display: block; width: 0; height: 100%; background: #efbd6a; transition: width 200ms ease; }
.renewal-disclosure { color: #dedccd; font-size: .86rem; }
.sticky-actions { position: fixed; z-index: 40; right: 1rem; bottom: max(1rem, env(safe-area-inset-bottom)); left: 1rem; display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; padding: .5rem; border: 1px solid var(--border-default); background: rgba(248,244,233,.97); box-shadow: 0 .4rem 1.5rem rgba(16,53,43,.18); }
.sticky-actions[hidden], .founder-prompt[hidden] { display: none; }
.founder-prompt { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 1rem; }
.founder-prompt-backdrop { position: absolute; inset: 0; background: rgba(16,53,43,.72); }
.founder-prompt section { position: relative; width: min(100%, 36rem); max-height: min(70vh,42rem); overflow: auto; padding: clamp(1.5rem,5vw,3rem); background: var(--satth-paper-light); }
.founder-prompt h2 { font-size: clamp(2rem,5vw,3.4rem); }
.prompt-close { position: absolute; top: .75rem; right: .75rem; width: 44px; height: 44px; border: 0; background: transparent; font-size: 1.8rem; }
.prompt-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.5rem 0 1rem; }
.prompt-open { overflow: hidden; }
.founder-hero-grid { display: grid; gap: 2rem; align-items: end; }
.founder-story { width: 100%; margin: 0; }
.checkout-summary dl { margin: 1rem 0 1.5rem; border-top: 1px solid var(--border-default); }
.checkout-summary dl div { display: grid; grid-template-columns: minmax(6rem, .7fr) 1.3fr; gap: 1rem; padding: .65rem 0; border-bottom: 1px solid var(--border-default); }
.checkout-summary dt { color: var(--ink-secondary); }
.checkout-summary dd { margin: 0; font-weight: 500; }
.faq details { padding: 1rem 0; border-top: 1px solid var(--border-default); }
.faq summary { min-height: 44px; cursor: pointer; font-weight: 600; }
.guides-hero h1 { max-width: 14ch; }
.guide-search-label { display: block; margin: 2rem 0 .55rem; font-weight: 600; }
.guide-search { width: min(100%,52rem); min-height: 60px; padding: .9rem 1rem; border: 2px solid var(--satth-forest); background: var(--satth-paper-light); font-size: 1.05rem; }
.suggested-searches { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .8rem; }
.suggested-searches button { min-height: 44px; padding: .5rem .75rem; border: 1px solid var(--border-default); background: transparent; }
.category-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.category-list span { padding: .45rem .7rem; border-left: 2px solid var(--satth-ochre); background: var(--satth-parchment); font-size: .86rem; }
.guide-catalog { border-top: 2px solid var(--satth-forest); }
.guide-entry { display: grid; gap: 1rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border-default); }
.guide-entry h2 { margin: .5rem 0; font-size: clamp(1.65rem,3.5vw,2.5rem); }
.guide-entry p { color: var(--ink-secondary); }
.guide-state { align-self: center; padding: 1rem; border-left: 3px solid var(--satth-ochre); background: var(--satth-parchment); }
.guide-state p { font-size: .88rem; }

@media (min-width: 760px) {
  .founder-strip { grid-template-columns: 1fr auto; }
  .guide-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .guide-card { grid-template-rows: auto 1fr; }
  .founder-hero-grid { grid-template-columns: 1.3fr .7fr; }
  .guide-entry { grid-template-columns: 1.4fr .6fr; }
  .sticky-actions { display: none !important; }
}
@media (min-width: 1100px) {
  .guide-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .sticky-actions { display: none !important; }
}
@media (max-width: 900px) {
  .site-header nav:not(.mobile-menu), .language-quick { display: none; }
  .menu-button { display: grid; place-items: center; }
  .header-action { display: none; }
  .header-inner { min-height: 4.25rem; }
}
@media (max-width: 759px) {
  body { padding-bottom: env(safe-area-inset-bottom); font-size: var(--mobile-body); line-height: 1.55; }
  .shell { width: min(calc(100% - 2rem), var(--shell)); }
  .section-eyebrow { margin-bottom: 1rem; font-size: var(--mobile-meta); line-height: 1.35; letter-spacing: .16em; }
  .utility-label, .preview-tag, .status-label { font-size: .75rem; line-height: 1.4; }
  .button, .header-action, .menu-button { min-height: 48px; font-size: 1rem; }
  .mobile-menu { max-height: calc(100vh - 4.25rem); overflow-y: auto; padding: .5rem 1rem 1rem; }
  .mobile-menu a { min-height: 48px; font-size: 1rem; }
  .hero { padding-top: 2rem; }
  .hero h1 { max-width: 11ch; font-size: clamp(2.55rem,13vw,3.55rem); line-height: .98; }
  .hero-question, .hero-answer { display: block; }
  .hero-answer { margin-top: .32em; color: var(--satth-forest); font-style: normal; }
  .hero-brand-script, .hero-lead-wide, .hero-guides-wide { display: none; }
  .hero-lead-mobile, .mobile-hero-link { display: block; }
  .hero-lead { margin-top: 1.25rem; font-size: var(--mobile-body); line-height: 1.5; }
  .language-trust { margin: .75rem 0 0; font-size: var(--mobile-secondary); }
  .hero-grid { gap: 1.35rem; }
  .ask-panel { padding: 1.1rem; border-radius: 1.25rem; box-shadow: .4rem .4rem 0 rgba(168,121,58,.13); }
  .ask-heading { flex-wrap: wrap; }
  .ask-heading h2 { font-size: 1.55rem; line-height: 1.1; }
  .ask-field { grid-template-columns: 1fr; }
  .ask-examples { display: grid; }
  .ask-examples button { min-height: 48px; font-size: var(--mobile-secondary); text-align: left; }
  .access-signal, .ask-disclosure { font-size: var(--mobile-secondary); line-height: 1.5; }
  .founder-strip { margin: 1rem -1rem 0; padding: 1.1rem; border: 0; background: var(--satth-forest); color: var(--satth-ivory); }
  .founder-strip div > strong { color: var(--satth-ivory); font-size: 1.05rem; }
  .founder-strip div > span { color: #e6dfcf; font-size: var(--mobile-secondary); }
  .founder-strip .button { width: 100%; border-color: var(--satth-ivory); color: var(--satth-ivory); }
  .mobile-hero-link { padding: .65rem 0 1.2rem; }
  .promise, .advice-culture, .guided-journey, .launch-journeys, .language-notifications, .trust, .founder { padding-block: clamp(3.75rem,16vw,5rem); }
  .promise-grid { gap: 1.5rem; }
  .promise-copy h2 { font-size: clamp(2.55rem,12vw,3.45rem); line-height: 1; }
  .promise-body { order: 3; font-size: var(--mobile-body); line-height: 1.55; }
  .narrative-figure { order: 2; }
  .narrative-figure figcaption { font-size: var(--mobile-secondary); line-height: 1.5; }
  .advice-grid, .narrative-split { gap: 1.75rem; }
  .advice-copy h2 { font-size: clamp(2.45rem,11vw,3.35rem); }
  .advice-copy > p:not(.section-eyebrow) { font-size: var(--mobile-body); }
  .advice-path { gap: .25rem .5rem; font-size: .75rem; }
  .advice-path span { min-height: 44px; }
  .conversation { width: calc(100% - .5rem); margin: -1rem 0 0 auto; padding: 1rem; }
  .conversation p { font-size: var(--mobile-secondary); line-height: 1.5; }
  .conversation-label { color: var(--satth-clay) !important; font: 500 .75rem/1.4 "DM Mono", monospace !important; letter-spacing: .08em; text-transform: uppercase; }
  .journey-layout { gap: 2rem; }
  .journey-intro h2 { font-size: clamp(2.45rem,11vw,3.35rem); }
  .journey-intro > p:not(.section-eyebrow), .fine-print { font-size: var(--mobile-secondary); line-height: 1.5; }
  .journey-context { overflow: hidden; margin-top: 1.35rem; aspect-ratio: 4/5; }
  .journey-context picture, .journey-context img { width: 100%; height: 100%; }
  .journey-context img { object-fit: cover; object-position: 50% 45%; }
  .selector-hint { font-size: var(--mobile-secondary); }
  .step-list { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--satth-rule-light); }
  .step-button { min-height: 5.25rem; grid-template-columns: 2.75rem 1fr; padding: .9rem .75rem; }
  .step-button, .step-button[aria-pressed="true"] { justify-items: stretch; border: 0; border-bottom: 1px solid var(--satth-rule-light); border-left: 3px solid transparent; text-align: left; }
  .step-button[aria-pressed="true"] { border-left-color: #e2b763; }
  .step-number { font-size: 1.05rem; }
  .step-label { font-size: 1.15rem; }
  .step-summary { font-size: var(--mobile-secondary); line-height: 1.45; }
  .phone-wrap { width: min(100%,20rem); }
  .phone-screen > p:not(.phone-kicker):not(.phone-step):not(.phone-boundary) { font-size: var(--mobile-secondary); line-height: 1.5; }
  .phone-screen li { min-height: 44px; align-items: center; font-size: .875rem; line-height: 1.4; }
  .phone-boundary { font-size: .8125rem; line-height: 1.4; }
  .section-intro { margin-bottom: 2rem; }
  .section-intro h2 { font-size: clamp(2.45rem,11vw,3.35rem); }
  .guide-grid { grid-template-columns: 1fr; }
  .guide-card:nth-child(n+5) { display: none; }
  .guide-card-copy { padding: 1.2rem; }
  .guide-card h3 { font-size: 1.8rem; }
  .guide-card p { font-size: var(--mobile-secondary); line-height: 1.5; }
  .guide-meta { align-items: flex-start; }
  .guide-meta .utility-label { max-width: 58%; }
  .guide-meta .status-label { max-width: 42%; text-align: right; }
  .access-intro { margin-bottom: 3.5rem; }
  .access-intro h2, .language-copy h2 { font-size: clamp(2.45rem,11vw,3.35rem); }
  .access-intro > p:not(.section-eyebrow), .access-row span, .access-row strong { font-size: var(--mobile-body); line-height: 1.5; }
  .access-row { gap: .15rem; padding: 1rem 0; }
  .language-modes button { min-height: 64px; grid-template-columns: 1fr; gap: .2rem; padding: .85rem 1rem; }
  .language-modes button strong { font-size: 1rem; }
  .language-modes button span { font-size: var(--mobile-secondary); line-height: 1.4; }
  .bilingual-fragment p { font-size: var(--mobile-body); }
  .bilingual-fragment p[lang="pa"] { font-size: 1.25rem; overflow-wrap: anywhere; }
  .notification-panel > p:not(.section-eyebrow), .notification p { font-size: var(--mobile-secondary); line-height: 1.5; }
  .trust-grid { gap: 2rem; }
  .trust header h2 { max-width: 12ch; font-size: clamp(2.45rem,11vw,3.35rem); }
  .trust-boundary { font-size: var(--mobile-secondary); line-height: 1.5; }
  .trust-rows { display: grid; gap: .75rem; border-top: 0; }
  .trust-rows article { grid-template-columns: 2.2rem 1fr; padding: 1rem; border: 1px solid var(--border-default); background: rgba(248,244,233,.58); }
  .trust-rows article > span { font-size: .8rem; }
  .trust-rows h3 { font-size: 1.05rem; }
  .trust-rows p { font-size: var(--mobile-secondary); line-height: 1.5; }
  .founder-grid { gap: 2rem; }
  .founder h2 { font-size: clamp(2.55rem,12vw,3.55rem); }
  .founder-intro > p:not(.section-eyebrow), .founder-details { font-size: var(--mobile-body); }
  .founder-details > strong { margin-bottom: 1.2rem; font-size: 3.75rem; }
  .founder-scope span, .founder-timing span { font-size: .75rem; }
  .founder-scope strong, .founder-timing strong, .founder-details li { font-size: var(--mobile-secondary); line-height: 1.45; }
  .founder-timing { grid-template-columns: 1fr; gap: .15rem; padding: 1rem 0; }
  .founder-timing strong + span { margin-top: .85rem; }
  .founder-cta { width: 100%; min-height: 52px; }
  .founder-counter { margin-top: 1.25rem; }
  .renewal-disclosure, .why-thirteen p, .why-thirteen .why-boundary { font-size: var(--mobile-secondary); line-height: 1.5; }
  .founder-memory { right: -10rem; bottom: -5rem; opacity: .055; }
  .site-footer { padding: 2.5rem 0 calc(6rem + env(safe-area-inset-bottom)); }
  .footer-grid { gap: 1.75rem; }
  .footer-grid p, .footer-grid nav strong, .footer-grid nav a, .footer-base { font-size: .875rem; line-height: 1.5; }
  .footer-grid nav { gap: .2rem; }
  .footer-grid nav a { display: flex; min-height: 44px; align-items: center; }
  .language-notifications { padding-bottom: 6rem; }
  .founder-prompt { align-items: end; padding: 0; }
  .founder-prompt section { width: 100%; max-height: 68vh; padding: 2rem 1rem max(1rem,env(safe-area-inset-bottom)); overscroll-behavior: contain; }
  .founder-prompt p, .founder-prompt a, .founder-prompt button { font-size: var(--mobile-secondary); line-height: 1.5; }
  .prompt-actions { display: grid; }
  .sticky-actions { right: .5rem; bottom: max(.5rem,env(safe-area-inset-bottom)); left: .5rem; }
  .sticky-actions .button { min-width: 0; min-height: 48px; padding-inline: .65rem; font-size: .9375rem; }
  .checkout-panel { position: static; }
  .page-main, .page-hero { padding-block: 3rem; }
  .page-hero h1 { font-size: clamp(2.45rem,11vw,3.5rem); }
  .page-card, .document-layout { width: min(calc(100% - 2rem),50rem); padding: 1.1rem; }
  .document-meta, .guide-state p, .form-status { font-size: var(--mobile-secondary); }
  .form-grid input { min-height: 48px; }
}
@media (max-width: 350px) {
  .brand strong span { display: none; }
  .brand { gap: .5rem; }
  .brand img { width: 2.35rem; height: 2.35rem; }
  .hero h1 { font-size: 2.55rem; }
  .ask-panel { padding: 1rem; }
  .ask-examples button:nth-child(3) { display: none; }
  .sticky-actions .button { padding-inline: .4rem; font-size: .875rem; }
}
@media (prefers-reduced-motion: reduce) {
  .founder-progress span { transition: none; }
}
