:root {
  --ink: #101b2b;
  --ink-soft: #17283d;
  --ink-pale: #23384f;
  --orange: #ff6b21;
  --orange-dark: #dc4f0c;
  --cream: #f5f0e7;
  --paper: #fffdf8;
  --white: #ffffff;
  --charcoal: #18202a;
  --muted: #66707b;
  --line: #d9d4ca;
  --shadow: 0 24px 60px rgba(10, 18, 30, 0.16);
  --shell: min(1180px, calc(100vw - 48px));
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
ul,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: -0.04em;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 800;
}

h1 {
  max-width: 900px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(3.35rem, 6vw, 6.8rem);
  text-transform: uppercase;
}

h1 em {
  display: block;
  color: var(--orange);
  font-family: var(--serif);
  font-size: 0.74em;
  font-weight: 400;
  letter-spacing: -0.045em;
  text-transform: none;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 4.8vw, 5.3rem);
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(88px, 10vw, 148px);
}

.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;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.offer-bar {
  position: relative;
  z-index: 60;
  display: flex;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 8px 24px;
  background: var(--orange);
  color: #150d08;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.offer-bar p {
  margin: 0;
}

.offer-bar a {
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.site-header {
  position: absolute;
  top: 39px;
  right: 0;
  left: 0;
  z-index: 50;
  color: var(--white);
  transition: background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.site-header.is-stuck {
  position: fixed;
  top: 0;
  background: rgba(16, 27, 43, 0.96);
  box-shadow: 0 8px 30px rgba(6, 12, 22, 0.22);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.wordmark em {
  color: var(--orange);
  font-style: normal;
}

.broken-link {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-family: var(--serif);
  font-size: 1.75rem;
  transform: rotate(-18deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.site-nav a {
  color: #e8edf2;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-decoration: none;
}

.site-nav > a:not(.nav-cta)::after {
  display: block;
  width: 0;
  height: 2px;
  margin-top: 4px;
  background: var(--orange);
  content: "";
  transition: width 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
  width: 100%;
}

.site-nav .nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  border-color: var(--orange);
  background: var(--orange);
  color: #180d07;
}

.menu-button {
  display: none;
  width: 46px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 890px;
  padding: 178px 0 110px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero::after {
  position: absolute;
  right: -11vw;
  bottom: -27vw;
  width: 55vw;
  height: 55vw;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.015), 0 0 0 170px rgba(255, 255, 255, 0.012);
  content: "";
}

.hero-texture,
.closing-texture {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(16, 27, 43, 0.81), rgba(16, 27, 43, 0.94)), url("./assets/writing-room-texture.png");
  background-position: center;
  background-size: cover;
  opacity: 0.42;
  mix-blend-mode: screen;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: clamp(48px, 6vw, 90px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #f6ad7e;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  flex: 0 0 30px;
  width: 30px;
  height: 2px;
  background: currentColor;
}

.eyebrow-dark {
  color: var(--orange-dark);
}

.hero-lede {
  max-width: 690px;
  margin-bottom: 33px;
  color: #d7e0e9;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 15px 24px;
  border: 2px solid transparent;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(255, 107, 33, 0.24);
  color: #1c1009;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ff7c3d;
  box-shadow: 0 18px 36px rgba(255, 107, 33, 0.34);
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--ink-pale);
  box-shadow: 0 14px 28px rgba(16, 27, 43, 0.2);
}

.button-wide {
  width: 100%;
}

.text-link {
  color: #f0f3f6;
  font-size: 0.88rem;
  font-weight: 700;
  text-underline-offset: 5px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 25px;
  padding: 0;
  margin: 28px 0 0;
  color: #bcc9d5;
  font-size: 0.78rem;
  list-style: none;
}

.hero-notes span {
  margin-right: 4px;
  color: var(--orange);
  font-weight: 900;
}

.hero-visual {
  position: relative;
  padding: 24px 0 55px 28px;
}

.hero-visual::before {
  position: absolute;
  top: 0;
  right: 22px;
  bottom: 28px;
  left: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  content: "";
}

.image-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 32px 70px rgba(1, 8, 18, 0.48);
}

.image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 12, 22, 0.28));
  content: "";
}

