:root {
  --ink: #171717;
  --body: #5f6368;
  --paper: #ffffff;
  --wash: #f7f8fb;
  --tint: #fff4ed;
  --line: #e1e4e8;
  --accent: #f05a28;
  --accent-dark: #b83d17;
  --accent-soft: #ffe1d2;
  --accent-warm: #12877f;
  --accent-warm-soft: #dff3ef;
  --spotlight: #171717;
  --spotlight-soft: #28231f;
  --note: #fff8dc;
  --note-line: #eadb9a;
  --danger-soft: #fff1ed;
  --radius: 8px;
  --shadow: 0 14px 36px rgba(23, 23, 23, 0.1);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.hero-actions,
.hero-points,
.pill-list,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 850;
  text-decoration: none;
}

.brand-logo {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.nav-links {
  gap: 22px;
  color: var(--body);
  font-size: 0.95rem;
}

.nav-links a,
.header-cta {
  text-decoration: none;
}

.nav-links a:hover,
.header-cta:hover {
  color: var(--accent-dark);
}

.header-cta {
  color: var(--accent-dark);
  font-weight: 850;
}

main > section {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 4vw, 48px);
  border-top: 1px solid var(--line);
}

main > section:first-child {
  border-top: 0;
}

.hero {
  max-width: 980px;
  margin: 0 auto;
  padding-top: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(58px, 8vw, 96px);
  text-align: center;
}

