@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Prata";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/prata-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Prata";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/prata-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --paper: #f5f5f2;
  --paper-2: #fff1c4;
  --cream: #fff1c4;
  --ink: #0d1f3d;
  --forest: #0d1f3d;
  --forest-2: #e63946;
  --sage: #0d1f3d;
  --sage-pale: #fff1c4;
  --clay: #e63946;
  --clay-light: #ffc107;
  --gold: #ffc107;
  --line: rgba(13, 31, 61, 0.15);
  --serif: "Prata", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-xl: 44px;
  --radius-lg: 28px;
  --shadow: 0 30px 80px rgba(13, 31, 61, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

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

.shell {
  width: min(1220px, calc(100% - 64px));
  margin-inline: auto;
}

.section {
  padding: 130px 0;
}

.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: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-150%);
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--forest);
  color: white;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.site-header.is-scrolled {
  background: rgba(245, 245, 242, 0.9);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 30px rgba(13, 31, 61, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1;
  white-space: nowrap;
}

.brand i {
  color: var(--clay);
  font-style: normal;
}

.brand-mark {
  width: 34px;
  height: 34px;
  color: var(--clay);
}

.brand-mark circle {
  fill: currentColor;
  stroke: none;
}

.brand-mark path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 45px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--clay);
  transition: right 200ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 29px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  background: var(--forest);
  color: #f5f5f2;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.025em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  box-shadow: 0 14px 28px rgba(230, 57, 70, 0.2);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.button-small {
  min-height: 43px;
  padding-inline: 22px;
}

.header-cta {
  margin-left: 8px;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 880px;
  padding: 168px 0 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(245, 245, 242, 0.96) 0%, rgba(245, 245, 242, 0.82) 45%, rgba(245, 245, 242, 0) 74%),
    var(--paper);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  width: 440px;
  height: 440px;
  left: -240px;
  top: 210px;
  background: rgba(255, 193, 7, 0.22);
}

.hero-glow-two {
  width: 380px;
  height: 380px;
  right: -120px;
  top: 65px;
  background: rgba(230, 57, 70, 0.16);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
}

.hero-copy {
  padding-bottom: 62px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  color: var(--clay);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 1px;
  background: currentColor;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  max-width: 690px;
  margin-bottom: 28px;
  font-size: clamp(48px, 5vw, 72px);
}

h1 em,
h2 em {
  color: var(--clay);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(13, 31, 61, 0.75);
  font-size: 16px;
  line-height: 1.75;
}

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

.text-link,
.light-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--ink);
  padding: 9px 0 7px;
  font-size: 13px;
  font-weight: 700;
}

.text-link span,
.light-link span {
  color: var(--clay);
  font-size: 18px;
}

.hero-visual {
  position: relative;
  min-height: 603px;
}

.photo-frame {
  position: absolute;
  inset: 0 0 0 45px;
  overflow: hidden;
  border-radius: 48% 48% 34px 34px / 31% 31% 34px 34px;
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at 60% 30%, rgba(255,255,255,.7), transparent 35%),
    linear-gradient(145deg, #fff1c4, #ffc107);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}

.photo-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245, 245, 242, 0.02), rgba(13, 31, 61, 0.18));
  pointer-events: none;
}

.orbit-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 19px;
  background: rgba(245, 245, 242, 0.9);
  box-shadow: 0 22px 50px rgba(13, 31, 61, 0.18);
  color: rgba(13, 31, 61, 0.72);
  font-size: 11px;
  line-height: 1.5;
  backdrop-filter: blur(14px);
}

.orbit-note b {
  color: var(--ink);
  font-weight: 700;
}

.orbit-note-top {
  top: 76px;
  left: 0;
  padding: 16px 20px;
}

.orbit-note-bottom {
  right: -23px;
  bottom: 70px;
  padding: 15px 20px 15px 15px;
}

.orbit-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--clay-light);
  color: var(--forest);
  font-size: 14px;
}

.orbit-note svg {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sage-pale);
  fill: none;
  padding: 8px;
  stroke: var(--forest);
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.trust-strip {
  position: relative;
  z-index: 4;
  min-height: 122px;
  display: flex;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
}