.image-frame img {
  width: 100%;
  min-height: 410px;
  object-fit: cover;
}

.session-card {
  position: absolute;
  right: -22px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  min-width: 230px;
  align-items: center;
  gap: 13px;
  padding: 16px 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.session-card strong,
.session-card span {
  display: block;
}

.session-card strong {
  font-size: 0.88rem;
}

.session-card span {
  color: var(--muted);
  font-size: 0.75rem;
}

.live-dot {
  width: 13px;
  height: 13px;
  border: 3px solid #ffd1bd;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 107, 33, 0.13);
}

.margin-note {
  position: absolute;
  bottom: 105px;
  left: -52px;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--serif);
  font-size: 0.81rem;
  font-style: italic;
  line-height: 1.45;
  transform: rotate(-6deg);
}

.margin-note strong {
  color: var(--orange);
}

.proof-ribbon {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid #e7e1d6;
  background: var(--cream);
}

.proof-grid {
  display: grid;
  min-height: 138px;
  align-items: stretch;
  grid-template-columns: 0.76fr repeat(3, 1fr);
}

.proof-grid > * {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 27px 28px;
  margin: 0;
  border-left: 1px solid #dcd5c9;
}

.proof-grid > *:last-child {
  border-right: 1px solid #dcd5c9;
}

.proof-label {
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.proof-grid blockquote strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.25;
}

.proof-grid blockquote span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.manifesto {
  background: var(--paper);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 65px;
}

.section-kicker {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding-top: 11px;
}

.section-kicker span {
  color: var(--orange-dark);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
}

.section-kicker p {
  margin: 0;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.manifesto-copy h2 {
  max-width: 890px;
  margin-bottom: 35px;
  color: var(--ink);
}

.display-copy {
  max-width: 970px;
  margin-bottom: 50px;
  color: #39434e;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.25vw, 2.35rem);
  line-height: 1.4;
}

.two-col-copy {
  display: grid;
  max-width: 930px;
  grid-template-columns: repeat(2, 1fr);
  gap: 55px;
  color: var(--muted);
}

.how {
  background: var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.7fr;
  gap: 70px;
  margin-bottom: 66px;
}

.section-heading .eyebrow {
  align-self: start;
  padding-top: 14px;
}

.section-heading h2 {
  max-width: 850px;
  margin: 0;
  color: var(--ink);
}

.session-timeline {
  position: relative;
  max-width: 900px;
  margin-left: auto;
}

.session-timeline::before {
  position: absolute;
  top: 38px;
  bottom: 42px;
  left: 146px;
  width: 2px;
  background: #ccc4b7;
  content: "";
}

.timeline-step {
  position: relative;
  display: grid;
  min-height: 145px;
  grid-template-columns: 105px 56px 1fr;
  gap: 24px;
}

.step-time {
  padding-top: 13px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  text-align: right;
}

.step-marker {
  position: relative;
  z-index: 2;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 2px solid var(--orange);
  border-radius: 50%;
  background: var(--cream);
  color: var(--orange-dark);
  font-weight: 900;
}

.timeline-step h3 {
  color: var(--ink);
  font-size: 1.55rem;
}

.timeline-step p {
  max-width: 630px;
  color: var(--muted);
}

.timeline-note {
  max-width: 750px;
  padding: 23px 26px;
  margin: 14px 0 0 auto;
  border-left: 4px solid var(--orange);
  background: var(--paper);
  color: var(--muted);
}

.timeline-note strong {
  color: var(--ink);
}

.shift {
  background: var(--paper);
}

.shift-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(65px, 9vw, 130px);
}

.shift-image {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.shift-image::after {
  position: absolute;
  inset: 0;
  background: rgba(16, 27, 43, 0.56);
  content: "";
}

.shift-image img {
  width: 100%;
  height: 610px;
  object-fit: cover;
}

.shift-quote {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 78%;
  color: var(--white);
  text-align: center;
  transform: translate(-50%, -50%);
}

.shift-quote > span {
  display: block;
  height: 55px;
  color: var(--orange);
  font-family: var(--serif);
  font-size: 7rem;
  line-height: 1;
}

.shift-quote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-style: italic;
  line-height: 1.12;
}

