:root {
  color-scheme: light;
  --paper: #fff8ed;
  --paper-soft: #fff3df;
  --paper-card: rgba(255, 252, 245, 0.88);
  --ink: #171615;
  --muted: #5f5a54;
  --soft-muted: #82796f;
  --spark: #e94f13;
  --spark-dark: #c93b07;
  --spark-soft: #ffe5cf;
  --spark-border: #f3c6a6;
  --green: #12412f;
  --green-soft: #e7f0e4;
  --border: rgba(108, 78, 48, 0.18);
  --danger: #9a392f;
  --shadow: 0 24px 80px rgba(99, 62, 24, 0.13);
  --shadow-soft: 0 12px 34px rgba(99, 62, 24, 0.10);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-pill: 999px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 6%, rgba(255, 198, 132, 0.24), transparent 32%),
    radial-gradient(circle at 92% 82%, rgba(255, 152, 80, 0.16), transparent 28%),
    linear-gradient(180deg, #fffaf1 0%, var(--paper) 100%);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(130, 100, 70, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130, 100, 70, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  -webkit-mask-image: linear-gradient(to bottom, #000000, transparent 82%);
  mask-image: linear-gradient(to bottom, #000000, transparent 82%);
}

svg {
  width: 1.1em;
  height: 1.1em;
  display: inline-block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

a {
  color: inherit;
  text-decoration-color: rgba(201, 59, 7, 0.38);
  text-underline-offset: 3px;
}

button,
input {
  font: inherit;
}

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

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

.page {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 58px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 76px;
}

body > .site-header {
  width: min(1180px, calc(100% - 48px));
  margin: 28px auto 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(145deg, #f36d18, #d93f08);
  box-shadow: 0 12px 24px rgba(220, 74, 10, 0.25);
  overflow: hidden;
}

.brand-mark img {
  width: 28px;
  height: 36px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(102, 31, 0, 0.22));
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--spark-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.78fr);
  gap: 70px;
  align-items: start;
}

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

.program-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  padding: 12px 20px;
  border: 1px solid rgba(236, 112, 40, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(255, 230, 207, 0.8);
  color: var(--spark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.program-pill svg {
  width: 18px;
  height: 18px;
}

h1 {
  max-width: 650px;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7vw, 96px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

.spark {
  color: var(--spark);
}

.hero-lede {
  max-width: 600px;
  margin: 26px 0 28px;
  color: #383430;
  font-size: 20px;
  line-height: 1.55;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 32px;
}

.reminder-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 18px;
  border: 1px solid var(--spark-border);
  border-radius: var(--radius-pill);
  background: rgba(255, 251, 243, 0.78);
  box-shadow: 0 8px 22px rgba(197, 91, 25, 0.08);
  color: #28231f;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

.reminder-chip svg {
  width: 17px;
  height: 17px;
  color: var(--spark);
}

.relief-line {
  margin: 0 0 38px;
  color: #5a514a;
  font-size: 18px;
  line-height: 1.45;
}

.thought-path {
  position: relative;
  height: 150px;
  max-width: 650px;
  margin-top: 14px;
}

.thought-bubble {
  position: absolute;
  left: 18px;
  top: 14px;
  width: 138px;
  height: 78px;
  display: grid;
  place-items: center;
  border: 1.6px solid rgba(78, 70, 64, 0.45);
  border-radius: 50%;
  background: rgba(255, 252, 246, 0.5);
  color: #6a625d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-style: italic;
  transform: rotate(-5deg);
}

.thought-bubble::before,
.thought-bubble::after {
  content: "";
  position: absolute;
  border: 1.4px solid rgba(78, 70, 64, 0.4);
  border-radius: 50%;
  background: rgba(255, 252, 246, 0.5);
}

.thought-bubble::before {
  width: 16px;
  height: 16px;
  bottom: -22px;
  left: 34px;
}

.thought-bubble::after {
  width: 8px;
  height: 8px;
  bottom: -38px;
  left: 56px;
}

.path-svg {
  position: absolute;
  left: 145px;
  top: 38px;
  width: 430px;
  height: 95px;
  overflow: visible;
}

.path-svg path:first-child {
  stroke: #ef6b24;
  stroke-width: 2.2;
  stroke-dasharray: 8 9;
}

.path-svg path:last-child {
  stroke: #ef6b24;
  stroke-width: 2;
}

.mini-reminder {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 190px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 252, 245, 0.86);
  box-shadow: var(--shadow-soft);
  transform: rotate(-7deg);
}

.mini-check {
  width: 28px;
  height: 28px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--spark);
  color: #ffffff;
}

.mini-check svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.4;
}

.mini-reminder strong {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
}

.mini-reminder span span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.signup-panel {
  position: relative;
  padding: 38px 40px 34px;
  border: 1px solid rgba(143, 95, 49, 0.22);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(255, 248, 236, 0.91));
  box-shadow: var(--shadow);
}

