:root {
  --ink: #1f2924;
  --muted: #66716b;
  --line: #dfe5df;
  --paper: #ffffff;
  --soft: #f6f8f4;
  --sage-50: #f2f6f0;
  --sage-100: #e3ebdf;
  --sage-300: #b4c6aa;
  --sage-500: #708b68;
  --sage-700: #455d42;
  --sage-900: #293b2a;
  --clay: #b77458;
  --cream: #fbf7f0;
  --shadow: 0 22px 70px rgba(41, 59, 42, 0.12);
  --shadow-soft: 0 12px 36px rgba(31, 41, 36, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(112, 139, 104, 0.48);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--sage-900);
  color: #fff;
  text-decoration: none;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 780px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(223, 229, 223, 0.82);
  background: #fff;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--sage-900);
  font-size: 17px;
  font-weight: 760;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-900);
  box-shadow: 0 8px 20px rgba(41, 59, 42, 0.22);
}

.brand-mark svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.site-nav > a {
  color: #435048;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"] {
  color: var(--sage-700);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #435048;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  width: 6px;
  height: 6px;
  margin-top: -3px;
  transform: rotate(45deg);
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
}

.nav-dropdown[open] summary {
  color: var(--sage-700);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 18px);
  right: -12px;
  display: grid;
  width: 225px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  gap: 2px;
}

.nav-dropdown-panel a {
  padding: 10px 11px;
  border-radius: 9px;
  color: #4e5a52;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.nav-dropdown-panel a:hover {
  background: var(--sage-50);
  color: var(--sage-700);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 78px;
  background:
    radial-gradient(circle at 2% 10%, rgba(180, 198, 170, 0.24), transparent 26rem),
    linear-gradient(180deg, #fff 0%, var(--sage-50) 100%);
}

.hero::after {
  position: absolute;
  right: -180px;
  bottom: -270px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(112, 139, 104, 0.18);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 58px;
  grid-template-columns: 0.92fr 1.08fr;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--sage-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 1px;
  background: var(--sage-500);
  content: "";
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.11;
}

h1 {
  margin-bottom: 22px;
  color: var(--sage-900);
  font-size: clamp(44px, 6vw, 72px);
}

h2 {
  margin-bottom: 18px;
  color: var(--sage-900);
  font-size: clamp(34px, 4.5vw, 52px);
}

h3 {
  margin-bottom: 10px;
  color: var(--sage-900);
  font-size: 24px;
}

.hero-lead {
  max-width: 610px;
  margin: 0 0 28px;
  color: #536058;
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--sage-900);
  box-shadow: 0 12px 26px rgba(41, 59, 42, 0.2);
  color: #fff;
}

.button-primary:hover {
  background: var(--sage-700);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--sage-900);
}

.button-secondary:hover {
  border-color: var(--sage-300);
  background: #fff;
}

.button-block {
  width: 100%;
}

.hero-note {
  display: flex;
  margin-top: 22px;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}