.shift-copy h2 {
  color: var(--ink);
}

.shift-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.editorial-list {
  padding: 0;
  margin: 38px 0 0;
  list-style: none;
}

.editorial-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  color: #38434e;
}

.editorial-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.editorial-list span {
  color: var(--orange-dark);
  font-family: var(--serif);
  font-size: 0.85rem;
  font-style: italic;
}

.stories {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.section-heading-light h2 {
  color: var(--white);
}

.story-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.story {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(34px, 5vw, 62px);
  margin: 0;
  background: var(--ink-soft);
}

.story::before {
  position: absolute;
  top: 25px;
  right: 32px;
  color: rgba(255, 107, 33, 0.4);
  content: "“";
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
}

.story-feature {
  grid-column: span 2;
  min-height: 390px;
  background: var(--orange);
  color: #160d08;
}

.story-feature::before {
  color: rgba(22, 13, 8, 0.2);
}

.story p {
  position: relative;
  z-index: 1;
  max-width: 770px;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.65rem);
  line-height: 1.35;
}

.story-feature p {
  max-width: 950px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.18;
}

.story footer {
  display: flex;
  flex-direction: column;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.story footer span {
  color: #a9b5c1;
}

.story-feature footer span {
  color: rgba(22, 13, 8, 0.62);
}

.results-note {
  margin: 22px 0 0;
  color: #8594a2;
  font-size: 0.73rem;
  text-align: right;
}

.inside {
  background: var(--cream);
}

.inside-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(65px, 9vw, 135px);
}

.inside-intro {
  position: sticky;
  top: 125px;
}

.inline-kicker {
  margin-bottom: 24px;
  padding: 0;
}

.inside-intro h2 {
  color: var(--ink);
  font-size: clamp(2.6rem, 4vw, 4.5rem);
}

.inside-intro > p {
  margin-bottom: 33px;
  color: var(--muted);
}

.feature-list {
  border-top: 1px solid #cfc7ba;
}

.feature {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 23px;
  padding: 33px 0;
  border-bottom: 1px solid #cfc7ba;
}

.feature-number {
  color: var(--orange-dark);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.feature h3 {
  color: var(--ink);
  font-size: 1.55rem;
}

.feature p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
}

.fit {
  overflow: hidden;
  background: var(--paper);
}

.fit-header {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 60px;
  align-items: start;
}

.fit-header h2 {
  color: var(--ink);
}

.project-marquee {
  display: flex;
  width: max-content;
  gap: 22px;
  margin: 45px 0 80px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.4rem);
  font-style: italic;
  white-space: nowrap;
  transform: translateX(-4vw);
}

.project-marquee span:not(:last-child)::after {
  margin-left: 22px;
  color: var(--orange);
  content: "✦";
  font-family: var(--body);
  font-size: 0.38em;
  font-style: normal;
  vertical-align: middle;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.fit-grid > div {
  padding: clamp(32px, 5vw, 58px);
  background: var(--paper);
}

.fit-grid h3 {
  color: var(--ink);
  font-size: 1.65rem;
}

.fit-grid ul {
  padding: 0;
  margin: 25px 0 0;
  color: var(--muted);
  list-style: none;
}

.fit-grid li {
  position: relative;
  padding: 13px 0 13px 27px;
  border-top: 1px solid #ebe6dc;
}

.fit-grid li::before {
  position: absolute;
  top: 13px;
  left: 0;
  color: var(--orange-dark);
  content: "→";
  font-weight: 900;
}

.founder {
  background: var(--ink-soft);
  color: var(--white);
}

.founder-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(70px, 10vw, 145px);
}

.founder-photo {
  position: relative;
  padding: 19px 19px 0 0;
}

.founder-photo::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 19px;
  left: 19px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  content: "";
}

.founder-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
}

.founder-copy h2 {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.6vw, 5rem);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
}

.founder-copy > p:not(.eyebrow):not(.signature):not(.signature-title) {
  color: #cbd6df;
}