.hero-copy {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .eyebrow {
  max-width: 760px;
  margin: 0 auto 26px;
  font-size: clamp(0.96rem, 1.6vw, 1.14rem);
  line-height: 1.35;
  letter-spacing: 0.03em;
  text-transform: none;
}

.hero .eyebrow::after {
  display: block;
  width: 92px;
  height: 4px;
  margin: 22px auto 0;
  content: "";
  background: var(--accent);
  border-radius: 999px;
}

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

h1 {
  max-width: 960px;
  margin-right: auto;
  margin-bottom: 22px;
  margin-left: auto;
  font-size: clamp(2.55rem, 7vw, 5.05rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.85rem, 3.8vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  color: var(--body);
}

.lead {
  max-width: 690px;
  margin-right: auto;
  margin-left: auto;
  color: #34443f;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero-actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 30px 0 24px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button.primary {
  color: var(--paper);
  background: var(--accent);
  box-shadow: 0 10px 26px rgba(240, 90, 40, 0.22);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  color: var(--accent-dark);
  background: var(--paper);
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: var(--accent);
}

.button.full {
  width: 100%;
}

.hero-points {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li,
.pill-list span {
  padding: 8px 12px;
  color: #34443f;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
}

.section-heading,
.narrow-copy {
  max-width: 820px;
}

.section-heading.centered,
.narrow-copy.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.placements-section .section-heading,
.setup-section .section-heading,
.guarantee-section .section-heading {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.section-heading p,
.narrow-copy p {
  font-size: 1.06rem;
}

.demo-section,
.placements-section,
.setup-section,
.final-cta-section,
.faq-section {
  background: var(--wash);
}

.video-placeholder {
  display: block;
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 1030px;
  min-height: 250px;
  margin: 34px auto 0;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(23, 23, 23, 0.98), rgba(61, 45, 37, 0.98)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px);
  border: 1px solid #3b332e;
  border-radius: var(--radius);
  text-align: center;
}

.bunny-video-embed {
  position: relative;
  width: 100%;
  height: 100%;
}

.bunny-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.demo-cta {
  display: flex;
  justify-content: center;
  max-width: 1030px;
  margin: 18px auto 0;
}

.demo-cta-button {
  width: min(100%, 920px);
  min-height: 58px;
  padding-right: 28px;
  padding-left: 28px;
  font-size: clamp(1rem, 2vw, 1.14rem);
}

.story-section,
.math-section,
.outcome-section,
.product-section,
.features-section,
.training-section,
.digital-products-section,
.handoff-section {
  max-width: var(--max);
  margin: 0 auto;
}

.math-section {
  padding-top: clamp(34px, 5vw, 64px);
  padding-bottom: clamp(34px, 5vw, 64px);
}

.math-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(23, 23, 23, 0.12);
}

.question-grid,
.card-grid,
.feature-list-grid,
.steps-grid,
.pricing-grid,
.trust-grid,
.split-copy,
.comparison-strip {
  display: grid;
  gap: 16px;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.question-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 32px 0;
}

.question-grid.compact {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.question-card,
.split-copy > div,
.feature-card,
.mini-card,
.outcome-grid article,
.feature-list-grid article,
.trust-grid article,
.bullet-panel,
.callout-panel,
.plain-message,
.rich-message,
.pricing-card,
.steps-grid article,
.guarantee-box,
details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.feature-card,
.mini-card,
.outcome-grid article,
.feature-list-grid article,
.trust-grid article,
.steps-grid article {
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.mini-card::before,
.outcome-grid article::before,
.feature-list-grid article::before,
.trust-grid article::before,
.steps-grid article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: var(--accent-soft);
}

.feature-card:nth-child(2n)::before,
.mini-card:nth-child(2n)::before,
.outcome-grid article:nth-child(2n)::before,
.feature-list-grid article:nth-child(2n)::before,
.trust-grid article:nth-child(2n)::before,
.steps-grid article:nth-child(2n)::before {
  background: var(--accent-warm-soft);
}

.outcome-grid article {
  padding: 24px;
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--max);
  margin: 34px auto 0;
}

.trust-grid article {
  padding: 24px;
}

.outcome-grid span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.question-card {
  display: flex;
  min-height: 104px;
  align-items: center;
  padding: 22px;
  color: #263632;
  font-size: 1.02rem;
  font-weight: 800;
}

.question-card.accent {
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-color: #c8e5db;
}

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

.split-copy > div,
.bullet-panel,
.callout-panel,
.guarantee-box {
  padding: clamp(24px, 4vw, 38px);
}

.byok-section,
.guarantee-section {
  background: var(--tint);
}

.bonus-section {
  background: linear-gradient(135deg, #fff9f4 0%, #eef9f7 100%);
}

.support-bonus-section {
  background: linear-gradient(135deg, #eef9f7 0%, #fff9f4 100%);
}

.bonus-availability-section {
  padding-top: 30px;
  padding-bottom: 44px;
  border-top: 0;
  background: linear-gradient(135deg, #eef9f7 0%, #fff9f4 100%);
}

.bonus-availability-note {
  max-width: var(--max);
  padding: 22px clamp(20px, 3vw, 30px);
  border: 1px solid rgba(240, 90, 40, 0.22);
  border-left: 6px solid var(--accent);
  border-radius: var(--radius);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  color: #34443f;
  font-size: 1.04rem;
}

.bonus-availability-note p {
  margin: 0;
}

.bonus-availability-note strong {
  color: var(--accent-dark);
}

.bonus-shell {
  display: grid;
  max-width: var(--max);
  align-items: center;
  gap: clamp(28px, 5vw, 58px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  margin-right: auto;
  margin-left: auto;
}

.bonus-shell-flipped {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.bonus-copy {
  max-width: 650px;
}

.bonus-copy .button {
  margin-top: 8px;
}

.bonus-points {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 24px 0 18px;
  padding: 0;
  list-style: none;
}

.bonus-points li {
  position: relative;
  min-height: 56px;
  padding: 13px 14px 13px 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 820;
  line-height: 1.25;
}

.bonus-points li::before {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-warm);
  box-shadow: 0 0 0 5px var(--accent-warm-soft);
  content: "";
  transform: translateY(-50%);
}

.bonus-note {
  padding: 15px 18px;
  border-left: 4px solid var(--accent);
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.72);
  color: #34443f;
  font-weight: 680;
}

.bonus-preview {
  display: grid;
  gap: 14px;
}

.bonus-preview-heading {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 4px 10px 6px;
  text-align: center;
}

.bonus-preview-heading p {
  margin: 0;
  color: var(--accent);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 920;
  line-height: 1;
  text-transform: uppercase;
}

.bonus-preview-heading strong {
  color: var(--ink);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.16;
}

.bonus-preview-heading span {
  max-width: 560px;
  color: #34443f;
  font-size: 1rem;
  line-height: 1.35;
}

.bonus-preview-frame {
  padding: clamp(12px, 2vw, 18px);
  border: 1px solid rgba(18, 135, 127, 0.2);
  border-radius: var(--radius);
  background: #171717;
  box-shadow: var(--shadow);
}

.bonus-preview-frame img {
  width: 100%;
  border-radius: 6px;
}

.bonus-mini-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bonus-mini-grid div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.bonus-mini-grid strong,
.bonus-mini-grid span {
  display: block;
}

.bonus-mini-grid strong {
  margin-bottom: 4px;
  color: var(--ink);
  line-height: 1.2;
}

.bonus-mini-grid span {
  color: var(--body);
  font-size: 0.94rem;
  line-height: 1.45;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--paper);
  background: var(--spotlight);
  border-top-color: var(--spotlight);
}

.cta-band > div,
.byok-section .two-column,
.training-section .two-column {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.cta-band > div {
  max-width: 800px;
  margin: 0;
}

.cta-band h2 {
  max-width: 800px;
  margin-bottom: 0;
  color: var(--paper);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.cta-band .eyebrow {
  color: #86d7cc;
}

.cta-band .cta-emphasis {
  color: var(--accent);
}

.card-grid {
  margin-top: 34px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.feature-card {
  padding: 28px;
}

.card-kicker,
.plan-label,
.steps-grid span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill-list {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 930px;
  margin: 30px auto 0;
}

.placements-section .pill-list {
  max-width: var(--max);
  justify-content: flex-start;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
}

.two-column.reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: #34443f;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--accent);
  border-radius: 50%;
}

.check-list li::after {
  position: absolute;
  left: 0;
  top: 10px;
  width: 18px;
  height: 18px;
  color: var(--paper);
  content: "\2713";
  font-size: 12px;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}

.comparison-strip {
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  margin-top: 32px;
}

.plain-message,
.rich-message {
  padding: clamp(24px, 4vw, 36px);
}

.plain-message {
  background: var(--danger-soft);
}

.rich-message {
  background: var(--accent-soft);
}

.plain-message span,
.rich-message span {
  display: block;
  margin-bottom: 14px;
  color: var(--body);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plain-message strong {
  display: block;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  line-height: 1.08;
}

.rich-message ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rich-message li {
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(220, 231, 227, 0.9);
  border-radius: 7px;
  font-weight: 750;
}

.mini-card {
  padding: 22px;
}

.mini-card h3 {
  font-size: 1.04rem;
}

.mini-card p,
.feature-card p,
.feature-list-grid p,
.trust-grid p,
.pricing-card p {
  color: var(--body);
}

.feature-list-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.feature-list-grid article {
  padding: 22px;
}

.feature-brand-card {
  display: flex;
  min-height: 240px;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 253, 252, 0.94)),
    var(--paper);
}

.feature-brand-card img {
  width: min(86%, 330px);
  margin: 0 auto;
}

.feature-list-grid h3 {
  font-size: 1.03rem;
}

.simple-line {
  padding: 16px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border: 1px solid #c8e5db;
  border-radius: var(--radius);
  font-weight: 850;
}

.note {
  margin-top: 18px;
  padding: 14px;
  color: #614d12;
  background: var(--note);
  border: 1px solid var(--note-line);
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--max);
  margin: 34px auto 0;
}

.steps-grid article {
  padding: 24px;
}

.pricing-section {
  color: var(--paper);
  background: var(--spotlight);
  border-top-color: var(--spotlight);
}

.pricing-section h2,
.pricing-section h3,
.pricing-section .price {
  color: inherit;
}

.pricing-section .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.pricing-section .eyebrow,
.pricing-section .plan-label,
.pricing-section .comparison-table th {
  color: #86d7cc;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1040px;
  margin: 38px auto;
}

.pro-pricing-grid {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 4vw, 38px);
  color: var(--paper);
  background: var(--spotlight-soft);
  border-color: rgba(255, 255, 255, 0.13);
}

.pricing-card.featured {
  color: var(--ink);
  background: var(--paper);
  border: 2px solid #86d7cc;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.price {
  margin: 10px 0 12px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: 0;
}

.plan-summary {
  min-height: 78px;
}

.pricing-card .check-list {
  flex: 1;
  margin: 10px 0 24px;
}

.wplus-buy-button {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: auto;
}

.wplus-buy-button a {
  display: inline-flex;
  justify-content: center;
  max-width: 100%;
}

.wplus-buy-button img {
  width: auto;
  max-width: min(100%, 360px);
  height: auto;
}

.pricing-card p,
.pricing-card .check-list li {
  color: rgba(255, 255, 255, 0.74);
}

.pricing-card.featured p,
.pricing-card.featured .check-list li {
  color: var(--body);
}

.comparison-note {
  max-width: 930px;
  margin: 34px auto 22px;
  padding: 22px 24px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  text-align: center;
}

.comparison-note h3 {
  max-width: 780px;
  margin: 0 auto 10px;
  color: var(--paper);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.comparison-note p {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
}

.comparison-table-wrap {
  max-width: 1040px;
  margin: 0 auto;
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-section .comparison-table th {
  color: #ffb69d;
}

.pricing-section .pricing-card:not(.featured) .price {
  color: var(--paper);
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.guarantee-box {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 52px);
  text-align: center;
  border-color: #f0c8b6;
  box-shadow: 0 18px 42px rgba(184, 61, 23, 0.09);
}

.guarantee-box h2 {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}

.guarantee-box p:not(.eyebrow) {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}

.guarantee-box .button {
  margin-top: 12px;
}

.faq-list {
  max-width: 900px;
  margin: 30px auto 0;
}

details + details {
  margin-top: 10px;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.signoff-section {
  background: var(--paper);
}

.signoff-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 34px);
  max-width: 920px;
  margin: 0 auto;
}

.signoff-avatar {
  width: clamp(130px, 16vw, 188px);
  height: clamp(130px, 16vw, 188px);
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.signoff-copy {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 30px);
  padding-left: clamp(18px, 3vw, 32px);
  border-left: 1px solid var(--line);
}

.signoff-signature {
  width: clamp(125px, 17vw, 190px);
  height: auto;
  flex: 0 0 auto;
}

.signoff-copy p {
  max-width: 390px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  font-weight: 850;
  line-height: 1.25;
}

.site-footer {
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 34px clamp(18px, 4vw, 48px) 44px;
  color: var(--paper);
  background: var(--ink);
  text-align: center;
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-main {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.footer-pricing-link {
  color: var(--accent);
  font-size: 1.02rem;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-pricing-link:hover {
  color: #ffb69d;
}

.legal-footer {
  margin-top: 10px;
  color: var(--paper);
}

.legal-footer p {
  margin: 0 0 8px;
  color: var(--paper);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.legal-links a,
.legal-links span {
  color: var(--paper);
  font-weight: 750;
  text-decoration: none;
}

.legal-links a:hover {
  color: #ffb69d;
}

@media (max-width: 1040px) {
  .two-column,
  .two-column.reverse {
    grid-template-columns: 1fr;
  }

  .card-grid.five,
  .outcome-grid,
  .trust-grid,
  .feature-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .question-grid,
  .outcome-grid,
  .trust-grid,
  .split-copy,
  .card-grid.three,
  .comparison-strip,
  .pricing-grid,
  .bonus-shell,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .rich-message ul {
    grid-template-columns: 1fr;
  }

  .signoff-inner {
    justify-content: flex-start;
  }

  .signoff-copy {
    align-items: flex-start;
    flex-direction: column;
  }

  .plan-summary {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  main > section,
  .hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .site-header {
    padding-right: 16px;
    padding-left: 16px;
  }

  .header-cta {
    display: none;
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .signoff-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .signoff-copy {
    padding-left: 0;
    border-left: 0;
  }

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

  .card-grid.five,
  .bonus-points,
  .bonus-mini-grid,
  .feature-list-grid {
    grid-template-columns: 1fr;
  }

  .bonus-copy .button {
    width: 100%;
  }

  .question-card {
    min-height: 86px;
  }
}