.trust-strip > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-strip strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.trust-strip div span {
  color: rgba(13, 31, 61, 0.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.trust-strip > i {
  width: 1px;
  height: 35px;
  background: var(--line);
}

.trust-strip > p {
  margin: 0 0 0 auto;
  color: rgba(13, 31, 61, 0.52);
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}

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

.section-intro {
  max-width: 900px;
  margin: 0 auto 74px;
}

.centered {
  text-align: center;
}

.eyebrow-centered {
  justify-content: center;
}

.section-intro h2,
.journey-heading h2,
.difference-heading h2,
.fit-copy h2,
.author-copy h2,
.join-card h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 5vw, 65px);
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.soft-card {
  position: relative;
  min-height: 355px;
  padding: 52px 42px 39px;
  overflow: hidden;
  border: 1px solid rgba(13, 31, 61, 0.11);
  border-radius: var(--radius-lg);
  background: #fff1c4;
  transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.soft-card:nth-child(2) {
  background: #f5f5f2;
}

.soft-card:nth-child(3) {
  background: rgba(230, 57, 70, 0.08);
}

.soft-card:hover {
  transform: translateY(-7px);
  border-color: rgba(13, 31, 61, 0.2);
  box-shadow: 0 24px 50px rgba(13, 31, 61, 0.1);
}

.soft-card > svg {
  width: 56px;
  height: 56px;
  margin-bottom: 42px;
  fill: none;
  stroke: var(--forest);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.card-number {
  position: absolute;
  top: 24px;
  right: 27px;
  color: rgba(13, 31, 61, 0.36);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.soft-card h3,
.format-feature h3,
.format-item h3 {
  margin-bottom: 13px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.25;
}

.soft-card p,
.format-feature p,
.format-item p {
  margin-bottom: 0;
  color: rgba(13, 31, 61, 0.69);
  font-size: 13px;
  line-height: 1.75;
}

.compassion-note {
  max-width: 790px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 55px auto 0;
}

.compassion-note p {
  margin: 0;
  color: rgba(13, 31, 61, 0.76);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
}

.compassion-note strong {
  color: var(--ink);
  font-weight: 400;
}

.mini-sun {
  flex: 0 0 auto;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(230, 57, 70, 0.38);
  border-radius: 50%;
  color: var(--clay);
}

.from-you,
.author {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  color: #f5f5f2;
}

.from-you::before,
.author::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255,255,255,.045);
  border-radius: 50%;
  right: -210px;
  bottom: -330px;
  box-shadow: 0 0 0 90px rgba(255,255,255,.018), 0 0 0 180px rgba(255,255,255,.014);
}

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

.from-you-visual {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.light-rings {
  position: relative;
  width: 305px;
  height: 305px;
  margin-bottom: 42px;
}

.light-rings span {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.light-rings span:nth-child(1) { width: 70px; height: 70px; background: rgba(255,193,7,.1); }
.light-rings span:nth-child(2) { width: 125px; height: 125px; }
.light-rings span:nth-child(3) { width: 205px; height: 205px; }
.light-rings span:nth-child(4) { width: 300px; height: 300px; }

.light-rings i {
  position: absolute;
  inset: 50% auto auto 50%;
  color: var(--gold);
  font-size: 31px;
  font-style: normal;
  transform: translate(-50%, -50%);
  text-shadow: 0 0 40px rgba(255, 193, 7, 0.72);
}

.from-you-visual blockquote {
  max-width: 400px;
  margin: 0;
  color: rgba(245, 245, 242, 0.62);
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  line-height: 1.75;
  text-align: center;
}

.eyebrow-light {
  color: var(--gold);
}

.from-you-copy h2 {
  margin-bottom: 33px;
  font-size: clamp(41px, 4.5vw, 66px);
}

.from-you-copy h2 em,
.author-copy h2 em,
.join-card h2 em {
  color: var(--gold);
}

.from-you-copy > p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(245, 245, 242, 0.68);
  font-size: 14px;
  line-height: 1.8;
}

.light-link {
  margin-top: 20px;
  border-color: rgba(245,245,242,.4);
  color: #f5f5f2;
}

.light-link span {
  color: var(--gold);
}

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

.journey-heading {
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 78px;
}

.journey-heading > p {
  max-width: 430px;
  margin: 0 0 8px auto;
  color: rgba(13, 31, 61, 0.66);
  font-size: 14px;
}

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

.journey-item {
  border-bottom: 1px solid var(--line);
}

.journey-trigger {
  width: 100%;
  min-height: 87px;
  display: grid;
  grid-template-columns: 60px 1fr auto 36px;
  gap: 18px;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.journey-trigger:hover .step-title,
.journey-trigger:focus-visible .step-title {
  color: var(--clay);
}

.step-number {
  color: var(--clay);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.step-title {
  font-family: var(--serif);
  font-size: clamp(18px, 2.1vw, 25px);
  transition: color 180ms ease;
}

.step-tag {
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: rgba(13, 31, 61, 0.52);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.step-plus {
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.step-plus::before,
.step-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 200ms ease;
}

.step-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.journey-item.is-open .step-plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.journey-item.is-open .step-plus {
  background: var(--clay);
  border-color: var(--clay);
}

.journey-item.is-open .step-plus::before,
.journey-item.is-open .step-plus::after {
  background: white;
}

.journey-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.journey-panel p {
  max-width: 650px;
  margin: 0 0 0 78px;
  overflow: hidden;
  color: rgba(13, 31, 61, 0.67);
  font-size: 14px;
  opacity: 0;
  transition: margin 260ms ease, opacity 200ms ease;
}

.journey-item.is-open .journey-panel {
  grid-template-rows: 1fr;
}

.journey-item.is-open .journey-panel p {
  margin-bottom: 30px;
  opacity: 1;
}

.results {
  padding-top: 0;
  background: var(--paper);
}

.results-wrap {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 75px;
  border-radius: var(--radius-xl);
  background: #fff1c4;
  padding: 76px 82px;
}

.results-quote {
  align-self: start;
}

.quote-mark {
  display: block;
  height: 46px;
  color: var(--clay);
  font-family: var(--serif);
  font-size: 82px;
  line-height: 1;
}

.results-quote p {
  margin: 26px 0 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 59px);
  line-height: 1.2;
}

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

.result-row {
  min-height: 76px;
  display: grid;
  grid-template-columns: 43px 1fr 20px;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.result-row > span {
  color: rgba(13,31,61,.4);
  font-size: 10px;
  font-weight: 700;
}

.result-row p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.result-row i {
  color: var(--clay);
  font-size: 12px;
  font-style: normal;
}

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

.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: stretch;
}

.format-feature {
  min-height: 590px;
  display: grid;
  grid-template-rows: 1fr auto;
  border-radius: var(--radius-lg);
  background: #fff1c4;
  padding: 60px;
}

.workbook-stack {
  position: relative;
  min-height: 320px;
  perspective: 1200px;
}

.book {
  position: absolute;
  width: 190px;
  height: 258px;
  left: 50%;
  top: 45%;
  border-radius: 5px 12px 12px 5px;
}

.book-back {
  background: var(--clay-light);
  box-shadow: 0 30px 50px rgba(13, 31, 61, 0.15);
  transform: translate(-22%, -47%) rotate(11deg);
}

.book-front {
  display: flex;
  flex-direction: column;
  padding: 25px 23px;
  background: var(--forest);
  box-shadow: -9px 12px 0 #e63946, 0 28px 50px rgba(13,31,61,.24);
  color: white;
  transform: translate(-70%, -52%) rotate(-8deg);
}

.book-front::before {
  content: "✦";
  position: absolute;
  top: 95px;
  right: 25px;
  color: var(--gold);
}

.book-front span {
  color: var(--gold);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.book-front strong {
  margin-top: 45px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.15;
}

.book-front i {
  margin-top: auto;
  color: rgba(255,255,255,.6);
  font-family: var(--serif);
  font-size: 9px;
  font-style: normal;
}

.mini-label {
  margin-bottom: 9px !important;
  color: var(--clay) !important;
  font-size: 9px !important;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.format-feature h3 {
  font-size: 31px;
}

.format-items {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.format-item {
  flex: 1;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 25px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 28px 7px;
}

.format-item > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--clay);
  font-size: 9px;
  font-weight: 700;
}

.format-item h3 {
  margin-bottom: 5px;
  font-size: 20px;
}

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

.difference-heading {
  margin-bottom: 60px;
}

.compare {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(245,245,242,.68);
}

.compare-head,
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.compare-head {
  background: var(--forest);
  color: white;
}

.compare-head span {
  padding: 24px 40px;
  font-family: var(--serif);
  font-size: 18px;
}

.compare-head span + span {
  border-left: 1px solid rgba(255,255,255,.16);
  background: var(--forest-2);
  color: #fff1c4;
}

.compare-head i {
  margin-right: 8px;
  color: var(--gold);
  font-style: normal;
}

.compare-row span {
  padding: 22px 40px;
  border-top: 1px solid var(--line);
  color: rgba(13, 31, 61, 0.58);
  font-size: 13px;
}

.compare-row span + span {
  border-left: 1px solid var(--line);
  background: rgba(255, 241, 196, 0.42);
  color: var(--ink);
  font-weight: 700;
}

.author {
  background: #0d1f3d;
}

.author-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(70px, 10vw, 145px);
  align-items: center;
}

.author-art {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
}

.author-orb {
  position: relative;
  width: min(460px, 100%);
  aspect-ratio: 1 / 1.18;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 49% 49% 40px 40px / 35% 35% 40px 40px;
  background:
    radial-gradient(circle at 54% 45%, rgba(255,193,7,.5) 0, rgba(255,193,7,.12) 13%, transparent 31%),
    radial-gradient(circle at 50% 49%, #e63946 0, #0d1f3d 43%, #0d1f3d 71%);
  box-shadow: inset 0 0 80px rgba(8,22,55,.42), 0 35px 70px rgba(8, 18, 47, .3);
}

.author-orb::before,
.author-orb::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,193,7,.24);
  border-radius: 50%;
}

.author-orb::before { width: 250px; height: 250px; left: 50%; top: 23%; transform: translateX(-50%); }
.author-orb::after { width: 380px; height: 380px; left: 50%; top: 10%; transform: translateX(-50%); }

.author-light {
  position: absolute;
  left: 50%;
  top: 42%;
  color: #ffc107;
  font-size: 43px;
  transform: translate(-50%, -50%);
  text-shadow: 0 0 20px rgba(255,193,7,.72), 0 0 50px rgba(255,193,7,.52);
}

.author-line {
  position: absolute;
  left: 50%;
  bottom: -10%;
  width: 80%;
  height: 52%;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%);
}

.line-two { width: 62%; height: 46%; bottom: -5%; }
.line-three { width: 46%; height: 40%; bottom: 0; }

.credential-float {
  position: absolute;
  right: -10px;
  bottom: 85px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 17px;
  padding: 16px 20px;
  background: rgba(245,245,242,.94);
  color: var(--ink);
  box-shadow: 0 24px 50px rgba(13,31,61,.28);
}

.credential-float strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.credential-float span {
  color: rgba(13,31,61,.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.author-copy h2 {
  margin-bottom: 34px;
}

.author-lead {
  margin-bottom: 24px;
  color: #f5f5f2 !important;
  font-family: var(--serif);
  font-size: 18px !important;
  font-style: italic;
  line-height: 1.7 !important;
}

.author-copy > p:not(.eyebrow) {
  color: rgba(245,245,242,.62);
  font-size: 13px;
  line-height: 1.85;
}

.credential-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 37px;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 25px;
}

.credential-row span {
  position: relative;
  color: rgba(245,245,242,.76);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .09em;
  line-height: 1.5;
  text-transform: uppercase;
}

.credential-row span:not(:first-child) {
  border-left: 1px solid rgba(255,255,255,.13);
  padding-left: 23px;
}

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

.fit-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 95px;
  align-items: center;
}

.fit-list {
  display: grid;
  gap: 0;
  margin: 45px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.fit-list li {
  display: grid;
  grid-template-columns: 33px 1fr;
  gap: 15px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 19px 0;
  font-size: 13px;
  font-weight: 600;
}

.fit-list span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--forest);
  font-size: 11px;
}

.fit-note {
  position: relative;
  border-radius: 50% 50% 34px 34px / 28% 28% 34px 34px;
  background: #fff1c4;
  padding: 100px 72px 75px;
  text-align: center;
}

.fit-note::before {
  content: "";
  position: absolute;
  inset: 19px;
  border: 1px solid rgba(13,31,61,.11);
  border-radius: inherit;
}

.fit-star {
  position: relative;
  display: block;
  margin-bottom: 35px;
  color: var(--clay);
  font-size: 28px;
}

.fit-note p,
.fit-note strong {
  position: relative;
  display: block;
  font-family: var(--serif);
  font-weight: 400;
}

.fit-note p {
  margin-bottom: 20px;
  color: rgba(13,31,61,.6);
  font-size: 15px;
  font-style: italic;
}

.fit-note strong {
  font-size: clamp(20px, 2.1vw, 27px);
  line-height: 1.55;
}

.join {
  padding-top: 0;
  background: var(--cream);
}

.join-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--forest);
  color: #f5f5f2;
  padding: 95px 80px 70px;
  text-align: center;
}