.signature {
  margin: 30px 0 0;
  color: var(--orange);
  font-family: var(--serif);
  font-size: 2.1rem;
  font-style: italic;
}

.signature-title {
  color: #8192a2;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trial {
  background: var(--orange);
  color: #1d1009;
}

.trial-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(330px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(60px, 9vw, 140px);
}

.trial-ticket {
  position: relative;
}

.trial-ticket::before,
.trial-ticket::after {
  position: absolute;
  z-index: 0;
  width: 85%;
  aspect-ratio: 1;
  border: 1px solid rgba(29, 16, 9, 0.22);
  border-radius: 50%;
  content: "";
}

.trial-ticket::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.trial-ticket::after {
  top: 50%;
  left: 50%;
  width: 110%;
  transform: translate(-50%, -50%);
}

.trial-ticket img {
  position: relative;
  z-index: 1;
  width: 100%;
  filter: drop-shadow(0 26px 30px rgba(80, 28, 3, 0.3));
  transform: rotate(-4deg);
}

.trial-copy .eyebrow {
  color: #5d260d;
}

.trial-copy h2 {
  color: #1d1009;
  font-size: clamp(2.5rem, 4.1vw, 4.6rem);
}

.trial-copy > p:not(.eyebrow):not(.fine-print) {
  max-width: 710px;
  color: #5c280f;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 17px;
  margin: 27px 0 15px;
}

