:root {
  --ink: #112016;
  --forest: #183f24;
  --forest-2: #285234;
  --moss: #c7df74;
  --cream: #f5efdf;
  --cream-2: #ebe2cf;
  --paper: #fffaf0;
  --beet: #8a2340;
  --copper: #986331;
  --line: rgba(17, 32, 22, 0.15);
  --shadow: 0 24px 70px rgba(17, 32, 22, 0.18);
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  letter-spacing: 0;
}

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

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

button,
input {
  font: inherit;
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.brand-mark img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-mark span {
  display: grid;
  gap: 2px;
}

.brand-mark strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  line-height: 1;
}

.brand-mark small,
.eyebrow,
.section-kicker {
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: clamp(16px, 2.4vw, 32px);
  color: rgba(17, 32, 22, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.desktop-nav a:hover {
  color: var(--forest);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-cta,
.button,
.mobile-buy-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  padding: 0 20px;
  color: var(--paper);
  background: var(--forest);
}

.cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--forest);
  background: rgba(255, 250, 240, 0.72);
  font-weight: 900;
  cursor: pointer;
}

.cart-button strong {
  position: absolute;
  top: -7px;
  right: -5px;
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  color: var(--forest);
  background: var(--moss);
  font-size: 0.72rem;
  line-height: 1;
  box-shadow: 0 0 0 2px var(--cream);
}

.section-band,
.section-block {
  padding-inline: clamp(18px, 5vw, 72px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding-block: clamp(42px, 7vw, 92px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -8vw -26vw auto;
  width: 46vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 35, 64, 0.22), rgba(138, 35, 64, 0));
  pointer-events: none;
}

.hero-copy,
.hero-product,
.section-block > *,
.proof-comparison > * {
  position: relative;
  z-index: 1;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin-top: 18px;
  font-size: clamp(3.2rem, 8.4vw, 7.8rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 0.98;
}

h3 {
  font-size: clamp(1.28rem, 2vw, 1.75rem);
  line-height: 1.05;
}

.hero-lede,
.feature-heading p,
.comparison-copy p,
.authority-copy p,
.offer-copy p,
.faq p {
  color: rgba(17, 32, 22, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.7;
}

.hero-lede {
  max-width: 690px;
  margin: 24px 0 0;
}

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

.micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.micro-proof span {
  min-height: 34px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(17, 32, 22, 0.76);
  background: rgba(255, 250, 240, 0.6);
  font-size: 0.8rem;
  font-weight: 800;
}

.button {
  gap: 10px;
  min-width: 182px;
  padding: 0 24px;
  border: 0;
  cursor: pointer;
}

.button-primary {
  color: var(--paper);
  background: var(--forest);
  box-shadow: 0 14px 30px rgba(24, 63, 36, 0.2);
}

.button-primary:hover,
.header-cta:hover,
.mobile-buy-bar a:hover {
  transform: translateY(-2px);
  background: #0f321a;
  box-shadow: 0 18px 34px rgba(24, 63, 36, 0.24);
}

.button-secondary {
  color: var(--forest);
  background: rgba(255, 250, 240, 0.72);
  border: 1px solid var(--line);
}

.button-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--forest);
  background: var(--moss);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 640px;
  margin: 48px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-proof div {
  padding: 22px 20px 20px 0;
}

.hero-proof div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.hero-proof dt {
  color: var(--forest);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 0.9;
}

.hero-proof dd {
  margin: 8px 0 0;
  color: rgba(17, 32, 22, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-product {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 18px;
}

.product-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(640px, 65vh);
  padding: clamp(12px, 3vw, 32px);
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: 8% 2%;
  border-radius: 48px;
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.8), rgba(202, 180, 130, 0.55));
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.product-pack {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  border-radius: 34px;
  filter: drop-shadow(0 28px 34px rgba(17, 32, 22, 0.16));
}

.stock-row,
.reassurance-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.stock-row span,
.reassurance-row span {
  min-height: 32px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(17, 32, 22, 0.72);
  background: rgba(255, 250, 240, 0.52);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pain-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 72px);
  color: var(--paper);
  background: var(--forest);
}