.join-card > *:not(.join-light) {
  position: relative;
  z-index: 2;
}

.join-light {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.join-light-one {
  width: 500px;
  height: 500px;
  left: -330px;
  top: -200px;
  border: 1px solid rgba(255,193,7,.2);
  box-shadow: 0 0 0 80px rgba(255,193,7,.03), 0 0 0 160px rgba(255,193,7,.02);
}

.join-light-two {
  width: 380px;
  height: 380px;
  right: -230px;
  bottom: -200px;
  background: rgba(230,57,70,.14);
  box-shadow: 0 0 100px rgba(230,57,70,.12);
}

.join-star {
  display: block;
  margin-bottom: 23px;
  color: var(--gold);
  font-size: 26px;
  text-shadow: 0 0 25px rgba(255,193,7,.55);
}

.join-card .eyebrow {
  margin-bottom: 24px;
}

.join-card h2 {
  max-width: 850px;
  margin: 0 auto 25px;
}

.join-card > p:not(.eyebrow):not(.form-status) {
  max-width: 570px;
  margin: 0 auto 34px;
  color: rgba(245,245,242,.62);
  font-size: 13px;
}

.join-form {
  max-width: 850px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  margin: 0 auto;
}

.join-form label {
  position: relative;
}

.join-form label > span {
  position: absolute;
  top: 9px;
  left: 21px;
  color: rgba(245,245,242,.42);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.join-form input[type="text"] {
  width: 100%;
  height: 65px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 13px;
  outline: none;
  background: rgba(255,255,255,.07);
  color: white;
  padding: 21px 20px 6px;
  font-size: 12px;
  transition: border-color 150ms ease, background 150ms ease;
}

.join-form input[type="text"]::placeholder {
  color: rgba(245,245,242,.58);
}

.join-form input[type="text"]:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.1);
}