.price-line strong {
  font-size: clamp(3.8rem, 7vw, 7rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.price-line span {
  max-width: 120px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.trial-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding: 0;
  margin: 25px 0;
  font-size: 0.82rem;
  font-weight: 800;
  list-style: none;
}

.trial-details li::before {
  margin-right: 7px;
  content: "✓";
}

.trial .button-primary {
  background: var(--ink);
  box-shadow: 0 16px 32px rgba(68, 23, 2, 0.22);
  color: var(--white);
}

.trial .button-primary:hover,
.trial .button-primary:focus-visible {
  background: var(--ink-pale);
}

.fine-print {
  margin: 12px 0 0;
  color: rgba(29, 16, 9, 0.63);
  font-size: 0.72rem;
  text-align: center;
}

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(65px, 9vw, 130px);
}

.faq-heading {
  position: sticky;
  top: 125px;
}

.faq-heading h2 {
  color: var(--ink);
  font-size: clamp(2.6rem, 4.2vw, 4.7rem);
}

.faq-heading > p {
  color: var(--muted);
}

.faq-heading a {
  color: var(--orange-dark);
  font-weight: 700;
  text-underline-offset: 4px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 28px 55px 28px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before,
summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 18px;
  height: 2px;
  background: var(--orange-dark);
  content: "";
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

summary::after {
  transform: translateY(-50%) rotate(90deg);
}

details[open] summary::after {
  transform: translateY(-50%) rotate(0);
}

details p {
  max-width: 680px;
  padding: 0 40px 25px 0;
  margin: 0;
  color: var(--muted);
}

.closing {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.closing-texture {
  opacity: 0.32;
}

.closing-inner {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 940px;
  flex-direction: column;
  align-items: center;
}

.closing h2 {
  color: var(--white);
}

.closing > .shell > p:not(.eyebrow) {
  color: #c7d1db;
  font-size: 1.16rem;
}

.closing .button {
  margin-top: 20px;
}

.closing-note {
  margin-top: 17px;
  color: #91a0ae;
  font-size: 0.77rem;
}

.site-footer {
  padding: 65px 0 26px;
  background: #09121f;
  color: #8e9eac;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  gap: 45px;
  align-items: start;
}

.footer-mark {
  color: var(--white);
}

.footer-grid > p {
  max-width: 390px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 30px;
  justify-content: end;
}

.footer-links a {
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 26px;
  margin-top: 52px;
  border-top: 1px solid #1c2a3b;
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1000px) {
  :root {
    --shell: min(100% - 40px, 860px);
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 0.76rem;
  }

  .hero {
    padding-top: 160px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-visual {
    width: min(700px, 92%);
    margin-left: auto;
  }

  .proof-grid {
    grid-template-columns: 0.7fr repeat(3, 1fr);
  }

  .proof-grid > * {
    padding-inline: 18px;
  }

  .manifesto-grid,
  .inside-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .section-kicker {
    margin-bottom: 15px;
  }

  .inside-intro,
  .faq-heading {
    position: static;
  }

  .inside-intro {
    max-width: 720px;
  }

  .shift-grid,
  .founder-grid,
  .trial-grid {
    gap: 60px;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: min(100% - 30px, 640px);
  }

  body {
    padding-bottom: 72px;
    font-size: 16px;
  }

  .offer-bar {
    min-height: 42px;
    padding-inline: 12px;
    text-align: center;
  }

  .offer-bar a {
    display: none;
  }

  .site-header {
    top: 42px;
  }

  .site-header.is-stuck {
    top: 0;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .menu-button {
    position: relative;
    z-index: 3;
    display: block;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 90px 35px;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    font-size: 1.35rem;
  }

  .site-nav .nav-cta {
    margin-top: 12px;
  }

  .hero {
    min-height: auto;
    padding: 137px 0 90px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.45rem, 11vw, 4.4rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-notes {
    flex-direction: column;
    gap: 8px;
  }

  .hero-visual {
    width: 100%;
    padding-left: 12px;
    margin-top: 15px;
  }

  .image-frame img {
    min-height: 300px;
  }

  .margin-note {
    display: none;
  }

  .session-card {
    right: -5px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid > * {
    min-height: 105px;
    border-right: 1px solid #dcd5c9;
    border-bottom: 1px solid #dcd5c9;
  }

  .proof-label {
    min-height: 76px;
  }

  .manifesto-grid,
  .section-heading,
  .shift-grid,
  .inside-grid,
  .fit-header,
  .founder-grid,
  .trial-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-grid,
  .section-heading {
    gap: 25px;
  }

  .two-col-copy,
  .fit-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .section-heading .eyebrow {
    padding-top: 0;
  }

  .session-timeline::before {
    left: 27px;
  }

  .timeline-step {
    min-height: 175px;
    grid-template-columns: 56px 1fr;
    gap: 19px;
  }

  .step-time {
    position: absolute;
    top: 59px;
    left: -2px;
    width: 60px;
    font-size: 0.72rem;
    text-align: center;
  }

  .step-marker {
    grid-column: 1;
  }

  .timeline-step > div:last-child {
    grid-column: 2;
    grid-row: 1;
  }

  .timeline-note {
    margin-left: 0;
  }

  .shift-grid,
  .founder-grid,
  .trial-grid {
    gap: 50px;
  }

  .shift-image,
  .shift-image img {
    min-height: 460px;
    height: 460px;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .story,
  .story-feature {
    grid-column: span 1;
    min-height: 300px;
  }

  .story-feature p {
    font-size: clamp(1.85rem, 8vw, 3rem);
  }

  .project-marquee {
    margin-bottom: 55px;
  }

  .founder-photo {
    width: min(100%, 460px);
  }

  .trial-ticket {
    width: min(95%, 520px);
    margin-inline: auto;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-links {
    justify-content: start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    background: var(--ink);
    box-shadow: 0 -8px 30px rgba(4, 10, 18, 0.22);
    color: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mobile-cta > span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }

  .mobile-cta strong {
    font-size: 0.9rem;
  }

  .mobile-cta small {
    color: #9eadba;
    font-size: 0.68rem;
  }

  .mobile-cta a {
    padding: 12px 15px;
    background: var(--orange);
    color: #1c1009;
    font-size: 0.78rem;
    font-weight: 900;
    text-decoration: none;
  }
}

@media (max-width: 430px) {
  .wordmark {
    font-size: 0.76rem;
  }

  .broken-link {
    width: 31px;
    height: 31px;
  }

  .button {
    width: 100%;
  }

  .session-card {
    min-width: 205px;
  }

  .feature {
    grid-template-columns: 42px 1fr;
  }

  .fit-grid > div,
  .story {
    padding: 30px 25px;
  }

  .mobile-cta > span {
    display: none;
  }

  .mobile-cta a {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