.pain-strip div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pain-strip p {
  margin: 0;
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  font-weight: 700;
}

.pain-strip a {
  flex: 0 0 auto;
  color: var(--moss);
  font-weight: 900;
}

.strip-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--forest);
  background: var(--moss);
  font-weight: 900;
}

.section-block {
  padding-block: clamp(70px, 10vw, 130px);
}

.split-feature {
  background: var(--paper);
}

.pain-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.42), rgba(255, 250, 240, 0.88)),
    var(--cream);
}

.pain-section h2 {
  max-width: 980px;
  margin-top: 12px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(30px, 5vw, 54px);
}

.pain-grid article {
  min-height: 250px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.78);
  box-shadow: 0 18px 44px rgba(17, 32, 22, 0.06);
}

.pain-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--forest);
  background: var(--moss);
  font-size: 0.78rem;
  font-weight: 900;
}

.pain-grid h3 {
  margin-top: 28px;
}

.pain-grid p {
  color: rgba(17, 32, 22, 0.68);
  line-height: 1.62;
}

.feature-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.64fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-top: 16px;
}

.feature-heading p,
.offer-copy p,
.authority-copy p {
  margin: 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(34px, 5vw, 58px);
}

.benefit-card,
.authority-grid article,
.purchase-card,
.compare-panel,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.72);
}

.benefit-card {
  min-height: 292px;
  padding: 28px;
}

.benefit-card h3 {
  margin-top: 28px;
}

.benefit-card p,
.authority-grid p,
.compare-panel li,
.purchase-card p,
.faq details p {
  color: rgba(17, 32, 22, 0.68);
  line-height: 1.62;
}

.benefit-icon {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--moss);
  position: relative;
}

.benefit-icon::before,
.benefit-icon::after {
  content: "";
  position: absolute;
  background: var(--forest);
}

.pulse::before {
  top: 22px;
  left: 10px;
  width: 28px;
  height: 3px;
}

.pulse::after {
  top: 13px;
  left: 18px;
  width: 12px;
  height: 22px;
  clip-path: polygon(35% 0, 70% 0, 55% 36%, 100% 36%, 38% 100%, 50% 56%, 0 56%);
}

.bolt::before {
  inset: 10px 16px;
  clip-path: polygon(52% 0, 100% 0, 62% 38%, 92% 38%, 32% 100%, 42% 55%, 0 55%);
}

.arrow::before {
  width: 24px;
  height: 4px;
  left: 12px;
  top: 22px;
}

.arrow::after {
  width: 14px;
  height: 14px;
  right: 12px;
  top: 17px;
  border-top: 4px solid var(--forest);
  border-right: 4px solid var(--forest);
  background: transparent;
  transform: rotate(45deg);
}

.leaf::before {
  width: 26px;
  height: 28px;
  left: 12px;
  top: 10px;
  border-radius: 90% 0 90% 0;
  transform: rotate(-24deg);
}

.leaf::after {
  width: 3px;
  height: 26px;
  left: 24px;
  top: 15px;
  transform: rotate(38deg);
}

.proof-comparison {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(440px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(70px, 10vw, 130px);
  color: var(--paper);
  background: var(--forest);
}

.comparison-copy .eyebrow {
  color: var(--moss);
}

.comparison-copy p {
  color: rgba(255, 250, 240, 0.78);
}

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

.compare-panel {
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 250, 240, 0.08);
  border-color: rgba(255, 250, 240, 0.18);
}

.compare-panel.featured {
  color: var(--forest);
  background: var(--paper);
}

.compare-panel ul {
  display: grid;
  gap: 14px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.compare-panel li {
  position: relative;
  padding-left: 24px;
  color: inherit;
}

.compare-panel li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--moss);
}

.compare-panel.muted li::before {
  background: var(--beet);
}

.compare-panel strong {
  display: block;
  color: var(--moss);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
}

.compare-panel.featured strong {
  color: var(--forest);
}

.authority {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  background: var(--cream);
}