.hero-note svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--sage-500);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-visual {
  position: relative;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.95);
  border-radius: 34px 34px 110px 34px;
  box-shadow: var(--shadow);
  aspect-ratio: 1.12 / 1;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-card {
  position: absolute;
  bottom: 22px;
  left: -25px;
  display: flex;
  max-width: 260px;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid rgba(223, 229, 223, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.hero-card-icon {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--sage-700);
}

.hero-card-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.hero-card strong {
  color: var(--sage-900);
  font-size: 13px;
}

.hero-card span {
  color: var(--muted);
  font-size: 12px;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: #fff;
}

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

.trust-item {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  color: #465249;
  font-size: 14px;
  font-weight: 690;
  text-align: center;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--sage-500);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.section {
  padding: 104px 0;
}

.section-soft {
  background: var(--soft);
}

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

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

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.intro-grid {
  display: grid;
  align-items: start;
  gap: 74px;
  grid-template-columns: 0.9fr 1.1fr;
}

.intro-copy p {
  margin-top: 0;
  color: #536058;
  font-size: 18px;
}

.quiet-panel {
  padding: 32px;
  border: 1px solid var(--sage-100);
  border-radius: var(--radius-lg);
  background: var(--sage-50);
}

.quiet-panel h3 {
  font-size: 26px;
}

.check-list {
  display: grid;
  margin: 22px 0 0;
  padding: 0;
  gap: 16px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #4f5c53;
}

.check-list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 3px;
  fill: none;
  stroke: var(--sage-500);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

.module-card {
  min-height: 250px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 2px 0 rgba(41, 59, 42, 0.02);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.module-card:hover {
  transform: translateY(-5px);
  border-color: var(--sage-300);
  box-shadow: var(--shadow-soft);
}

.module-number {
  display: inline-flex;
  margin-bottom: 31px;
  align-items: center;
  color: var(--sage-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-style: italic;
}

.module-number::after {
  width: 34px;
  height: 1px;
  margin-left: 10px;
  background: var(--sage-300);
  content: "";
}

.module-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

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

.process-step {
  position: relative;
  padding: 30px 28px;
  border-radius: var(--radius-md);
  background: #fff;
}

.process-step::before {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-900);
  color: #fff;
  content: attr(data-step);
  font-size: 13px;
  font-weight: 800;
}

.process-step p {
  margin: 0;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  max-width: 950px;
  margin-inline: auto;
  align-items: stretch;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.price-card {
  position: relative;
  display: flex;
  min-height: 540px;
  flex-direction: column;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.price-card.featured {
  border-color: var(--sage-700);
  box-shadow: 0 24px 65px rgba(41, 59, 42, 0.16);
}

.price-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--sage-100);
  color: var(--sage-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-label {
  margin-bottom: 8px;
  color: var(--sage-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.price-card h3 {
  margin-bottom: 13px;
  font-size: 31px;
}

.price-description {
  min-height: 52px;
  margin: 0 0 25px;
  color: var(--muted);
}

.price {
  display: flex;
  margin-bottom: 22px;
  align-items: flex-end;
  color: var(--sage-900);
}

.price-currency {
  margin: 0 4px 10px 0;
  font-size: 21px;
  font-weight: 700;
}

.price-value {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.price-once {
  margin: 0 0 7px 10px;
  color: var(--muted);
  font-size: 13px;
}

.price-features {
  display: grid;
  margin: 0 0 30px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  gap: 13px;
  list-style: none;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #4e5a52;
  font-size: 15px;
}

.price-features svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  fill: none;
  stroke: var(--sage-500);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.price-card .button {
  margin-top: auto;
}

.price-smallprint {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.refund-callout {
  display: grid;
  max-width: 950px;
  margin: 32px auto 0;
  padding: 24px 28px;
  border: 1px solid var(--sage-100);
  border-radius: var(--radius-md);
  background: var(--sage-50);
  grid-template-columns: auto 1fr;
  gap: 16px;
}

.refund-callout svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--sage-700);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.refund-callout strong {
  display: block;
  margin-bottom: 2px;
  color: var(--sage-900);
}

.refund-callout p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.refund-callout a {
  color: var(--sage-700);
  font-weight: 700;
}

.faq-list {
  max-width: 830px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

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

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  border: 0;
  background: transparent;
  color: var(--sage-900);
  cursor: pointer;
  font-size: 17px;
  font-weight: 760;
  text-align: left;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--sage-500);
  stroke-linecap: round;
  stroke-width: 2;
  transition: transform 180ms ease;
}

.faq-question[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 200ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 46px 25px 4px;
  color: var(--muted);
}

.faq-question[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}

.support-banner {
  padding: 84px 0;
  background: var(--sage-900);
  color: #fff;
}

.support-banner-grid {
  display: grid;
  align-items: center;
  gap: 40px;
  grid-template-columns: 1.3fr 0.7fr;
}

.support-banner h2 {
  margin-bottom: 12px;
  color: #fff;
}

.support-banner p {
  max-width: 670px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.support-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.support-actions a {
  color: #fff;
  font-weight: 760;
  text-decoration-color: rgba(255, 255, 255, 0.52);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.support-actions a:hover {
  color: var(--sage-100);
  text-decoration-color: currentColor;
}

.site-footer {
  padding: 62px 0 28px;
  background: #172019;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  padding-bottom: 44px;
  gap: 50px;
  grid-template-columns: 1.5fr 0.65fr 0.65fr;
}

.footer-brand {
  color: #fff;
}

.footer-brand .brand-mark {
  background: #fff;
}

.footer-brand .brand-mark svg {
  stroke: var(--sage-900);
}

.footer-summary {
  max-width: 500px;
  margin: 18px 0 22px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 14px;
}

.seller {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-style: normal;
  line-height: 1.7;
}

.footer-col h2 {
  margin-bottom: 16px;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  display: flex;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.footer-disclaimer {
  text-align: right;
}

/* Legal and support pages */
.page-hero {
  padding: 72px 0 62px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 0%, rgba(180, 198, 170, 0.23), transparent 24rem),
    var(--soft);
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 15px;
  font-size: clamp(42px, 6vw, 62px);
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.last-updated {
  display: inline-flex;
  margin-top: 20px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.content-layout {
  display: grid;
  padding: 68px 0 96px;
  align-items: start;
  gap: 64px;
  grid-template-columns: 230px minmax(0, 760px);
}

.toc {
  position: sticky;
  top: 112px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft);
}

.toc strong {
  display: block;
  margin-bottom: 12px;
  color: var(--sage-900);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toc a {
  display: block;
  padding: 5px 0;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.toc a:hover {
  color: var(--sage-700);
}

.prose {
  min-width: 0;
}

.prose section + section {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.prose h2 {
  margin-bottom: 18px;
  font-size: 34px;
}

.prose h3 {
  margin-top: 28px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 780;
  letter-spacing: -0.015em;
}

.prose p,
.prose li {
  color: #526057;
}

.prose ul,
.prose ol {
  padding-left: 22px;
}

.prose li + li {
  margin-top: 8px;
}

.prose a {
  color: var(--sage-700);
  font-weight: 690;
  text-underline-offset: 3px;
}

.notice {
  margin: 27px 0;
  padding: 20px 22px;
  border-left: 3px solid var(--sage-500);
  border-radius: 0 12px 12px 0;
  background: var(--sage-50);
}

.notice strong {
  color: var(--sage-900);
}

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

.contact-grid {
  display: grid;
  margin-top: 28px;
  gap: 17px;
  grid-template-columns: repeat(2, 1fr);
}

.contact-card {
  display: flex;
  min-height: 175px;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.contact-card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--sage-700);
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.contact-card strong {
  margin-bottom: 4px;
  color: var(--sage-900);
}

.contact-card span {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
}

.contact-card a {
  margin-top: auto;
  overflow-wrap: anywhere;
}

.support-facts {
  display: grid;
  margin-top: 30px;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.support-fact {
  padding: 19px;
  border-radius: var(--radius-sm);
  background: var(--soft);
}

.support-fact strong,
.support-fact span {
  display: block;
}

.support-fact strong {
  color: var(--sage-900);
  font-size: 13px;
}

.support-fact span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.modal {
  width: min(calc(100% - 30px), 520px);
  padding: 0;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 28px 100px rgba(20, 30, 23, 0.33);
}

.modal::backdrop {
  background: rgba(15, 21, 17, 0.64);
  backdrop-filter: blur(4px);
}

.modal-inner {
  position: relative;
  padding: 36px;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
}

.modal h2 {
  margin-bottom: 12px;
  padding-right: 35px;
  font-size: 32px;
}

.modal p {
  color: var(--muted);
}

.modal-plan {
  margin: 22px 0;
  padding: 18px;
  border-radius: 14px;
  background: var(--sage-50);
}

.modal-plan strong,
.modal-plan span {
  display: block;
}

.modal-plan span {
  color: var(--muted);
  font-size: 13px;
}

.modal-help {
  margin: 0;
  font-size: 14px;
}

.modal-help a {
  color: var(--sage-700);
  font-weight: 760;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: 79px;
    right: 0;
    left: 0;
    display: none;
    height: calc(100dvh - 79px);
    padding: 28px 20px;
    align-items: stretch;
    border-top: 1px solid var(--line);
    background: #fff;
    flex-direction: column;
    gap: 0;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav > a {
    padding: 16px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .nav-dropdown {
    border-bottom: 1px solid var(--line);
  }

  .nav-dropdown summary {
    padding: 16px 8px;
    justify-content: space-between;
    font-size: 16px;
  }

  .nav-dropdown-panel {
    position: static;
    width: auto;
    padding: 0 0 12px 12px;
    border: 0;
    box-shadow: none;
  }

  .nav-dropdown-panel a {
    padding: 10px;
  }

  .hero-grid,
  .intro-grid {
    gap: 45px;
    grid-template-columns: 1fr;
  }

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

  .hero-image-frame {
    max-height: 570px;
    aspect-ratio: 1.5 / 1;
  }

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

  .support-banner-grid {
    grid-template-columns: 1fr;
  }

  .support-actions {
    flex-direction: row;
  }

  .content-layout {
    display: block;
  }

  .toc {
    position: static;
    margin-bottom: 44px;
  }

  .toc a {
    display: inline-block;
    margin-right: 15px;
  }
}

@media (max-width: 720px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero {
    padding: 48px 0 58px;
  }

  h1 {
    font-size: clamp(41px, 13vw, 58px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-image-frame {
    border-width: 6px;
    border-radius: 24px 24px 70px 24px;
    aspect-ratio: 1 / 1.03;
  }

  .hero-card {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }

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

  .trust-item {
    min-height: 70px;
    justify-content: flex-start;
    text-align: left;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 75px 0;
  }

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

  .section-heading p {
    font-size: 16px;
  }

  .quiet-panel {
    padding: 24px;
  }

  .module-grid,
  .process-grid,
  .pricing-grid,
  .contact-grid,
  .support-facts {
    grid-template-columns: 1fr;
  }

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

  .price-card {
    min-height: 0;
    padding: 30px 24px;
  }

  .price-description {
    min-height: 0;
  }

  .support-actions {
    flex-direction: column;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-disclaimer {
    text-align: left;
  }

  .page-hero {
    padding: 52px 0 45px;
  }

  .page-hero h1 {
    font-size: 43px;
  }

  .content-layout {
    padding: 45px 0 75px;
  }

  .prose section + section {
    margin-top: 37px;
    padding-top: 37px;
  }

  .prose h2 {
    font-size: 29px;
  }

  .refund-callout {
    grid-template-columns: 1fr;
  }
}

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

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