.join-form input[type="text"].is-invalid {
  border-color: #e63946;
}

.button-light {
  min-height: 65px;
  border-color: var(--gold);
  border-radius: 13px;
  background: var(--gold);
  color: var(--forest);
  white-space: nowrap;
}

.privacy-consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  margin-top: 5px;
  color: rgba(245,245,242,.62);
  font-size: 9px;
  line-height: 1.6;
  text-align: left;
}

.privacy-consent > span {
  position: static !important;
  color: inherit !important;
  font-size: inherit !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.privacy-consent input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--gold);
}

.privacy-consent input.is-invalid {
  outline: 2px solid #e63946;
  outline-offset: 2px;
}

.privacy-consent a,
.legal-link {
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 3px;
}

.join-card small {
  display: block;
  margin-top: 17px;
  color: rgba(245,245,242,.37);
  font-size: 8px;
}

.form-status {
  min-height: 20px;
  margin: 13px 0 -6px;
  color: #ffc107;
  font-size: 11px;
}

.privacy-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 8%, rgba(230, 57, 70, 0.16), transparent 27%),
    radial-gradient(circle at 7% 27%, rgba(255, 193, 7, 0.2), transparent 24%),
    var(--paper);
}

.privacy-page .site-header {
  background: rgba(245, 245, 242, 0.9);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}