.authority-copy {
  position: sticky;
  top: 112px;
}

.authority-copy h2 {
  margin: 12px 0 24px;
}

.authority-grid {
  display: grid;
  gap: 14px;
}

.authority-grid article {
  min-height: 220px;
  padding: clamp(24px, 4vw, 42px);
}

.authority-grid span {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.authority-grid h3 {
  margin-top: 18px;
}

.visual-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-block: clamp(28px, 5vw, 54px);
  background: var(--forest);
}

.visual-proof img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

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

.offer-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.58fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}

.offer-copy h2 {
  margin-top: 12px;
}

.offer-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.62fr);
  gap: clamp(18px, 4vw, 52px);
  align-items: center;
  margin-top: clamp(34px, 5vw, 62px);
}

.offer-image img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.purchase-card {
  padding: clamp(20px, 3vw, 30px);
  background: #fffdf6;
  box-shadow: 0 20px 60px rgba(17, 32, 22, 0.12);
}

.purchase-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.purchase-heading p {
  margin: 8px 0 0;
}

.purchase-heading strong {
  color: var(--forest);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
}

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

.purchase-summary span {
  display: grid;
  place-items: center;
  min-height: 46px;
  padding: 10px;
  border-radius: 8px;
  color: var(--forest);
  background: rgba(199, 223, 116, 0.22);
  font-size: 0.76rem;
  font-weight: 900;
  text-align: center;
}

.option-group {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  border: 0;
}

.option-group legend {
  margin-bottom: 12px;
  font-weight: 900;
}

.option-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.option-card.selected {
  border-color: var(--forest);
  background: rgba(199, 223, 116, 0.22);
  box-shadow: inset 0 0 0 1px var(--forest);
}

.option-card input {
  width: 18px;
  height: 18px;
  accent-color: var(--forest);
}

.option-card small {
  display: block;
  margin-top: 4px;
  color: rgba(17, 32, 22, 0.62);
  font-weight: 600;
}

.option-card b {
  font-size: 1.1rem;
}

.quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-weight: 900;
}

.discount-row {
  display: grid;
  gap: 9px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.discount-row label {
  font-weight: 900;
}

.discount-row > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.discount-row input {
  min-width: 0;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  font-weight: 800;
}

.discount-row button {
  min-height: 44px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--paper);
  background: var(--forest);
  font-weight: 900;
  cursor: pointer;
}

.discount-row p {
  min-height: 20px;
  margin: 0;
  color: rgba(17, 32, 22, 0.68);
  font-size: 0.9rem;
  font-weight: 800;
}

.stepper {
  display: grid;
  grid-template-columns: 42px 46px 42px;
  align-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.stepper button {
  display: grid;
  place-items: center;
  height: 42px;
  border: 0;
  color: var(--forest);
  background: transparent;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 900;
}

.stepper button:hover {
  background: rgba(199, 223, 116, 0.32);
}

.stepper output {
  text-align: center;
  font-weight: 900;
}

.checkout-button {
  width: 100%;
  margin-top: 22px;
}

.reassurance-row {
  justify-content: flex-start;
  margin-top: 16px;
}

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

.faq h2 {
  max-width: 760px;
  margin-top: 12px;
}

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

.faq details {
  padding: 22px 24px;
}

.faq summary {
  cursor: pointer;
  color: var(--forest);
  font-weight: 900;
}

.faq details p {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 72px) 92px;
  color: rgba(255, 250, 240, 0.7);
  background: var(--forest);
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
}

.mobile-buy-bar {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 18px;
  color: var(--paper);
  background: rgba(17, 32, 22, 0.94);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.mobile-buy-bar div {
  display: grid;
}

.mobile-buy-bar strong {
  font-size: 1.28rem;
}

.mobile-buy-bar span {
  color: rgba(255, 250, 240, 0.68);
  font-size: 0.82rem;
}

.mobile-buy-bar a {
  min-height: 44px;
  padding: 0 18px;
  color: var(--forest);
  background: var(--moss);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}

.cart-drawer.open {
  pointer-events: auto;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 32, 22, 0);
  cursor: pointer;
  transition: background 180ms ease;
}

