:root {
  --forest: #173b35;
  --sage: #dff0df;
  --sand: #eee7dc;
  --blue: #dce8f2;
}

.page-shell { background: var(--white); }
.page-header {
  position: relative;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 86px;
  max-width: 1420px;
  margin: 0 auto;
  padding: 15px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.96);
}
.page-header .desktop-nav a,
.page-header .nav-button { color: #3f4542; }
.page-header .nav-button img { filter: none; }
.page-header .menu-toggle { border-color: var(--line); background: #f3f2ee; }
.page-header .menu-toggle span { background: var(--ink); }
.page-header .mega-panel { top: calc(100% + 1px); }
.page-header .header-actions { display: flex; align-items: center; gap: 12px; }
.page-header .header-link { min-height: 48px; display: inline-flex; align-items: center; color: #3f4542; font-size: 13px; font-weight: 750; }

.inner-hero { position: relative; overflow: hidden; min-height: 690px; margin: 0 10px 10px; border-radius: 0 0 30px 30px; background: var(--paper); }
.inner-hero-grid { min-height: inherit; display: grid; grid-template-columns: 1.02fr .98fr; max-width: 1400px; margin: auto; }
.inner-hero-copy { align-self: center; padding: 95px 7vw 95px 5vw; }
.inner-hero-copy h1 { max-width: 830px; margin: 22px 0 0; font-size: clamp(52px, 6.4vw, 92px); font-weight: 500; letter-spacing: -.067em; line-height: .98; text-wrap: balance; }
.inner-hero:not(.hero-centered) .inner-hero-copy h1 { font-size: clamp(50px, 5.4vw, 78px); }
.inner-hero-copy > p:not(.kicker) { max-width: 680px; margin: 28px 0 0; color: var(--muted); font-size: clamp(18px, 1.7vw, 22px); line-height: 1.62; }
.inner-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 36px; }
.inner-hero-media { position: relative; min-height: 620px; margin: 18px; overflow: hidden; border-radius: 24px; background: #d6d4ce; }
.inner-hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.inner-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.62)); }
.hero-caption { position: absolute; z-index: 1; left: 30px; right: 30px; bottom: 30px; display: flex; justify-content: space-between; gap: 20px; align-items: end; color: white; }
.hero-caption strong { max-width: 450px; font-size: clamp(23px, 3vw, 38px); font-weight: 550; letter-spacing: -.045em; line-height: 1.08; }
.hero-caption span { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.inner-hero.theme-dark { background: var(--ink); color: white; }
.inner-hero.theme-dark .inner-hero-copy > p:not(.kicker) { color: rgba(255,255,255,.66); }
.inner-hero.theme-dark .kicker { color: #ff8b64; }
.inner-hero.theme-forest { background: var(--forest); color: white; }
.inner-hero.theme-forest .inner-hero-copy > p:not(.kicker) { color: rgba(255,255,255,.7); }
.inner-hero.theme-sand { background: var(--sand); }
.inner-hero.theme-blue { background: var(--blue); }
.inner-hero.hero-centered { min-height: 610px; }
.inner-hero.hero-centered .inner-hero-grid { display: block; }
.inner-hero.hero-centered .inner-hero-copy { max-width: 1050px; margin: auto; padding: 115px 34px; text-align: center; }
.inner-hero.hero-centered .inner-hero-copy h1,
.inner-hero.hero-centered .inner-hero-copy > p:not(.kicker) { margin-left: auto; margin-right: auto; }
.inner-hero.hero-centered .inner-hero-actions { justify-content: center; }

.page-proof { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1240px; margin: 0 auto; padding: 28px 34px 0; }
.page-proof article { padding: 24px 28px; border-left: 1px solid var(--line); }
.page-proof article:last-child { border-right: 1px solid var(--line); }
.page-proof strong { display: block; font-size: 18px; letter-spacing: -.025em; }
.page-proof p { margin: 8px 0 0; color: var(--muted); font-size: 13px; }

.content-section { max-width: 1280px; margin: 0 auto; padding: 110px 34px; }
.content-section + .content-section { border-top: 1px solid var(--line); }
.content-head { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.content-head h2 { max-width: 900px; margin: 0; font-size: clamp(40px, 5vw, 68px); font-weight: 500; letter-spacing: -.06em; line-height: 1.03; text-wrap: balance; }
.content-head > div > p { max-width: 740px; margin: 26px 0 0; color: var(--muted); font-size: 18px; line-height: 1.72; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 58px; }
.feature-grid.two { grid-template-columns: repeat(2, 1fr); }
.feature-card { min-height: 300px; padding: 30px; border-radius: 24px; background: #f0efeb; }
.feature-card:nth-child(2n) { background: var(--paper); }
.feature-card.is-dark { background: var(--ink); color: white; }
.feature-card.is-orange { background: var(--orange); color: white; }
.feature-card.is-forest { background: var(--forest); color: white; }
.feature-card span { color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.feature-card.is-dark span,
.feature-card.is-orange span,
.feature-card.is-forest span { color: rgba(255,255,255,.68); }
.feature-card h3 { margin: 72px 0 0; font-size: 28px; font-weight: 600; letter-spacing: -.045em; line-height: 1.1; }
.feature-card p { margin: 15px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.feature-card.is-dark p,
.feature-card.is-orange p,
.feature-card.is-forest p { color: rgba(255,255,255,.7); }

.split-story { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 58px; }
.split-copy { min-height: 560px; padding: 48px; border-radius: 28px; background: var(--paper); }
.split-copy h3 { max-width: 570px; margin: 70px 0 0; font-size: clamp(34px, 4vw, 54px); font-weight: 500; letter-spacing: -.055em; line-height: 1.06; }
.split-copy p { max-width: 620px; margin: 24px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.split-copy ul { margin: 34px 0 0; padding: 0; list-style: none; }
.split-copy li { padding: 15px 0; border-top: 1px solid var(--line); font-weight: 700; }
.split-media { position: relative; min-height: 560px; overflow: hidden; border-radius: 28px; background: #ddd; }
.split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.numbered-flow { margin: 58px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.numbered-flow li { display: grid; grid-template-columns: 80px .85fr 1.15fr; gap: 34px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.numbered-flow > li > span { color: var(--orange); font-size: 12px; font-weight: 800; }
.numbered-flow h3 { margin: 0; font-size: clamp(25px, 3vw, 38px); font-weight: 550; letter-spacing: -.045em; }
.numbered-flow p { max-width: 700px; margin: 0; color: var(--muted); line-height: 1.75; }

.seo-copy { display: grid; grid-template-columns: 280px minmax(0, 760px); justify-content: center; gap: 70px; }
.seo-toc { position: sticky; top: 25px; align-self: start; padding: 24px; border-radius: 18px; background: var(--paper); }
.seo-toc strong { display: block; margin-bottom: 13px; font-size: 13px; }
.seo-toc a { display: block; min-height: 42px; padding: 9px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.prose h2 { margin: 72px 0 20px; font-size: clamp(32px, 4vw, 50px); font-weight: 550; letter-spacing: -.05em; line-height: 1.08; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 36px 0 14px; font-size: 24px; letter-spacing: -.035em; }
.prose p, .prose li { color: #4f5451; font-size: 17px; line-height: 1.82; }
.prose ul { padding-left: 22px; }
.prose-callout { margin: 40px 0; padding: 30px; border-left: 5px solid var(--orange); border-radius: 0 18px 18px 0; background: var(--paper); }
.prose-callout strong { display: block; font-size: 21px; }
.prose-callout p { margin-bottom: 0; }
.legal-prose { max-width: 820px; margin: auto; }

.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 56px; }
.resource-card { min-height: 320px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: white; transition: transform .2s ease, border-color .2s ease; }
.resource-card:hover { transform: translateY(-4px); border-color: rgba(219,88,43,.65); }
.resource-card span { color: var(--orange); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.resource-card h3 { margin: 44px 0 0; font-size: 26px; font-weight: 600; letter-spacing: -.04em; line-height: 1.12; }
.resource-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.resource-card a { min-height: 48px; display: inline-flex; align-items: center; margin-top: auto; font-weight: 800; text-decoration: underline; text-underline-offset: 5px; }

.blog-hero { display: grid; grid-template-columns: .9fr 1.1fr; gap: 18px; max-width: 1420px; margin: 10px auto 0; padding: 18px; border-radius: 30px; background: var(--sand); }
.blog-hero-copy { align-self: center; padding: 72px 5vw; }
.blog-hero-copy h1 { max-width: 760px; margin: 20px 0 0; font-size: clamp(48px, 6vw, 84px); font-weight: 500; letter-spacing: -.065em; line-height: .98; text-wrap: balance; }
.blog-hero-copy > p:not(.kicker) { max-width: 650px; margin: 26px 0 0; color: var(--muted); font-size: 19px; line-height: 1.68; text-wrap: pretty; }
.blog-feature { position: relative; min-height: 650px; display: flex; align-items: flex-end; overflow: hidden; border-radius: 24px; background: var(--ink); color: white; }
.blog-feature > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .58; }
.blog-feature > div { position: relative; z-index: 1; max-width: 680px; padding: 42px; }
.blog-feature span, .blog-card-copy > span { color: #ff9b7a; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.blog-feature h2 { margin: 16px 0 0; font-size: clamp(34px, 4vw, 56px); font-weight: 550; letter-spacing: -.055em; line-height: 1.02; text-wrap: balance; }
.blog-feature p { color: rgba(255,255,255,.72); line-height: 1.65; }
.blog-feature strong { display: inline-flex; min-height: 48px; align-items: center; margin-top: 8px; text-decoration: underline; text-underline-offset: 5px; }
.blog-category-nav { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1280px; margin: 0 auto; padding: 28px 34px 0; }
.blog-category-nav a { min-height: 78px; display: flex; align-items: center; gap: 14px; padding: 18px 22px; border: 1px solid var(--line); border-right: 0; font-size: 14px; font-weight: 800; }
.blog-category-nav a:first-child { border-radius: 16px 0 0 16px; }
.blog-category-nav a:last-child { border-right: 1px solid var(--line); border-radius: 0 16px 16px 0; background: var(--ink); color: white; }
.blog-category-nav span { color: var(--orange); font-size: 11px; }
.blog-category { scroll-margin-top: 20px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 58px; }
.blog-card { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: white; }
.blog-card-featured { grid-column: span 2; }
.blog-card-image { min-height: 235px; display: block; overflow: hidden; background: var(--paper); }
.blog-card-featured .blog-card-image { min-height: 360px; }
.blog-card-image img { width: 100%; height: 235px; object-fit: cover; }
.blog-card-featured .blog-card-image img { height: 360px; }
.blog-card-copy { padding: 28px; }
.blog-card-copy h3 { margin: 14px 0 0; font-size: 25px; font-weight: 600; letter-spacing: -.04em; line-height: 1.12; text-wrap: balance; }
.blog-card-featured .blog-card-copy h3 { max-width: 720px; font-size: 34px; }
.blog-card-copy p { color: var(--muted); font-size: 14px; line-height: 1.65; text-wrap: pretty; }
.blog-read { min-height: 48px; display: inline-flex; align-items: center; margin-top: 6px; font-weight: 800; text-decoration: underline; text-underline-offset: 5px; }
.blog-aid-band { max-width: 1212px; margin: 0 auto 110px; display: flex; align-items: end; justify-content: space-between; gap: 50px; padding: 52px; border-radius: 28px; background: var(--forest); color: white; }
.blog-aid-band > div { max-width: 790px; }
.blog-aid-band h2 { margin: 16px 0 0; font-size: clamp(36px, 4.5vw, 60px); font-weight: 500; letter-spacing: -.055em; line-height: 1.03; text-wrap: balance; }
.blog-aid-band p:not(.kicker) { max-width: 680px; color: rgba(255,255,255,.72); line-height: 1.7; }
.blog-aid-band .button { flex: 0 0 auto; }

.comparison-table { margin-top: 55px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; }
.comparison-row { display: grid; grid-template-columns: 1.2fr repeat(2, 1fr); }
.comparison-row > * { min-height: 72px; padding: 22px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.comparison-row > *:first-child { border-left: 0; }
.comparison-row:first-child > * { border-top: 0; background: var(--ink); color: white; font-weight: 800; }
.comparison-row p { margin: 0; color: var(--muted); }

.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 58px; }
.plan-card { position: relative; min-height: 650px; display: flex; flex-direction: column; padding: 32px; border: 1px solid var(--line); border-radius: 26px; background: white; }
.plan-card.featured { border-color: var(--orange); background: var(--ink); color: white; transform: translateY(-14px); }
.plan-card > span { color: var(--orange); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.plan-card strong { display: block; margin-top: 46px; font-size: 60px; font-weight: 500; letter-spacing: -.065em; }
.plan-card strong small { font-size: 15px; letter-spacing: 0; }
.plan-card p, .plan-card li { color: var(--muted); font-size: 14px; line-height: 1.6; }
.plan-card.featured p, .plan-card.featured li { color: rgba(255,255,255,.68); }
.plan-card .plan-limit { margin: 20px 0 0; padding: 13px 15px; border-radius: 12px; background: var(--paper); color: var(--ink); font-weight: 800; }
.plan-card.featured .plan-limit { background: rgba(255,255,255,.1); color: white; }
.plan-card ul { margin: 28px 0; padding: 0; list-style: none; }
.plan-card li { padding: 12px 0; border-top: 1px solid var(--line); }
.plan-card.featured li { border-color: rgba(255,255,255,.14); }
.plan-card .button { margin-top: auto; }

.commitment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 58px; }
.commitment-card { min-height: 430px; padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: white; }
.commitment-card:nth-child(2) { background: var(--paper); }
.commitment-card:last-child { background: var(--forest); color: white; }
.commitment-card > span { color: var(--orange); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.commitment-card:last-child > span { color: #ffab8f; }
.commitment-card h3 { margin: 30px 0 24px; font-size: 45px; font-weight: 500; }
.commitment-card p { display: flex; justify-content: space-between; gap: 18px; margin: 0; padding: 15px 0; border-top: 1px solid var(--line); }
.commitment-card:last-child p { border-color: rgba(255,255,255,.16); }
.commitment-card p strong { font-size: 14px; }
.commitment-card p b { font-size: 14px; font-variant-numeric: tabular-nums; }
.commitment-card > small { display: block; margin-top: 28px; color: var(--muted); line-height: 1.55; }
.commitment-card:last-child > small { color: rgba(255,255,255,.68); }

.terms-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 58px; }
.terms-grid article { min-height: 430px; padding: 34px; border-radius: 24px; background: var(--paper); }
.terms-grid article.is-dark { background: var(--ink); color: white; }
.terms-grid span { color: var(--orange); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.terms-grid h3 { max-width: 520px; margin: 58px 0 28px; font-size: 34px; font-weight: 550; line-height: 1.08; text-wrap: balance; }
.terms-grid ul { margin: 0; padding: 0; list-style: none; }
.terms-grid li { padding: 14px 0; border-top: 1px solid var(--line); color: var(--muted); line-height: 1.55; }
.terms-grid .is-dark li { border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.7); }

.checkout-page { min-height: 100dvh; background: #f4f4f2; }
.checkout-header { display: flex; align-items: center; justify-content: space-between; min-height: 76px; padding: 12px max(24px, calc((100vw - 1240px) / 2)); border-bottom: 1px solid var(--line); background: white; }
.checkout-header-trust { display: flex; min-height: 48px; align-items: center; gap: 9px; color: var(--muted); font-size: 13px; font-weight: 700; }
.checkout-header-trust img { opacity: .72; }
.checkout-page-main { max-width: 1240px; margin: 0 auto; padding: 54px 24px 90px; }
.checkout-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.checkout-heading h1 { max-width: 720px; margin: 14px 0 0; font-size: clamp(38px, 5vw, 62px); font-weight: 600; letter-spacing: -.055em; line-height: 1.02; text-wrap: balance; }
.checkout-heading > div > p:last-child { max-width: 680px; margin: 18px 0 0; color: var(--muted); font-size: 16px; line-height: 1.65; text-wrap: pretty; }
.checkout-ssl-badge { display: flex; max-width: 300px; align-items: center; gap: 12px; padding: 15px 17px; border: 1px solid #d9dfd8; border-radius: 14px; background: #f9fbf9; }
.checkout-ssl-badge > span { display: grid; width: 30px; height: 30px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: #e2f3e5; color: #28783b; font-weight: 800; }
.checkout-ssl-badge strong, .checkout-ssl-badge small { display: block; }
.checkout-ssl-badge strong { font-size: 13px; }
.checkout-ssl-badge small { margin-top: 2px; color: var(--muted); font-size: 11px; line-height: 1.45; }
.checkout-progress { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 720px; margin: 42px 0 34px; padding: 0; list-style: none; }
.checkout-progress li { position: relative; display: flex; align-items: center; gap: 11px; min-width: 0; }
.checkout-progress li:not(:last-child)::after { content: ""; position: absolute; top: 18px; right: 16px; width: calc(100% - 145px); height: 1px; background: #d4d5d2; }
.checkout-progress li > span { display: grid; width: 36px; height: 36px; flex: 0 0 auto; place-items: center; border: 1px solid #c9cbc7; border-radius: 50%; background: white; color: var(--muted); font-size: 12px; font-weight: 800; }
.checkout-progress .is-active > span { border-color: var(--orange); background: var(--orange); color: white; }
.checkout-progress strong, .checkout-progress small { display: block; }
.checkout-progress strong { font-size: 13px; }
.checkout-progress small { margin-top: 2px; color: var(--muted); font-size: 10px; }
.checkout-wrap { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(340px, .8fr); gap: 24px; align-items: start; }
.checkout-form-column { display: grid; gap: 18px; min-width: 0; }
.checkout-card { min-width: 0; padding: 28px; border: 1px solid #e0e0dc; border-radius: 20px; background: white; box-shadow: 0 8px 24px rgba(17,19,21,.035); }
.checkout-card-head { display: flex; align-items: flex-start; gap: 14px; }
.checkout-card-icon { display: grid; width: 34px; height: 34px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: #f7e9e3; color: var(--orange); font-size: 10px; font-weight: 800; }
.checkout-card-head h2 { margin: 1px 0 0; font-size: 20px; letter-spacing: -.025em; }
.checkout-card-head p { margin: 5px 0 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.choice-grid { display: grid; gap: 10px; margin: 22px 0 0; padding: 0; border: 0; }
.choice-card { display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: 14px; min-height: 76px; padding: 14px 16px; border: 1px solid #dededa; border-radius: 14px; background: white; cursor: pointer; }
.choice-card:has(input:checked) { border-color: var(--orange); background: #fff9f6; box-shadow: 0 0 0 1px var(--orange); }
.choice-card strong, .choice-card small { display: block; }
.choice-card small { margin-top: 3px; color: var(--muted); }
.choice-card b { font-size: 17px; font-variant-numeric: tabular-nums; text-align: right; }
.choice-card b small { font-size: 10px; font-weight: 600; }
.commitment-choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 18px 0 0; padding: 0; border: 0; }
.commitment-choice { display: grid; grid-template-columns: 22px 1fr; align-items: center; gap: 10px; min-height: 80px; padding: 14px; border: 1px solid #dededa; border-radius: 14px; background: white; cursor: pointer; }
.commitment-choice:has(input:checked) { border-color: var(--orange); background: #fff9f6; box-shadow: 0 0 0 1px var(--orange); }
.commitment-choice strong, .commitment-choice small { display: block; }
.commitment-choice small { margin-top: 4px; color: var(--muted); font-size: 11px; line-height: 1.4; }
.upsell-grid { display: grid; gap: 10px; margin: 22px 0 0; padding: 0; border: 0; }
.upsell-card { display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: 14px; min-height: 88px; padding: 15px 16px; border: 1px solid #dededa; border-radius: 14px; background: white; cursor: pointer; }
.upsell-card:has(input:checked) { border-color: var(--orange); background: #fff9f6; box-shadow: 0 0 0 1px var(--orange); }
.upsell-card strong, .upsell-card small { display: block; }
.upsell-card small { max-width: 390px; margin-top: 4px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.upsell-card b { color: var(--orange); font-size: 14px; text-align: right; }
.form-note { margin: 18px 0 0; padding: 14px 15px; border-radius: 12px; background: #f4f4f2; color: var(--muted); font-size: 11px; line-height: 1.6; }
.checkout-summary { position: sticky; top: 24px; min-width: 0; padding: 26px; border: 1px solid #e0e0dc; border-radius: 20px; background: white; color: var(--ink); box-shadow: 0 12px 32px rgba(17,19,21,.06); }
.checkout-summary-head { display: flex; align-items: center; gap: 12px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.summary-bag { display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; border-radius: 12px; background: var(--ink); color: white; font-size: 16px; font-weight: 800; }
.checkout-summary-head p { margin: 0; color: var(--muted); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.checkout-summary h2 { margin: 2px 0 0; font-size: 22px; letter-spacing: -.035em; }
.summary-product { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.summary-product div { min-width: 0; }
.summary-product strong, .summary-product span { display: block; }
.summary-product strong { font-size: 13px; }
.summary-product span { margin-top: 4px; color: var(--muted); font-size: 11px; line-height: 1.4; }
.summary-product b { flex: 0 0 auto; font-size: 13px; font-variant-numeric: tabular-nums; text-align: right; }
.summary-breakdown { padding: 12px 0; border-bottom: 1px solid var(--line); }
.summary-breakdown > div:not(.summary-upsells) { display: flex; justify-content: space-between; gap: 18px; padding: 7px 0; font-size: 12px; }
.summary-breakdown span { color: var(--muted); }
.summary-breakdown strong { font-variant-numeric: tabular-nums; text-align: right; }
.summary-upsells { padding: 8px 0 2px; }
.summary-upsells > span { font-size: 12px; }
.summary-upsells ul { margin: 7px 0 0; padding-left: 18px; color: var(--ink); font-size: 11px; line-height: 1.6; }
.summary-total { display: grid; grid-template-columns: 1fr auto; gap: 3px 18px; padding: 20px 0 4px; }
.summary-total > span { align-self: end; font-size: 13px; font-weight: 700; }
.summary-total > strong { font-size: 27px; font-variant-numeric: tabular-nums; letter-spacing: -.04em; }
.summary-total > small { grid-column: 1 / -1; color: var(--muted); font-size: 10px; line-height: 1.5; }
.checkout-summary .button { width: 100%; margin-top: 18px; }
.checkout-summary button.button { display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 52px; border: 0; cursor: pointer; }
.checkout-summary button.button img { flex: 0 0 auto; filter: brightness(0) invert(1); }
.checkout-summary button.button:disabled { cursor: wait; opacity: .68; }
.checkout-summary .checkout-error { padding: 12px; border: 1px solid #e4b7a7; border-radius: 10px; background: #fff0eb; color: #8b2f12; font-size: 12px; }
.checkout-form-column.is-locked { opacity: .58; }
.embedded-payment-shell { scroll-margin-top: 24px; margin: 22px -10px 0; padding: 22px 10px 8px; border-top: 1px solid var(--line); }
.embedded-payment-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin: 0 4px 18px; }
.embedded-payment-head p { margin: 0; color: #28783b; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.embedded-payment-head h3 { margin: 5px 0 0; font-size: 17px; letter-spacing: -.025em; line-height: 1.25; text-wrap: balance; }
.embedded-payment-head button { min-height: 48px; flex: 0 0 auto; padding: 0 14px; border: 1px solid #d7d7d2; border-radius: 10px; background: white; color: var(--ink); cursor: pointer; font: inherit; font-size: 11px; font-weight: 800; }
.embedded-payment-head button:hover { border-color: #9c9c96; }
.embedded-payment-head button:focus-visible { outline: 3px solid rgba(225,85,34,.3); outline-offset: 2px; }
.stripe-embedded-checkout { min-height: 420px; overflow: hidden; border-radius: 12px; background: white; }
.checkout-loading { display: grid; min-height: 260px; place-items: center; align-content: center; gap: 14px; padding: 30px; color: var(--muted); text-align: center; }
.checkout-loading span { width: 30px; height: 30px; border: 3px solid #e5e5e1; border-top-color: var(--orange); border-radius: 50%; }
.checkout-loading p { max-width: 260px; margin: 0; font-size: 11px; line-height: 1.55; text-wrap: pretty; }
.checkout-trust-list { display: grid; gap: 14px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.checkout-trust-list > div { display: grid; grid-template-columns: 24px 1fr; gap: 10px; align-items: start; }
.checkout-trust-list > div > span { display: grid; width: 22px; height: 22px; place-items: center; border-radius: 50%; background: #e6f3e8; color: #28783b; font-size: 10px; font-weight: 800; }
.checkout-trust-list p { margin: 0; }
.checkout-trust-list strong, .checkout-trust-list small { display: block; }
.checkout-trust-list strong { font-size: 11px; }
.checkout-trust-list small { margin-top: 2px; color: var(--muted); font-size: 10px; line-height: 1.45; }
.checkout-footer { display: flex; justify-content: space-between; gap: 24px; max-width: 1240px; margin: 0 auto; padding: 28px 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }

.checkout-success-page { display: flex; flex-direction: column; }
.success-main { display: grid; flex: 1; place-items: center; width: 100%; padding: 72px 24px 90px; background: radial-gradient(circle at 50% 0, #fff 0, #f4f4f2 58%); }
.success-receipt { position: relative; width: min(100%, 620px); overflow: hidden; padding: 48px; border: 1px solid #dededa; border-radius: 28px; background: #fff; box-shadow: 0 26px 80px rgba(17,19,21,.1); text-align: center; }
.success-receipt::before { content: ""; position: absolute; inset: 0 0 auto; height: 7px; background: var(--orange); }
.success-mark { display: grid; width: 76px; height: 76px; margin: 0 auto 24px; place-items: center; border-radius: 50%; background: #e7f5e9; color: #28783b; }
.success-receipt.is-processing .success-mark { background: #fff1eb; color: var(--orange); }
.success-receipt.is-unverified .success-mark { background: #f0f0ed; color: var(--muted); }
.receipt-eyebrow { margin: 0; color: #28783b; font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.is-processing .receipt-eyebrow { color: var(--orange); }
.is-unverified .receipt-eyebrow { color: var(--muted); }
.success-receipt h1 { max-width: 500px; margin: 14px auto 0; font-size: clamp(36px, 6vw, 52px); font-weight: 600; letter-spacing: -.055em; line-height: 1.02; text-wrap: balance; }
.receipt-intro { max-width: 470px; margin: 18px auto 0; color: var(--muted); font-size: 14px; line-height: 1.7; text-wrap: pretty; }
.receipt-divider { position: relative; height: 25px; margin: 30px -48px 18px; overflow: hidden; }
.receipt-divider::before, .receipt-divider::after { content: ""; position: absolute; top: 2px; width: 24px; height: 24px; border-radius: 50%; background: #f4f4f2; }
.receipt-divider::before { left: -12px; }
.receipt-divider::after { right: -12px; }
.receipt-divider span { position: absolute; top: 13px; right: 30px; left: 30px; border-top: 1px dashed #d8d8d4; }
.receipt-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin: 0; text-align: left; }
.receipt-details div { min-width: 0; padding: 16px 12px; border-bottom: 1px solid var(--line); }
.receipt-details div:nth-child(odd) { padding-left: 0; }
.receipt-details div:nth-child(even) { padding-right: 0; text-align: right; }
.receipt-details dt { color: var(--muted); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.receipt-details dd { margin: 7px 0 0; overflow-wrap: anywhere; font-size: 14px; font-weight: 800; font-variant-numeric: tabular-nums; }
.receipt-status-dot { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: #2c9a49; vertical-align: 1px; }
.is-processing .receipt-status-dot { background: var(--orange); }
.receipt-next { margin-top: 26px; padding: 20px; border-radius: 16px; background: #f4f4f2; text-align: left; }
.receipt-next strong { font-size: 12px; }
.receipt-next p { margin: 7px 0 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.receipt-support { margin: 22px 0 0; color: var(--muted); font-size: 11px; }
.receipt-support a { color: var(--ink); font-weight: 800; text-underline-offset: 3px; }
.legal-review { border-color: #c28a14; background: #fff7df; }

.page-faq { max-width: 920px; margin: 0 auto; padding: 100px 34px; }
.page-faq h2 { margin: 0; font-size: clamp(38px, 5vw, 62px); font-weight: 500; letter-spacing: -.055em; line-height: 1.04; }
.page-faq .faq-list { margin-top: 44px; }

.page-cta { position: relative; min-height: 520px; margin: 10px; overflow: hidden; border-radius: 28px; background: var(--ink); color: white; }
.page-cta img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.page-cta::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,12,13,.94), rgba(10,12,13,.45)); }
.page-cta-copy { position: relative; z-index: 1; max-width: 850px; padding: 95px max(34px, 7vw); }
.page-cta h2 { margin: 18px 0 0; font-size: clamp(42px, 5vw, 68px); font-weight: 500; letter-spacing: -.06em; line-height: 1.02; }
.page-cta p { max-width: 640px; color: rgba(255,255,255,.68); font-size: 17px; line-height: 1.7; }

@media (max-width: 1000px) {
  .page-header { grid-template-columns: auto auto; justify-content: space-between; }
  .page-header .desktop-nav, .page-header .header-actions { display: none; }
  .page-header .menu-toggle { display: block; }
  .inner-hero-grid { grid-template-columns: 1fr; }
  .inner-hero-media { min-height: 470px; }
  .page-proof { grid-template-columns: 1fr; }
  .page-proof article, .page-proof article:last-child { border: 0; border-bottom: 1px solid var(--line); }
  .content-head { grid-template-columns: 1fr; gap: 20px; }
  .feature-grid, .resource-grid, .plan-grid, .commitment-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-hero { grid-template-columns: 1fr; }
  .blog-category-nav { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .blog-category-nav a, .blog-category-nav a:first-child, .blog-category-nav a:last-child { border: 1px solid var(--line); border-radius: 12px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card-featured { grid-column: span 2; }
  .blog-aid-band { margin-right: 34px; margin-left: 34px; }
  .numbered-flow li { grid-template-columns: 60px 1fr; }
  .numbered-flow p { grid-column: 2; }
  .checkout-wrap { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  .checkout-heading { align-items: flex-start; }
}

@media (max-width: 720px) {
  .page-header { min-height: 72px; padding: 10px 18px; }
  .inner-hero { min-height: auto; border-radius: 0 0 22px 22px; }
  .inner-hero-copy { padding: 78px 24px 56px; }
  .inner-hero-copy h1 { font-size: clamp(44px, 14vw, 64px); }
  .inner-hero-media { min-height: 430px; margin: 0 10px 10px; }
  .inner-hero.hero-centered .inner-hero-copy { padding: 90px 24px; text-align: left; }
  .inner-hero.hero-centered .inner-hero-actions { justify-content: flex-start; }
  .content-section { padding: 78px 22px; }
  .content-head h2 { font-size: 42px; }
  .feature-grid, .feature-grid.two, .resource-grid, .plan-grid, .split-story, .commitment-grid, .terms-grid { grid-template-columns: 1fr; }
  .blog-hero { margin: 0 10px; padding: 10px; border-radius: 0 0 22px 22px; }
  .blog-hero-copy { padding: 70px 16px 42px; }
  .blog-hero-copy h1 { font-size: clamp(44px, 13vw, 62px); }
  .blog-feature { min-height: 520px; }
  .blog-feature > div { padding: 28px; }
  .blog-category-nav { grid-template-columns: 1fr; padding: 24px 22px 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-featured { grid-column: auto; }
  .blog-card-featured .blog-card-image, .blog-card-image { min-height: 250px; }
  .blog-card-featured .blog-card-image img, .blog-card-image img { height: 250px; }
  .blog-card-featured .blog-card-copy h3 { font-size: 29px; }
  .blog-aid-band { display: block; margin: 0 22px 80px; padding: 30px; }
  .blog-aid-band .button { margin-top: 24px; }
  .feature-card { min-height: 260px; }
  .split-copy, .split-media { min-height: 470px; }
  .split-copy { padding: 30px; }
  .numbered-flow li { grid-template-columns: 42px 1fr; gap: 18px; }
  .seo-copy { grid-template-columns: 1fr; gap: 34px; }
  .seo-toc { position: static; }
  .comparison-row { grid-template-columns: 1fr; }
  .comparison-row > * { border-left: 0; }
  .plan-card.featured { transform: none; }
  .checkout-header { min-height: 68px; padding: 10px 18px; }
  .checkout-header .brand { font-size: 24px; }
  .checkout-header-trust { font-size: 11px; }
  .checkout-page-main { padding: 38px 16px 70px; }
  .checkout-heading { display: block; }
  .checkout-heading h1 { font-size: clamp(36px, 11vw, 48px); }
  .checkout-ssl-badge { margin-top: 24px; }
  .checkout-progress { margin: 32px 0 24px; }
  .checkout-progress li { gap: 7px; }
  .checkout-progress li:not(:last-child)::after { display: none; }
  .checkout-progress li > div { min-width: 0; }
  .checkout-progress strong { font-size: 11px; }
  .checkout-progress small { display: none; }
  .checkout-wrap { padding: 0; }
  .checkout-card, .checkout-summary { padding: 20px; }
  .embedded-payment-shell { margin-right: -4px; margin-left: -4px; padding-right: 4px; padding-left: 4px; }
  .embedded-payment-head { display: grid; }
  .embedded-payment-head button { width: 100%; }
  .commitment-choice-grid { grid-template-columns: 1fr; }
  .upsell-card { grid-template-columns: 24px 1fr; }
  .upsell-card b { grid-column: 2; text-align: left; }
  .choice-card { grid-template-columns: 24px minmax(0, 1fr); }
  .choice-card b { grid-column: 2; }
  .checkout-footer { display: grid; padding: 24px 18px; }
  .success-main { padding: 38px 14px 60px; }
  .success-receipt { padding: 34px 22px; border-radius: 22px; }
  .receipt-divider { margin-right: -22px; margin-left: -22px; }
  .receipt-details { grid-template-columns: 1fr; }
  .receipt-details div, .receipt-details div:nth-child(odd), .receipt-details div:nth-child(even) { padding: 14px 0; text-align: left; }
  .page-cta { min-height: 560px; }
  .page-cta-copy { padding: 85px 25px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .resource-card, .button { transition: none; }
}
