:root {
  --bg: #f7f6f2;
  --surface: #ffffff;
  --ink: #161616;
  --muted: #67625a;
  --soft: #eeebe4;
  --line: #ded8cc;
  --pink: #f472d0;
  --pink-dark: #c13d9f;
  --mint: #2f9d73;
  --amber: #cc8a22;
  --blue: #4f46e5;
  --shadow: 0 22px 70px rgba(22, 22, 22, 0.09);
  --shadow-strong: 0 32px 90px rgba(22, 22, 22, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(22, 22, 22, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 22, 22, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 56px 56px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 17px clamp(20px, 5vw, 64px);
  background: rgba(247, 246, 242, 0.92);
  border-bottom: 1px solid rgba(222, 216, 204, 0.9);
  backdrop-filter: blur(16px);
}

.brand,
.nav,
.hero-actions,
.final-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  font-size: 15px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 2px solid var(--ink);
  border-radius: 7px;
  background: var(--surface);
  box-shadow: 4px 4px 0 var(--ink);
}

.nav {
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.nav a,
.card-link,
.decision-card a,
.comparison-row a {
  transition: color 160ms ease, transform 160ms ease;
}

.nav a:hover,
.card-link:hover,
.decision-card a:hover,
.comparison-row a:hover {
  color: var(--pink-dark);
}

.header-cta,
.button,
.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 7px;
  border: 1.5px solid var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.header-cta,
.button.primary,
.card-link {
  background: var(--pink);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.header-cta {
  padding: 0 16px;
}

.button {
  padding: 0 20px;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.button.primary:hover,
.header-cta:hover,
.card-link:hover {
  transform: translate(-1px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.button.secondary {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 4px 4px 0 rgba(22, 22, 22, 0.18);
}

.button.secondary:hover {
  transform: translate(-1px, -2px);
  box-shadow: 6px 6px 0 rgba(22, 22, 22, 0.24);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
  min-height: calc(100vh - 69px);
  padding: 46px 0 52px;
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(54px, 6.4vw, 92px);
  line-height: 0.96;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 18px;
  padding: 0 12px;
  border: 1.5px solid var(--ink);
  border-radius: 7px;
  background: var(--surface);
  box-shadow: 3px 3px 0 var(--ink);
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}

.hero-subtitle {
  margin: 22px 0 0;
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  font-weight: 780;
}

.hero-body,
.section-heading p,
.inside-copy p,
.geo-copy p,
.final-cta p,
details p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.hero-body {
  max-width: 710px;
  margin: 17px 0 0;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.buyer-outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin-top: 22px;
}

.buyer-outcomes span {
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid rgba(27, 35, 54, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(32, 41, 58, 0.08);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
}

.trust-line {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 690px;
  margin-top: 18px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.hero-stack {
  position: relative;
  min-height: 760px;
  align-self: stretch;
  perspective: 1200px;
}

.hero-stack .product-card {
  position: absolute;
  min-height: auto;
  width: min(86%, 590px);
  padding: 18px;
}

.hero-stack.single-product {
  display: grid;
  place-items: center;
  min-height: 720px;
}

.hero-stack.single-product .product-card {
  position: static;
  width: min(94%, 620px);
  transform: rotate(-1.2deg);
}

.product-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 16px;
}

.product-grid.single-product-grid {
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  align-items: stretch;
}

.outcome-list {
  display: grid;
  gap: 16px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 20px;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 7px 7px 0 rgba(22, 22, 22, 0.12);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 10px 10px 0 rgba(22, 22, 22, 0.16);
}

.hero-stack .product-card:nth-child(1) {
  top: 36px;
  right: 18px;
  z-index: 3;
  transform: rotate(-1.4deg);
}

.hero-stack .product-card:nth-child(2) {
  top: 290px;
  left: 0;
  z-index: 2;
  width: min(74%, 500px);
  transform: rotate(1.2deg);
}

.hero-stack .product-card:nth-child(3) {
  right: 0;
  bottom: 0;
  z-index: 1;
  width: min(66%, 430px);
  transform: rotate(-0.9deg);
}

.hero-stack .product-card:hover {
  transform: translateY(-5px) rotate(0deg);
}

.hero-stack .product-cover {
  margin: 14px 0 16px;
}

.hero-stack .product-card h3 {
  font-size: 24px;
}

.hero-stack .product-card p {
  font-size: 14px;
}

.hero-stack .product-card ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 10px;
  margin: 14px 0 18px;
}

.product-card.featured {
  background:
    linear-gradient(135deg, rgba(244, 114, 208, 0.16), transparent 42%),
    var(--surface);
}

.product-card.freelance {
  background:
    linear-gradient(135deg, rgba(47, 157, 115, 0.12), transparent 42%),
    var(--surface);
}

.product-card.free {
  background:
    linear-gradient(135deg, rgba(204, 138, 34, 0.13), transparent 42%),
    var(--surface);
}

.product-card-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.product-card-top span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.product-card-top strong {
  font-size: 23px;
  line-height: 1;
}

.product-cover {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin: 18px 0 20px;
  border: 1.5px solid var(--ink);
  border-radius: 7px;
  background: #faf7ee;
}

.product-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.05;
}

.product-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.product-card .best-for {
  color: var(--ink);
}

.product-card ul {
  display: grid;
  gap: 8px;
  margin: 17px 0 22px;
  padding: 0;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.product-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--pink);
}

.product-card.freelance li::before {
  background: var(--mint);
}

.product-card.free li::before {
  background: var(--amber);
}

.card-link {
  margin-top: auto;
  width: 100%;
}

.compact-card {
  min-height: auto;
}

.answer-band {
  padding: 24px clamp(20px, 5vw, 64px);
  border-block: 1.5px solid var(--ink);
  background: var(--ink);
  color: white;
}

.answer-band p {
  width: min(1180px, 100%);
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.45;
}

.product-suite,
.decision,
.inside,
.first-week,
.proof-strip,
.seller-fit,
.comparison,
.geo,
.faq,
.decision-helper {
  padding: 92px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section-heading.compact {
  align-items: start;
}

.section h2,
.final-cta h2 {
  max-width: 760px;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1;
}

.section-heading p {
  max-width: 470px;
  margin: 0;
}

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

.decision-card {
  min-height: 295px;
  padding: 24px;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 6px 6px 0 rgba(22, 22, 22, 0.1);
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.decision-card:hover {
  transform: translateY(-4px);
  box-shadow: 9px 9px 0 rgba(22, 22, 22, 0.14);
}

.decision-card span {
  color: var(--pink-dark);
  font-size: 13px;
  font-weight: 950;
}

.decision-card h3 {
  margin: 18px 0 12px;
  font-size: 27px;
  line-height: 1.08;
}

.decision-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.decision-card a,
.comparison-row a {
  color: var(--ink);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.inside {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.inside-copy p {
  max-width: 620px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.inside-board {
  overflow: hidden;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.board-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: #fbfaf7;
}

.board-header span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.board-grid article {
  min-height: 160px;
  padding: 20px;
  background: var(--surface);
}

.board-grid b {
  display: block;
  font-size: 20px;
  line-height: 1.1;
}

.board-grid i {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.5;
}

.guarantee-line {
  margin-top: 16px !important;
  color: var(--muted);
  font-size: 13px !important;
  font-weight: 850;
}

.bonus-line {
  width: min(680px, 100%);
  margin: 12px auto 0 !important;
  padding: 12px 14px;
  border: 1px solid rgba(27, 35, 54, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink) !important;
  font-size: 14px !important;
  font-weight: 850;
  line-height: 1.45 !important;
}

.week-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.week-grid article {
  min-height: 190px;
  padding: 16px;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 4px 4px 0 rgba(22, 22, 22, 0.08);
}

.week-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 8px;
  border-radius: 6px;
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
}

.week-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.5;
}

.week-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.week-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

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

.proof-grid article {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 18px;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 6px 6px 0 rgba(22, 22, 22, 0.1);
}

.proof-image {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fbfaf7;
}

.proof-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-grid h3 {
  margin: 18px 0 10px;
  font-size: 24px;
  line-height: 1.05;
}

.proof-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.proof-note {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.5;
}

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

.preview-grid article {
  min-height: 100%;
  padding: 18px;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 6px 6px 0 rgba(22, 22, 22, 0.1);
}

.preview-image {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fbfaf7;
}

.preview-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-grid h3 {
  margin: 18px 0 10px;
  font-size: 24px;
  line-height: 1.08;
}

.preview-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.preview-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.preview-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

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

.instant-grid article {
  min-height: 178px;
  padding: 18px;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 5px 5px 0 rgba(22, 22, 22, 0.09);
}

.instant-grid span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfaf7;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
}

.instant-grid p {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 760;
  line-height: 1.45;
}

.instant-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.instant-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.seller-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.seller-grid article {
  min-height: 210px;
  padding: 22px;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 5px 5px 0 rgba(22, 22, 22, 0.09);
}

.seller-grid h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.08;
}

.seller-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.seller-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
  padding: 22px;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(244, 114, 208, 0.17), transparent 42%),
    var(--surface);
  box-shadow: 6px 6px 0 rgba(22, 22, 22, 0.1);
}

.seller-cta p {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 780;
  line-height: 1.5;
}

.comparison-table {
  overflow: hidden;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 0.45fr 1.25fr 1.55fr 0.95fr;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
  transition: background 160ms ease;
}

.comparison-table .comparison-row {
  grid-template-columns: 0.75fr 1.25fr 1.2fr;
}

.comparison-row:hover {
  background: #fff9fd;
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row.head {
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.comparison-row b {
  color: var(--ink);
  font-size: 16px;
}

.comparison-row.head b {
  color: white;
}

.geo {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.geo-copy {
  display: grid;
  gap: 16px;
}

.geo-copy p {
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

details {
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px 20px;
  box-shadow: 4px 4px 0 rgba(22, 22, 22, 0.08);
}

summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

details p {
  margin: 14px 0 0;
}

.decision-helper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.decision-helper h2 {
  max-width: 680px;
}

.decision-helper p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.helper-actions {
  display: grid;
  gap: 12px;
  min-width: 260px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 780px;
  margin-top: 22px;
}

.fit-card {
  min-height: 124px;
  padding: 15px;
  border: 1px solid rgba(27, 35, 54, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.fit-card.positive {
  border-color: rgba(28, 117, 92, 0.26);
  background: rgba(234, 249, 241, 0.78);
}

.fit-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.fit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.final-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 50px;
  padding: clamp(36px, 6vw, 68px);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(244, 114, 208, 0.2), transparent 38%),
    var(--surface);
  box-shadow: var(--shadow-strong);
  text-align: center;
}

.final-cta h2 {
  margin-inline: auto;
}

.final-cta p {
  max-width: 710px;
  margin: 18px auto 26px;
}

.final-actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

html.motion-ready .reveal,
html.motion-ready .product-card,
html.motion-ready .decision-card,
html.motion-ready .comparison-row,
html.motion-ready details {
  opacity: 1;
  transform: translateY(10px);
  transition: opacity 560ms ease, transform 560ms ease, box-shadow 180ms ease, background 180ms ease;
  transition-delay: var(--delay, 0ms);
}

html.motion-ready .is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .nav {
    display: none;
  }

  .hero,
  .inside,
  .geo,
  .decision-helper {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-grid,
  .product-grid.single-product-grid,
  .decision-grid,
  .week-grid,
  .proof-grid,
  .preview-grid,
  .instant-grid,
  .seller-grid {
    grid-template-columns: 1fr;
  }

  .seller-cta {
    grid-template-columns: 1fr;
  }

  .week-grid article {
    min-height: auto;
  }

  .hero-stack .product-card:nth-child(n) {
    position: static;
    width: 100%;
    transform: none;
  }

  .hero-stack {
    display: grid;
    gap: 14px;
    min-height: auto;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-row,
  .comparison-table .comparison-row {
    min-width: 760px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span:last-child {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-cta {
    display: none;
  }

  .section,
  .final-cta {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding: 36px 0 44px;
  }

  .hero h1 {
    font-size: 47px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

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

  .product-suite,
  .decision,
  .inside,
  .first-week,
  .proof-strip,
  .seller-fit,
  .comparison,
  .geo,
  .faq,
  .decision-helper {
    padding: 62px 0;
  }

  .product-card {
    min-height: auto;
  }

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

  .answer-band {
    padding: 20px 14px;
  }

  .answer-band p {
    font-size: 16px;
  }

  .section h2,
  .final-cta h2 {
    font-size: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  html.motion-ready .reveal,
  html.motion-ready .product-card,
  html.motion-ready .decision-card,
  html.motion-ready .comparison-row,
  html.motion-ready details {
    opacity: 1 !important;
    transform: none !important;
  }
}