.cart-drawer.open .cart-backdrop {
  background: rgba(17, 32, 22, 0.44);
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto auto auto auto;
  gap: 18px;
  width: min(460px, 100%);
  height: 100%;
  padding: clamp(18px, 4vw, 30px);
  background: #fffdf6;
  box-shadow: -24px 0 70px rgba(17, 32, 22, 0.22);
  transform: translateX(100%);
  transition: transform 180ms ease;
}

.cart-drawer.open .cart-panel {
  transform: translateX(0);
}

.cart-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.cart-heading h2 {
  margin-top: 6px;
  font-size: clamp(2rem, 6vw, 3rem);
}

.cart-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest);
  background: var(--paper);
  cursor: pointer;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 0;
  overflow: auto;
}

.empty-cart {
  margin: 0;
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: rgba(17, 32, 22, 0.68);
  background: var(--paper);
  font-weight: 800;
}

.cart-line {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.cart-line img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-line h3 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.96rem;
  line-height: 1.2;
}

.cart-line p {
  margin: 5px 0 0;
  color: rgba(17, 32, 22, 0.62);
  font-size: 0.86rem;
  font-weight: 700;
}

.cart-line > strong {
  color: var(--forest);
  white-space: nowrap;
}

.cart-line-actions {
  display: inline-grid;
  grid-template-columns: 32px 34px 32px auto;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
}

.cart-line-actions button {
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--forest);
  background: #fffdf6;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
}

.cart-line-actions button:not(:last-child) {
  padding: 0;
}

.cart-line-actions output {
  text-align: center;
  font-weight: 900;
}

.shipping-options {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.shipping-options legend {
  margin-bottom: 4px;
  color: var(--forest);
  font-weight: 900;
}

.shipping-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  cursor: pointer;
}

.shipping-option.selected {
  border-color: var(--forest);
  background: rgba(199, 223, 116, 0.22);
  box-shadow: inset 0 0 0 1px var(--forest);
}

.shipping-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--forest);
}

.shipping-option span {
  display: grid;
  gap: 2px;
}

.shipping-option small {
  color: rgba(17, 32, 22, 0.62);
  font-weight: 800;
}

.shipping-option b {
  color: var(--forest);
  white-space: nowrap;
}

.cart-summary {
  display: grid;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(17, 32, 22, 0.7);
  font-weight: 800;
}

.cart-summary strong {
  color: var(--ink);
}

.cart-summary .cart-total-row {
  color: var(--forest);
  font-size: 1.12rem;
}

.cart-status {
  min-height: 20px;
  margin: 0;
  color: rgba(17, 32, 22, 0.68);
  font-size: 0.9rem;
  font-weight: 800;
}

@media (max-width: 1050px) {
  .hero,
  .proof-comparison,
  .authority,
  .offer-shell,
  .feature-heading,
  .offer-copy {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .authority-copy {
    position: static;
  }

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

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

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

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

  .desktop-nav,
  .header-cta,
  .brand-mark small {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

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

  .brand-mark strong {
    font-size: 1.05rem;
  }

  h1 {
    font-size: clamp(3.15rem, 15vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.7rem);
  }

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

  .hero-proof,
  .benefit-grid,
  .compare-panels,
  .visual-proof,
  .faq-grid,
  .purchase-summary {
    grid-template-columns: 1fr;
  }

  .hero-proof div + div {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .pain-strip,
  .site-footer,
  .purchase-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .pain-strip div {
    align-items: flex-start;
  }

  .product-stage::before {
    border-radius: 30px;
  }

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

  .offer-shell {
    gap: 26px;
  }

  .option-card {
    grid-template-columns: auto 1fr;
  }

  .option-card b {
    grid-column: 2;
  }

  .mobile-buy-bar {
    display: flex;
  }

  .cart-panel {
    width: min(420px, 94vw);
  }

  .cart-line {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .cart-line > strong {
    grid-column: 2;
  }

  .cart-line img {
    width: 64px;
    height: 64px;
  }
}