.privacy-main {
  padding: 165px 0 120px;
}

.privacy-hero {
  max-width: 940px;
  margin-bottom: 66px;
}

.privacy-hero h1 {
  max-width: 900px;
  margin-bottom: 25px;
  font-size: clamp(48px, 7vw, 84px);
}

.privacy-hero > p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(13, 31, 61, 0.68);
  font-size: 16px;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(210px, .34fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.privacy-aside {
  position: sticky;
  top: 125px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.privacy-aside strong,
.privacy-aside span {
  display: block;
}

.privacy-aside strong {
  margin-bottom: 7px;
  color: var(--clay);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}

.privacy-aside span {
  color: rgba(13, 31, 61, 0.55);
  font-size: 11px;
  line-height: 1.7;
}

.privacy-aside a {
  display: inline-flex;
  margin-top: 24px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 700;
}

.privacy-content {
  overflow: hidden;
  border: 1px solid rgba(13, 31, 61, 0.11);
  border-radius: var(--radius-lg);
  background: rgba(245, 245, 242, 0.84);
  box-shadow: 0 30px 80px rgba(13, 31, 61, 0.1);
}

.privacy-summary {
  padding: 42px 48px;
  background: var(--forest);
  color: #f5f5f2;
}

.privacy-summary strong {
  display: block;
  margin-bottom: 9px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.privacy-summary p {
  max-width: 670px;
  margin: 0;
  color: rgba(245, 245, 242, 0.72);
  font-size: 13px;
}

.policy-section {
  padding: 42px 48px;
  border-top: 1px solid var(--line);
}

.policy-section h2 {
  margin-bottom: 20px;
  color: var(--forest);
  font-size: clamp(25px, 3vw, 34px);
  letter-spacing: -0.02em;
}

.policy-section p,
.policy-section li {
  color: rgba(13, 31, 61, 0.7);
  font-size: 13px;
  line-height: 1.85;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.policy-section strong {
  color: var(--ink);
}

.policy-note {
  margin-top: 24px;
  border-left: 3px solid var(--clay);
  border-radius: 0 14px 14px 0;
  background: #fff1c4;
  padding: 18px 21px;
}

.policy-note p {
  margin: 0;
  color: rgba(13, 31, 61, 0.75);
}

.privacy-back {
  min-height: 45px;
  padding-inline: 21px;
}

.footer-bottom a {
  transition: color 180ms ease;
}

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

.site-footer {
  background: #0d1f3d;
  color: white;
}

.footer-main {
  min-height: 190px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 60px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.brand-light i,
.brand-light .brand-mark {
  color: var(--gold);
}

.footer-main > p {
  max-width: 450px;
  margin: 0;
  color: rgba(255,255,255,.5);
  font-size: 11px;
}

.footer-up {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: var(--gold);
}

.footer-bottom {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 40px;
  color: rgba(255,255,255,.34);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.footer-bottom > :last-child {
  margin-left: auto;
}

.mobile-sticky-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
}

.reveal-mid { transition-delay: 100ms; }
.reveal-late { transition-delay: 180ms; }

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .shell { width: min(100% - 44px, 1040px); }
  .desktop-nav { gap: 20px; }
  .hero-grid { grid-template-columns: 1.03fr .97fr; gap: 36px; }
  .hero-visual { min-height: 550px; }
  .orbit-note-bottom { right: -6px; }
  .format-feature { padding: 45px; }
  .author-grid { gap: 70px; }
  .fit-grid { gap: 65px; }
}

@media (max-width: 920px) {
  .section { padding: 100px 0; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle {
    width: 46px;
    height: 46px;
    display: grid;
    align-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(245,245,242,.72);
    padding: 0 13px;
  }
  .menu-toggle > span:not(.sr-only) { height: 1px; background: var(--ink); transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    inset: 91px 0 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    visibility: hidden;
    background: var(--paper);
    padding: 36px 24px 90px;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }
  .mobile-menu.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .mobile-menu > a:not(.button) { border-bottom: 1px solid var(--line); padding: 21px 6px; font-family: var(--serif); font-size: 24px; }
  .mobile-menu .button { margin-top: 29px; }
  .hero { padding-top: 145px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 750px; padding-bottom: 10px; }
  h1 { max-width: 800px; }
  .hero-visual { min-height: 620px; max-width: 690px; width: 100%; margin: 0 auto; }
  .photo-frame { left: 30px; }
  .trust-strip { margin-top: 70px; }
  .recognition-grid { grid-template-columns: 1fr; }
  .soft-card { min-height: auto; display: grid; grid-template-columns: 70px 1fr; column-gap: 20px; padding: 38px; }
  .soft-card > svg { grid-row: 1 / 3; margin: 3px 0 0; }
  .soft-card h3 { margin-bottom: 7px; }
  .from-you-grid, .author-grid, .fit-grid { grid-template-columns: 1fr; }
  .from-you-visual { min-height: 420px; }
  .journey-heading { gap: 40px; }
  .results-wrap { grid-template-columns: 1fr; gap: 45px; padding: 62px 55px; }
  .format-grid { grid-template-columns: 1fr; }
  .format-feature { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; align-items: center; min-height: 480px; }
  .workbook-stack { min-height: 330px; }
  .author-art { min-height: 520px; }
  .author-orb { max-width: 430px; }
  .credential-float { right: 10%; }
  .fit-note { max-width: 650px; margin: 0 auto; }
  .join-form { grid-template-columns: 1fr 1fr; }
  .join-form .button { grid-column: 1 / -1; }
  .privacy-layout { grid-template-columns: 1fr; gap: 35px; }
  .privacy-aside { position: static; display: grid; grid-template-columns: 1fr auto; gap: 6px 20px; }
  .privacy-aside a { grid-column: 2; grid-row: 1 / 3; margin: 0; align-self: center; }
}

@media (max-width: 640px) {
  .shell { width: calc(100% - 36px); }
  .section { padding: 78px 0; }
  .header-inner { height: 76px; }
  .brand { font-size: 16px; }
  .brand-mark { width: 30px; height: 30px; }
  .mobile-menu { top: 75px; }
  .hero { min-height: 0; padding-top: 124px; }
  .eyebrow { margin-bottom: 20px; font-size: 9px; }
  h1 { font-size: clamp(39px, 11.2vw, 51px); }
  .hero-lead { font-size: 14px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .hero-actions .button { width: 100%; }
  .text-link { align-self: center; }
  .hero-visual { min-height: 450px; margin-top: 29px; }
  .photo-frame { inset: 0 0 0 12px; border-radius: 48% 48% 22px 22px / 28% 28% 22px 22px; }
  .orbit-note { font-size: 9px; }
  .orbit-note-top { top: 28px; left: -7px; padding: 12px; }
  .orbit-note-bottom { right: -4px; bottom: 28px; padding: 12px; }
  .trust-strip { min-height: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 44px; padding: 24px 0 34px; }
  .trust-strip > div { align-items: flex-start; flex-direction: column; gap: 7px; }
  .trust-strip > i { display: none; }
  .trust-strip > p { grid-column: 1 / -1; margin: 13px 0 0; text-align: center; }
  .trust-strip strong { font-size: 27px; }
  .section-intro { margin-bottom: 48px; }
  .section-intro h2, .journey-heading h2, .difference-heading h2, .fit-copy h2, .author-copy h2, .join-card h2 { font-size: 38px; }
  .soft-card { display: block; padding: 35px 30px; }
  .soft-card > svg { width: 46px; height: 46px; margin-bottom: 25px; }
  .compassion-note { align-items: flex-start; }
  .compassion-note p { font-size: 16px; }
  .mini-sun { width: 40px; height: 40px; }
  .from-you-visual { min-height: 370px; }
  .light-rings { width: 250px; height: 250px; margin-bottom: 25px; }
  .light-rings span:nth-child(4) { width: 245px; height: 245px; }
  .light-rings span:nth-child(3) { width: 175px; height: 175px; }
  .from-you-copy h2 { font-size: 38px; }
  .journey-heading { grid-template-columns: 1fr; gap: 25px; margin-bottom: 45px; }
  .journey-heading > p { margin: 0; }
  .journey-trigger { grid-template-columns: 32px 1fr 32px; gap: 10px; padding: 16px 0; }
  .step-tag { display: none; }
  .step-title { font-size: 17px; line-height: 1.35; }
  .step-plus { width: 32px; height: 32px; }
  .journey-panel p { margin-left: 42px; font-size: 12px; }
  .results-wrap { width: calc(100% - 20px); border-radius: 30px; padding: 46px 28px; }
  .result-row { grid-template-columns: 30px 1fr 15px; gap: 10px; }
  .format-feature { min-height: 620px; grid-template-columns: 1fr; grid-template-rows: 1fr auto; padding: 34px 28px; }
  .workbook-stack { min-height: 330px; }
  .book { width: 160px; height: 220px; }
  .book-front strong { margin-top: 35px; font-size: 22px; }
  .format-item { grid-template-columns: 43px 1fr; gap: 14px; }
  .compare { border-radius: 20px; }
  .compare-head span, .compare-row span { padding: 17px 14px; font-size: 11px; line-height: 1.45; }
  .compare-head span { font-size: 14px; }
  .author-art { min-height: 430px; }
  .author-orb { width: 95%; }
  .credential-float { right: -2px; bottom: 34px; }
  .credential-row { gap: 9px; }
  .credential-row span:not(:first-child) { padding-left: 10px; }
  .fit-note { border-radius: 48% 48% 26px 26px / 20% 20% 26px 26px; padding: 80px 38px 60px; }
  .join { padding-bottom: 0; }
  .join-card { width: 100%; border-radius: 32px 32px 0 0; padding: 68px 20px 70px; }
  .join-form { grid-template-columns: 1fr; }
  .join-form .button { grid-column: auto; white-space: normal; }
  .privacy-consent { justify-content: flex-start; padding-inline: 3px; }
  .privacy-main { padding: 126px 0 80px; }
  .privacy-hero { margin-bottom: 45px; }
  .privacy-hero h1 { font-size: 43px; }
  .privacy-hero > p:not(.eyebrow) { font-size: 14px; }
  .privacy-aside { grid-template-columns: 1fr; }
  .privacy-aside a { grid-column: auto; grid-row: auto; margin-top: 12px; }
  .privacy-summary, .policy-section { padding: 31px 25px; }
  .footer-main { grid-template-columns: 1fr auto; gap: 30px; padding: 45px 0; }
  .footer-main > p { grid-column: 1 / -1; grid-row: 2; }
  .footer-up { grid-column: 2; grid-row: 1; }
  .footer-bottom { min-height: 105px; align-items: flex-start; flex-direction: column; gap: 8px; padding: 25px 0 100px; }
  .footer-bottom > :last-child { margin-left: 0; }
  .mobile-sticky-cta { position: fixed; z-index: 90; left: 0; right: 0; bottom: 0; display: block; padding: 9px 12px calc(9px + env(safe-area-inset-bottom)); background: rgba(245,245,242,.92); border-top: 1px solid var(--line); backdrop-filter: blur(14px); }
  .mobile-sticky-cta .button { width: 100%; min-height: 49px; }
}

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

/* Content architecture — July 2026 revision */
.hero-copy {
  align-self: center;
}

.hero-assurance {
  margin: -12px 0 28px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 19px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pain-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid rgba(13, 31, 61, 0.11);
  border-radius: var(--radius-lg);
  background: #fff1c4;
  padding: 64px 39px 42px;
  transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.pain-card:nth-child(2) {
  background: #f5f5f2;
}

.pain-card:nth-child(3) {
  background: rgba(230, 57, 70, 0.08);
}

.pain-card:hover {
  transform: translateY(-7px);
  border-color: rgba(13, 31, 61, 0.2);
  box-shadow: 0 24px 50px rgba(13, 31, 61, 0.1);
}

.pain-card h3 {
  margin: 0 0 28px;
  padding-right: 20px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
}

.pain-card ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pain-card li {
  position: relative;
  border-top: 1px solid rgba(13, 31, 61, 0.12);
  padding: 18px 0 18px 22px;
  color: rgba(13, 31, 61, 0.7);
  font-size: 12px;
  line-height: 1.7;
}

.pain-card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 20px;
  color: var(--clay);
  font-size: 9px;
}

.return-lines {
  display: grid;
  margin: 31px 0 26px;
  border-top: 1px solid rgba(245, 245, 242, 0.15);
}

.return-lines span {
  border-bottom: 1px solid rgba(245, 245, 242, 0.15);
  padding: 15px 0;
  color: rgba(245, 245, 242, 0.72);
  font-size: 13px;
}

.results-note {
  display: block;
  max-width: 330px;
  margin-top: 28px;
  color: rgba(13, 31, 61, 0.63);
  font-size: 12px;
  line-height: 1.75;
}

.difference-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(65px, 9vw, 125px);
  align-items: start;
}

.difference-heading {
  position: sticky;
  top: 135px;
  margin: 0;
}

.difference-story {
  border-top: 1px solid var(--line);
}

.difference-story p {
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding: 27px 0;
  color: rgba(13, 31, 61, 0.66);
  font-size: 15px;
  line-height: 1.8;
}

.difference-story strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.foundation {
  position: relative;
  overflow: hidden;
  background: #f5f5f2;
}

.foundation::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -260px;
  right: -170px;
  border: 1px solid rgba(230, 57, 70, .15);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(230, 57, 70, .03), 0 0 0 160px rgba(230, 57, 70, .025);
}

.section-lead {
  max-width: 620px;
  margin: 24px auto 0;
  color: rgba(13, 31, 61, .65);
  font-size: 14px;
}

.foundation-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(245, 245, 242, .52);
}

.foundation-grid article {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 29px 32px;
}

.foundation-grid article:nth-child(3n) {
  border-right: 0;
}

.foundation-grid article:nth-child(n + 4) {
  border-bottom: 0;
}

.foundation-grid span {
  color: var(--clay);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
}

.foundation-grid p {
  margin: 35px 0 0;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.45;
}

.team {
  position: relative;
  overflow: hidden;
  background: #0d1f3d;
  color: #f5f5f2;
}

.team::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  right: -360px;
  top: -320px;
  border: 1px solid rgba(255, 193, 7, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 193, 7, .02), 0 0 0 180px rgba(255, 193, 7, .016);
}

.team-intro {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  column-gap: 85px;
  align-items: end;
  margin-bottom: 70px;
}

.team-intro .eyebrow {
  grid-column: 1 / -1;
}

.team-intro h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 65px);
}