.panel-kicker {
  margin: 0 0 18px;
  color: var(--spark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.panel-heading h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.panel-heading p:last-child {
  margin: 0 0 30px;
  color: #4f4942;
  font-size: 16px;
  line-height: 1.45;
}

.signup-form,
.verify-form {
  display: grid;
  gap: 0;
}

.field {
  display: grid;
}

.field label,
.verify-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.phone-input-shell {
  height: 58px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(147, 104, 65, 0.28);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.9);
  padding: 0 16px;
  color: #8a8178;
  font-size: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.phone-input-shell:focus-within {
  border-color: var(--spark);
  box-shadow:
    0 0 0 4px rgba(233, 79, 19, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.country-code {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
}

.flag-us {
  width: 25px;
  height: 17px;
  display: inline-block;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(23, 22, 21, 0.12);
  background:
    linear-gradient(#2b4b86 0 0) 0 0 / 10px 9px no-repeat,
    repeating-linear-gradient(to bottom, #b54135 0 1.6px, #ffffff 1.6px 3.2px);
}

.country-chevron {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-right: 1.7px solid var(--ink);
  border-bottom: 1.7px solid var(--ink);
  transform: translateY(-2px) rotate(45deg);
}

input[type="tel"],
input[type="text"] {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 20px;
}

input[type="text"] {
  height: 58px;
  border: 1px solid rgba(147, 104, 65, 0.28);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.9);
  padding: 0 16px;
}

input::placeholder {
  color: #8a8178;
}

.field-note {
  margin: 10px 0 28px;
  color: var(--soft-muted);
  font-size: 14px;
  line-height: 1.4;
}

.consent-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 30px;
}

.consent-check input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  border-radius: 4px;
  accent-color: var(--spark);
}

.consent-copy {
  color: #342f2a;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.46;
}

.consent-copy a {
  color: var(--spark-dark);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.turnstile-slot {
  min-height: 0;
  margin: -10px 0 22px;
}

.turnstile-slot:empty {
  display: none;
}

.primary-button,
.primary-link-button {
  width: 100%;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 0;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #f2671d 0%, #df480b 100%);
  box-shadow:
    0 14px 32px rgba(222, 74, 10, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
  color: #ffffff;
  font-size: 18px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.primary-button svg {
  width: 21px;
  height: 21px;
}

.primary-button:hover,
.primary-link-button:hover {
  background: linear-gradient(180deg, #ff782e 0%, #df480b 100%);
  transform: translateY(-1px);
}

.primary-button:active,
.primary-link-button:active {
  transform: translateY(0);
}

.primary-button:focus-visible,
.primary-link-button:focus-visible,
.nav-links a:focus-visible,
.brand:focus-visible,
.text-link:focus-visible,
.consent-copy a:focus-visible {
  outline: 3px solid rgba(233, 79, 19, 0.35);
  outline-offset: 3px;
}

input[type="text"]:focus-visible {
  border-color: var(--spark);
  box-shadow: 0 0 0 4px rgba(233, 79, 19, 0.12);
}

.primary-button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.try-note {
  margin: 14px 0 30px;
  color: #5d554e;
  font-size: 14px;
  font-weight: 550;
  line-height: 1.4;
  text-align: center;
}

.status-line {
  min-height: 19px;
  margin: -18px 0 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.status-line:empty {
  margin: 0;
  min-height: 0;
}

.status-line.is-error {
  color: var(--danger);
}

.trust-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-top: 4px;
}

.trust-note svg {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  padding: 7px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
}

.trust-note p {
  margin: 0;
}

.trust-note strong {
  display: block;
  margin-bottom: 4px;
  color: #221f1b;
  font-size: 16px;
  line-height: 1.3;
}

.trust-note span {
  display: block;
  color: var(--soft-muted);
  font-size: 14px;
  line-height: 1.35;
}

.verify-form,
.next-step {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.verify-form .field-note {
  margin-bottom: 22px;
}

.next-step h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.next-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.success-label {
  margin: 0 0 8px;
  color: var(--spark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--spark-dark);
  font-size: 14px;
  font-weight: 750;
}

.is-hidden {
  display: none;
}

.benefits {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 38px;
}

.benefit {
  min-height: 174px;
  padding: 26px 24px 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 252, 246, 0.68);
  box-shadow: 0 14px 34px rgba(99, 62, 24, 0.06);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(236, 112, 40, 0.16);
  border-radius: 50%;
  background: var(--spark-soft);
  color: var(--spark);
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
}

.benefit-green .benefit-icon {
  background: var(--green-soft);
  color: var(--green);
}

.benefit h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.benefit p {
  margin: 0;
  color: #514b45;
  font-size: 15px;
  line-height: 1.52;
}

.scribble {
  width: 76px;
  height: 12px;
  margin-top: 12px;
}

.scribble path {
  stroke: #ef6b24;
  stroke-width: 2;
}

.benefit-green .scribble path {
  stroke: var(--green);
}

.closing-note {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 44px auto 0;
  text-align: center;
}

.closing-note h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.closing-note p {
  max-width: 540px;
  margin: 14px auto 0;
  color: #5a514a;
  font-size: 18px;
  line-height: 1.5;
}

.bottom-wash {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 12% 100%, rgba(244, 119, 31, 0.20), transparent 46%),
    radial-gradient(ellipse at 70% 105%, rgba(255, 162, 76, 0.16), transparent 52%);
  filter: blur(1px);
  opacity: 0.85;
}

.legal-main {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 48px));
  margin: 0 auto 70px;
  padding: 22px 0 0;
}

.legal-header {
  margin-bottom: 34px;
  padding: 34px 38px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 252, 246, 0.72);
  box-shadow: 0 14px 34px rgba(99, 62, 24, 0.06);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--spark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.legal-header h1 {
  font-size: clamp(44px, 6vw, 64px);
  line-height: 1;
}

.legal-meta {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.legal-section {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.legal-section h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0;
}

.legal-section p,
.legal-section li {
  color: #3c3630;
  font-size: 16px;
  line-height: 1.64;
}

.legal-section p {
  margin-bottom: 12px;
}

.legal-section ul {
  margin: 10px 0 14px;
  padding-left: 22px;
}

.legal-section a {
  color: var(--spark-dark);
  font-weight: 700;
}

.site-footer {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin: 0 auto 46px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.site-footer strong {
  display: block;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
}

.site-footer p {
  margin: 6px 0 0;
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.site-footer a {
  color: var(--spark-dark);
  font-size: 14px;
  font-weight: 700;
}

.landing-seo-footer {
  display: grid;
  grid-template-columns: minmax(210px, 0.58fr) minmax(0, 1fr);
  gap: 42px;
  margin-top: 10px;
}

.footer-brand-block p {
  max-width: 260px;
  line-height: 1.45;
}

.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.footer-link-group {
  min-width: 0;
}

.footer-group-title {
  margin: 0 0 13px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer .footer-link-grid nav {
  display: grid;
  gap: 9px;
  justify-content: stretch;
}

.site-footer .footer-link-grid a {
  color: #51473f;
  font-weight: 650;
  line-height: 1.35;
  text-decoration-color: rgba(201, 59, 7, 0.26);
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.site-footer .footer-link-grid a:hover {
  color: var(--spark-dark);
  text-decoration-color: rgba(201, 59, 7, 0.72);
}

.site-footer .footer-utility {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-start;
  padding-top: 2px;
}

.site-footer .footer-utility a {
  color: var(--spark-dark);
  font-weight: 750;
}

.use-case-main {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto 70px;
}

.use-case-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 34px;
  align-items: end;
  padding: 40px 42px 36px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 229, 207, 0.8), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.88), rgba(255, 247, 233, 0.72));
  box-shadow: 0 18px 48px rgba(99, 62, 24, 0.08);
}

.use-case-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(44px, 6vw, 74px);
  line-height: 0.98;
}

.use-case-lede {
  max-width: 630px;
  margin: 22px 0 0;
  color: #3e3831;
  font-size: 20px;
  line-height: 1.55;
}

.use-case-cta {
  width: auto;
  min-height: 52px;
  padding: 0 22px;
  align-self: end;
  white-space: nowrap;
}

.use-case-cta:focus-visible,
.example-list span:focus-visible {
  outline: 3px solid rgba(233, 79, 19, 0.35);
  outline-offset: 3px;
}

.use-case-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.use-case-panel {
  padding: 27px 26px 25px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 252, 246, 0.68);
  box-shadow: 0 14px 34px rgba(99, 62, 24, 0.06);
}

.use-case-panel h2,
.example-section h2,
.faq-section h2,
.use-case-note h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.14;
}

.use-case-panel p,
.faq-item p,
.use-case-note p {
  margin: 0;
  color: #4f4942;
  font-size: 16px;
  line-height: 1.58;
}

.example-section {
  margin-top: 22px;
  padding: 30px 0 28px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.example-section h2 {
  margin-bottom: 16px;
}

.example-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.example-list span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 11px 16px;
  border: 1px solid var(--spark-border);
  border-radius: var(--radius-pill);
  background: rgba(255, 251, 243, 0.76);
  color: #302a25;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: 0 8px 22px rgba(197, 91, 25, 0.07);
}

.faq-section {
  margin-top: 24px;
  padding: 30px 0 4px;
}

.faq-section .eyebrow {
  margin-bottom: 9px;
}

.faq-section h2 {
  font-size: clamp(30px, 4vw, 42px);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.faq-item {
  padding: 22px 24px 21px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 252, 246, 0.62);
  box-shadow: 0 12px 30px rgba(99, 62, 24, 0.05);
}

.faq-item h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.16;
}

.use-case-note {
  max-width: 760px;
  margin: 34px auto 0;
  text-align: center;
}

.use-case-note h2 {
  font-size: clamp(32px, 4vw, 46px);
}

.use-case-note p {
  font-size: 18px;
  line-height: 1.55;
}

@media (max-width: 1120px) {
  .page {
    width: min(100% - 32px, 760px);
  }

  .site-header {
    margin-bottom: 48px;
  }

  body > .site-header {
    width: min(100% - 32px, 760px);
    margin: 28px auto 48px;
  }

  .nav-links {
    gap: 24px;
  }

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

  .signup-panel {
    max-width: 620px;
  }

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

  .legal-main,
  .site-footer {
    width: min(100% - 32px, 760px);
  }
}

@media (max-width: 680px) {
  .page {
    width: min(100% - 24px, 520px);
    padding-top: 20px;
  }

  .site-header {
    margin-bottom: 42px;
  }

  body > .site-header {
    width: min(100% - 24px, 520px);
    margin: 20px auto 42px;
  }

  .brand-name {
    font-size: 25px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .brand-mark img {
    width: 25px;
    height: 32px;
  }

  .nav-links {
    display: none;
  }

  h1 {
    font-size: 56px;
    line-height: 0.98;
  }

  .hero-lede {
    font-size: 18px;
  }

  .reminder-chip {
    min-height: 44px;
  }

  .thought-path {
    height: 132px;
    margin-bottom: -14px;
    transform: scale(0.84);
    transform-origin: left top;
  }

  .signup-panel {
    padding: 28px 22px;
    border-radius: 26px;
  }

  .panel-heading h2 {
    font-size: 34px;
  }

  .phone-input-shell,
  input[type="text"] {
    height: 56px;
  }

  .consent-copy {
    font-size: 12.5px;
  }

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

  .legal-main,
  .site-footer {
    width: min(100% - 24px, 520px);
  }

  .legal-header {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .site-footer {
    display: block;
  }

  .site-footer nav {
    justify-content: flex-start;
    margin-top: 18px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 48px;
  }

  .program-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .reminder-chip {
    width: 100%;
  }
}

@media (max-width: 1120px) {
  .landing-seo-footer {
    grid-template-columns: 1fr;
  }

  .footer-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .use-case-main {
    width: min(100% - 32px, 760px);
  }

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

  .use-case-cta {
    justify-self: start;
  }

  .use-case-panels {
    grid-template-columns: 1fr;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .landing-seo-footer {
    display: grid;
  }

  .footer-link-grid {
    grid-template-columns: 1fr;
    gap: 23px;
  }

  .site-footer .footer-link-grid nav {
    margin-top: 0;
  }

  .site-footer .footer-utility {
    margin-top: 0;
  }

  .use-case-main {
    width: min(100% - 24px, 520px);
    margin-bottom: 54px;
  }

  .use-case-hero {
    padding: 30px 22px 28px;
    border-radius: 25px;
  }

  .use-case-hero h1 {
    font-size: 44px;
    line-height: 1;
  }

  .use-case-lede {
    font-size: 18px;
  }

  .use-case-cta {
    width: 100%;
  }

  .use-case-panel {
    padding: 25px 22px;
  }

  .faq-item {
    padding: 21px 20px 20px;
  }

  .example-list span {
    width: 100%;
  }

  .thought-path {
    max-width: 100%;
    overflow: hidden;
    transform: none;
  }

  .path-svg {
    left: 112px;
    width: min(260px, calc(100vw - 156px));
  }
}