.team-intro h2 em {
  color: var(--gold);
}

.team-intro > div p {
  margin: 0 0 13px;
  color: rgba(245, 245, 242, .63);
  font-size: 13px;
  line-height: 1.8;
}

.team-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.18fr .91fr .91fr;
  gap: 18px;
  align-items: stretch;
}

.team-card {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-lg);
  background: rgba(245, 245, 242, .055);
  padding: 34px;
}

.team-card-featured {
  background: rgba(230, 57, 70, .22);
}

.team-monogram {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid rgba(255, 193, 7, .42);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 16px;
}

.team-role {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.team-card h3 {
  margin: 0 0 25px;
  color: white;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.3;
}

.team-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
}

.team-card li {
  position: relative;
  padding-left: 17px;
  color: rgba(245, 245, 242, .67);
  font-size: 11px;
  line-height: 1.55;
}

.team-card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 7px;
}

.team-focus {
  margin: auto 0 0;
  border-top: 1px solid rgba(255, 255, 255, .13);
  padding-top: 22px;
  color: rgba(245, 245, 242, .63);
  font-size: 12px;
  line-height: 1.75;
}

.principle {
  padding-top: 0;
  background: var(--cream);
}

.principle-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff1c4;
  padding: 78px clamp(35px, 9vw, 120px);
  text-align: center;
}

.principle-card::before,
.principle-card::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(230, 57, 70, .12);
  border-radius: 50%;
}

.principle-card::before {
  left: -230px;
  top: -190px;
}

.principle-card::after {
  right: -230px;
  bottom: -190px;
}

.principle-star {
  color: var(--clay);
  font-size: 22px;
}

.principle-card h2 {
  margin: 17px 0 19px;
  font-size: clamp(38px, 5vw, 62px);
}

.principle-card p {
  position: relative;
  max-width: 770px;
  margin: 0 auto;
  color: rgba(13, 31, 61, .64);
  font-size: 14px;
  line-height: 1.8;
}

@media (max-width: 920px) {
  .pain-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .pain-card {
    min-height: 0;
  }

  .difference-layout,
  .team-intro {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .difference-heading {
    position: static;
  }

  .foundation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .foundation-grid article,
  .foundation-grid article:nth-child(3n),
  .foundation-grid article:nth-child(n + 4) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .foundation-grid article:nth-child(2n) {
    border-right: 0;
  }

  .foundation-grid article:nth-child(n + 5) {
    border-bottom: 0;
  }

  .team-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .hero-assurance {
    font-size: 17px;
  }

  .pain-card {
    padding: 54px 27px 29px;
  }

  .pain-card h3 {
    font-size: 22px;
  }

  .results-note {
    font-size: 11px;
  }

  .difference-story p {
    padding: 22px 0;
    font-size: 13px;
  }

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

  .foundation-grid article,
  .foundation-grid article:nth-child(2n),
  .foundation-grid article:nth-child(3n),
  .foundation-grid article:nth-child(n + 4),
  .foundation-grid article:nth-child(n + 5) {
    min-height: 135px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 25px;
  }

  .foundation-grid article:last-child {
    border-bottom: 0;
  }

  .foundation-grid p {
    margin-top: 26px;
    font-size: 17px;
  }

  .team-intro h2 {
    font-size: 38px;
  }

  .team-card {
    padding: 29px 26px;
  }

  .team-card h3 {
    font-size: 24px;
  }

  .principle-card {
    width: calc(100% - 20px);
    border-radius: 30px;
    padding: 58px 26px;
  }
}
