:root {
  --ivory: #faf7f0;
  --teal: #176b6a;
  --teal-dark: #0f4e52;
  --color-accent: #A94E63;
  --color-accent-hover: #8F3F52;
  --color-accent-light: #F7E9EC;
  --color-accent-dark: #5E2936;
  --color-focus-ring: rgba(169, 78, 99, 0.28);
  --sage: #eef4ef;
  --graphite: #1f2a37;
  --muted: #5d6b78;
  --gold: #d8b56d;
  --white: #fffdf9;
  --line: rgba(23, 107, 106, .16);
  --shadow: 0 20px 50px rgba(31, 42, 55, .11);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--graphite);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 8%, rgba(216, 181, 109, .14), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(23, 107, 106, .1), transparent 26%);
  z-index: -1;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
p { margin: 0 0 1rem; }
h1, h2, h3 {
  margin: 0 0 1rem;
  color: var(--teal-dark);
  line-height: 1.08;
}
h1, h2 { font-family: "Lora", Georgia, serif; font-weight: 700; }
h1 { font-size: clamp(2.25rem, 4.8vw, 4.45rem); letter-spacing: 0; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); letter-spacing: 0; }
h3 { font-size: 1.15rem; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--teal);
  color: white;
  padding: .75rem 1rem;
  border-radius: 999px;
  z-index: 100;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  padding: .8rem clamp(1rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  background: rgba(250, 247, 240, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--teal-dark);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.72rem;
  font-weight: 800;
  letter-spacing: -.03em;
  text-decoration: none;
  white-space: nowrap;
}
.logo-mark {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  display: block;
  object-fit: contain;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-weight: 700;
  color: var(--teal-dark);
}
.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.nav-cta {
  min-width: 132px;
  padding: .78rem 1.1rem;
  border-radius: 999px;
  color: white !important;
  background: var(--color-accent);
  justify-content: center;
  text-align: center;
}
.nav-cta:hover { background: var(--color-accent-hover); }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--teal-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  max-width: 1240px;
  min-height: 0;
  margin: 0 auto;
  gap: clamp(1rem, 2.4vw, 2.4rem);
  padding: clamp(1.25rem, 3.2vw, 3rem) clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  padding: 0;
  align-self: center;
}
.eyebrow {
  color: var(--color-accent);
  font-weight: 800;
  letter-spacing: .16em;
  font-size: .78rem;
  text-transform: uppercase;
}
.hero-text {
  max-width: 760px;
  color: #244357;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}
.hero h1 {
  max-width: 620px;
  font-size: clamp(1.65rem, 2.45vw, 2.35rem);
  line-height: 1.12;
}
.hero-actions,
.final-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.button {
  min-height: 52px;
  min-width: 168px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  padding: .95rem 1.25rem;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.button-primary { background: var(--color-accent); color: white; box-shadow: 0 14px 28px rgba(169, 78, 99, .24); }
.button-primary:hover { background: var(--color-accent-hover); }
.button.full { width: 100%; }
.button-secondary { border: 1px solid var(--teal); color: var(--teal-dark); background: rgba(255, 253, 249, .72); }
.button-secondary:hover {
  border-color: var(--color-accent-hover);
  color: var(--color-accent-dark);
  background: var(--color-accent-light);
}
.button:focus-visible,
.site-nav a:focus-visible,
.nav-toggle:focus-visible,
.faq summary:focus-visible,
.sticky-mobile-cta:focus-visible {
  outline: 3px solid var(--color-focus-ring);
  outline-offset: 3px;
}
.trust-line {
  margin-top: 1.5rem;
  color: var(--teal-dark);
  font-weight: 700;
}
.availability-note {
  max-width: 680px;
  color: var(--muted);
  font-size: .98rem;
}
.hero-media {
  align-self: center;
  min-height: 0;
}
.hero-media img {
  width: 100%;
  height: auto;
  max-height: 620px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.benefit-strip,
.section,
.final-cta,
.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(2.4rem, 5vw, 4.5rem) clamp(1rem, 4vw, 2rem);
}
.benefit-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.benefit-strip article,
.feature-card,
.simple-card,
.activity-grid article,
.lead-form,
.not-for,
details,
blockquote {
  background: rgba(255, 253, 249, .9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.benefit-strip article { padding: 1.35rem; }
.benefit-strip span[class^="icon"] {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--teal);
  font-weight: 800;
}
.benefit-strip span[class^="icon"]::before {
  content: "";
  width: 28px;
  height: 28px;
  display: block;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.icon-heart::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2.4l1.7 4.4 4.5 1.6-4.3 1.9-1.9 4.3-1.9-4.3-4.3-1.9 4.5-1.6L12 2.4zM18.4 13.2l.9 2.3 2.3.9-2.3.9-.9 2.3-.9-2.3-2.3-.9 2.3-.9.9-2.3zM6.2 14.1l.7 1.8 1.8.7-1.8.7-.7 1.8-.7-1.8-1.8-.7 1.8-.7.7-1.8z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2.4l1.7 4.4 4.5 1.6-4.3 1.9-1.9 4.3-1.9-4.3-4.3-1.9 4.5-1.6L12 2.4zM18.4 13.2l.9 2.3 2.3.9-2.3.9-.9 2.3-.9-2.3-2.3-.9 2.3-.9.9-2.3zM6.2 14.1l.7 1.8 1.8.7-1.8.7-.7 1.8-.7-1.8-1.8-.7 1.8-.7.7-1.8z'/%3E%3C/svg%3E");
}
.icon-move::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.1 3.4a2.2 2.2 0 114.4 0 2.2 2.2 0 01-4.4 0zm2.5 4.1c1.4 0 2.5.7 3.2 1.9l1.1 1.9 2.4-1.4a1.4 1.4 0 011.4 2.4l-3.6 2.1a1.7 1.7 0 01-2.3-.6l-.7-1.2-1 3.1 2.8 2.8a1.5 1.5 0 01-2.1 2.1l-3.4-3.4a1.6 1.6 0 01-.4-1.6l.9-2.9-1.5 1.1-1.4 2.6a1.5 1.5 0 01-2.6-1.4l1.5-2.8c.1-.3.4-.6.7-.8l3.1-2.3c.6-.4 1.2-.6 1.9-.6z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.1 3.4a2.2 2.2 0 114.4 0 2.2 2.2 0 01-4.4 0zm2.5 4.1c1.4 0 2.5.7 3.2 1.9l1.1 1.9 2.4-1.4a1.4 1.4 0 011.4 2.4l-3.6 2.1a1.7 1.7 0 01-2.3-.6l-.7-1.2-1 3.1 2.8 2.8a1.5 1.5 0 01-2.1 2.1l-3.4-3.4a1.6 1.6 0 01-.4-1.6l.9-2.9-1.5 1.1-1.4 2.6a1.5 1.5 0 01-2.6-1.4l1.5-2.8c.1-.3.4-.6.7-.8l3.1-2.3c.6-.4 1.2-.6 1.9-.6z'/%3E%3C/svg%3E");
}
.icon-people::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.2 10.7a3.5 3.5 0 100-7 3.5 3.5 0 000 7zm6.9.2a3 3 0 100-6 3 3 0 000 6zM3 18.9c0-3.5 2.8-6.2 6.2-6.2s6.2 2.7 6.2 6.2v.5c0 .7-.5 1.2-1.2 1.2h-10c-.7 0-1.2-.5-1.2-1.2v-.5zm12.5-5.1c1.1.9 1.9 2.3 2.2 3.8h2.6c.6 0 1.1-.5 1.1-1.1v-.3c0-2.6-2.1-4.7-4.7-4.7-1 0-1.9.3-2.7.8.6.4 1.1.9 1.5 1.5z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.2 10.7a3.5 3.5 0 100-7 3.5 3.5 0 000 7zm6.9.2a3 3 0 100-6 3 3 0 000 6zM3 18.9c0-3.5 2.8-6.2 6.2-6.2s6.2 2.7 6.2 6.2v.5c0 .7-.5 1.2-1.2 1.2h-10c-.7 0-1.2-.5-1.2-1.2v-.5zm12.5-5.1c1.1.9 1.9 2.3 2.2 3.8h2.6c.6 0 1.1-.5 1.1-1.1v-.3c0-2.6-2.1-4.7-4.7-4.7-1 0-1.9.3-2.7.8.6.4 1.1.9 1.5 1.5z'/%3E%3C/svg%3E");
}

.two-column,
.emotional,
.honesty,
.purchase-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.section-soft {
  max-width: min(1180px, calc(100% - 2rem));
  background: var(--sage);
  border-radius: 30px;
  border: 1px solid var(--line);
}
.section-heading {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}
.card-grid {
  display: grid;
  gap: 1rem;
}
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.feature-card,
.simple-card {
  padding: 1.4rem;
  text-align: center;
}
.card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  display: block;
  border-radius: 18px;
  background: white;
  color: var(--teal);
  border: 1px solid var(--line);
  position: relative;
}
.card-icon::before,
.card-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.icon-headset::before {
  width: 42px;
  height: 24px;
  border: 3px solid var(--teal);
  border-radius: 12px 12px 16px 16px;
}
.icon-headset::after {
  width: 18px;
  height: 8px;
  border-left: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
}
.icon-app::before {
  width: 34px;
  height: 44px;
  border: 3px solid var(--teal);
  border-radius: 9px;
}
.icon-app::after {
  width: 18px;
  height: 18px;
  background:
    linear-gradient(var(--gold), var(--gold)) 0 0 / 7px 7px no-repeat,
    linear-gradient(var(--color-accent), var(--color-accent)) 11px 0 / 7px 7px no-repeat,
    linear-gradient(var(--teal), var(--teal)) 0 11px / 7px 7px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 11px 11px / 7px 7px no-repeat;
}
.icon-start::before {
  width: 38px;
  height: 38px;
  border: 3px solid var(--teal);
  border-radius: 50%;
}
.icon-start::after {
  width: 18px;
  height: 18px;
  border-right: 4px solid var(--color-accent);
  border-bottom: 4px solid var(--color-accent);
  transform: translate(-62%, -50%) rotate(-45deg);
}
.icon-safe::before {
  width: 34px;
  height: 40px;
  border: 3px solid var(--teal);
  border-radius: 18px 18px 10px 10px;
  clip-path: polygon(50% 0, 100% 18%, 88% 78%, 50% 100%, 12% 78%, 0 18%);
}
.icon-safe::after {
  width: 16px;
  height: 14px;
  border: 3px solid var(--gold);
  border-radius: 4px;
  box-shadow: 0 -9px 0 -5px var(--gold);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}
.check-list li {
  margin: .6rem 0;
  padding-left: 2rem;
  position: relative;
}
.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: .2rem;
  border-radius: 50%;
  background: var(--color-accent);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.steps article {
  position: relative;
  padding: 1.5rem;
  border-top: 2px solid var(--gold);
}
.steps span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-weight: 800;
  margin-bottom: 1rem;
}
.emotional img,
.honesty img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
blockquote {
  margin: 1.5rem 0 0;
  padding: 1.5rem;
  color: var(--teal-dark);
  font: 600 clamp(1.35rem, 2vw, 1.8rem)/1.25 "Lora", Georgia, serif;
}
.activity-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
}
.activity-showcase figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.activity-showcase img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.activity-showcase figcaption {
  padding: .85rem 1rem 1rem;
  color: var(--muted);
  font-size: .92rem;
}
.activity-list {
  display: grid;
  gap: .85rem;
}
.activity-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  background: rgba(255, 253, 249, .9);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(31, 42, 55, .07);
}
.activity-list span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--teal);
  font-weight: 800;
}
.activity-list h3 { margin-bottom: .3rem; }
.activity-list p { margin: 0; color: var(--muted); }
.small-note,
.disclaimer,
.microcopy {
  color: var(--muted);
  font-size: .95rem;
}
.comfort-list {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}
.comfort-list span {
  padding: .85rem 1rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--teal-dark);
  font-weight: 700;
}
.disclaimer {
  max-width: 850px;
  margin: 1.5rem auto 0;
  text-align: center;
}
.not-for {
  margin-top: 1rem;
  padding: 1.4rem;
  box-shadow: none;
}

.purchase-panel {
  max-width: min(1180px, calc(100% - 2rem));
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-radius: 32px;
  color: white;
}
.purchase-panel h2,
.purchase-panel .eyebrow { color: white; }
.purchase-copy p { color: rgba(255,255,255,.84); }
.lead-form {
  padding: 1.3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  color: var(--graphite);
}
.lead-form label {
  display: grid;
  gap: .35rem;
  color: var(--teal-dark);
  font-weight: 800;
}
.lead-form label span { color: var(--muted); font-weight: 600; }
input, select, textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(23, 107, 106, .28);
  border-radius: 12px;
  padding: .85rem .9rem;
  font: inherit;
  background: white;
  color: var(--graphite);
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-focus-ring);
  border-color: var(--color-accent);
}
textarea { resize: vertical; }
.full { grid-column: 1 / -1; }
.checkbox {
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
  gap: .65rem !important;
  font-weight: 600 !important;
}
.checkbox input { width: 22px; min-height: 22px; margin-top: .2rem; }
input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--color-accent);
}
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-errors {
  grid-column: 1 / -1;
  padding: 1rem;
  border-radius: 14px;
  background: #fff0eb;
  color: #8a2f1e;
}

.faq details {
  box-shadow: none;
  margin-bottom: .75rem;
  padding: 1rem 1.2rem;
}
.faq summary {
  cursor: pointer;
  color: var(--teal-dark);
  font-weight: 800;
}
.faq p { margin: .75rem 0 0; color: var(--muted); }
.final-cta {
  max-width: min(1180px, calc(100% - 2rem));
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.final-cta p { max-width: 520px; }
.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.8fr;
  gap: 2rem;
  color: white;
  background: var(--teal-dark);
  max-width: none;
}
.site-footer .logo,
.site-footer h3 { color: white; }
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.2rem;
}
.site-footer nav h3 {
  flex-basis: 100%;
  margin: 0 0 .1rem;
  font-size: 1rem;
}
.site-footer a { text-decoration: none; }
address { font-style: normal; }
.sticky-mobile-cta { display: none; }

.simple-page,
.legal-page {
  min-height: 100vh;
  padding: 2rem;
}
.simple-shell,
.legal-page main {
  max-width: 760px;
  margin: 8vh auto;
  padding: clamp(1.5rem, 5vw, 3rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.legal-warning {
  padding: 1rem;
  border-radius: 14px;
  background: #fff0db;
  color: #6e4d10;
  font-weight: 700;
}
.checkout-hero,
.checkout-grid,
.legal-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(2.4rem, 5vw, 4.5rem) clamp(1rem, 4vw, 2rem);
}
.checkout-hero {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.8vw, 1.75rem);
  border-bottom: 1px solid var(--line);
}
.checkout-hero > div {
  max-width: 760px;
}
.checkout-hero img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.legal-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.checkout-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: start;
}
.checkout-summary,
.stock-alert,
.plan-card,
.legal-content,
.legal-toc {
  background: rgba(255, 253, 249, .9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.checkout-summary,
.stock-alert,
.legal-content,
.legal-toc { padding: 1.3rem; }
.stock-alert {
  border-color: rgba(169, 78, 99, .26);
  background:
    linear-gradient(180deg, rgba(247, 233, 236, .72), rgba(255, 253, 249, .96));
}
.stock-alert h2 {
  margin-bottom: .65rem;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}
.status-label {
  display: inline-flex;
  margin-bottom: .75rem;
  padding: .35rem .65rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--color-accent-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.plan-options {
  display: grid;
  gap: .8rem;
}
.plan-card {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: .25rem .8rem !important;
  padding: 1rem;
  cursor: pointer;
}
.plan-card input { width: 22px; min-height: 22px; grid-row: 1 / span 2; }
.plan-card small { color: var(--muted); font-weight: 600; }
.plan-price-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .45rem .6rem;
}
.monthly-equivalent {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: .22rem .62rem;
  border-radius: 999px;
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  font-size: .94rem;
  font-weight: 900;
}
.configurator-shell,
.placeholder-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(2.4rem, 5vw, 4.5rem) clamp(1rem, 4vw, 2rem);
}
.configurator-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .42fr);
  gap: clamp(1.25rem, 4vw, 2.5rem);
  align-items: start;
}
.configurator-main {
  display: grid;
  gap: 1.2rem;
}
.configurator-section,
.important-details,
.plan-summary,
.payment-next-card,
.placeholder-hero {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 249, .9);
  box-shadow: var(--shadow);
}
.configurator-section,
.important-details,
.plan-summary,
.payment-next-card,
.placeholder-hero {
  padding: clamp(1.1rem, 2.6vw, 1.6rem);
}
.section-heading.compact {
  margin-bottom: 1rem;
}
.section-heading.compact h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
}
.config-card-grid {
  display: grid;
  gap: .8rem;
}
.config-card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.config-card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.config-option {
  position: relative;
  display: block;
  min-width: 0;
}
.config-option input {
  position: absolute;
  inset: 1rem auto auto 1rem;
  width: 22px;
  min-height: 22px;
  margin: 0;
  accent-color: var(--color-accent);
}
.config-option-body {
  min-height: 100%;
  display: grid;
  gap: .55rem;
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(250, 247, 240, .72);
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .2s ease;
}
.config-option input:focus-visible + .config-option-body {
  outline: 3px solid var(--color-focus-ring);
  outline-offset: 3px;
}
.config-option input:checked + .config-option-body,
.config-option.is-selected .config-option-body {
  border-color: rgba(169, 78, 99, .72);
  background: var(--color-accent-light);
  box-shadow: 0 16px 34px rgba(169, 78, 99, .13);
}
.config-option-body:hover { transform: translateY(-1px); }
.config-option.is-disabled {
  opacity: .56;
}
.config-option.is-disabled .config-option-body {
  cursor: not-allowed;
}
.option-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
  color: var(--teal-dark);
}
.option-topline strong {
  font-size: 1.04rem;
}
.option-topline span {
  display: inline-flex;
  padding: .18rem .5rem;
  border-radius: 999px;
  background: white;
  color: var(--color-accent-dark);
  font-size: .76rem;
  font-weight: 900;
}
.option-price {
  color: var(--teal-dark);
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.15;
}
.option-price small {
  display: block;
  margin-top: .15rem;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}
.option-copy,
.option-best,
.compatible-list,
.config-note,
.summary-note,
.legal-inline-links {
  color: var(--muted);
  font-weight: 600;
}
.option-best {
  color: var(--teal-dark);
}
.compatible-list {
  font-size: .9rem;
}
.config-note {
  margin: .8rem 0 0;
  padding: .8rem 1rem;
  border-radius: 14px;
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
}
.plan-summary {
  position: sticky;
  top: 96px;
}
.plan-summary h2 {
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
}
.summary-list {
  display: grid;
  gap: .8rem;
  margin: 0;
}
.summary-list div {
  display: grid;
  gap: .15rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--line);
}
.summary-list dt {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.summary-list dd {
  margin: 0;
  color: var(--teal-dark);
  font-weight: 800;
}
.summary-money dd span {
  font-size: 1.55rem;
  font-weight: 900;
}
.summary-money dd small {
  display: block;
  color: var(--muted);
  font-size: .9rem;
}
.summary-includes {
  margin-top: 1rem;
}
.summary-includes strong {
  color: var(--teal-dark);
}
.summary-includes ul {
  margin: .5rem 0 0;
  padding-left: 1.15rem;
  color: var(--graphite);
}
.summary-note {
  margin-top: .8rem;
  font-size: .92rem;
}
.plan-summary .button {
  margin-top: 1rem;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .75rem;
}
.detail-grid div {
  display: grid;
  gap: .25rem;
  padding: .9rem;
  border-radius: 16px;
  background: var(--sage);
}
.detail-grid strong {
  color: var(--teal-dark);
}
.detail-grid span {
  color: var(--muted);
  font-weight: 600;
}
.legal-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1rem;
  margin: 1rem 0 0;
}
.legal-inline-links a {
  color: var(--teal-dark);
  font-weight: 800;
}
.placeholder-shell {
  display: grid;
  gap: 1.2rem;
}
.placeholder-hero {
  max-width: 840px;
}
.placeholder-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, .55fr);
  gap: clamp(1rem, 3vw, 1.5rem);
  align-items: start;
}
.static-summary {
  position: static;
}
.payment-next-card {
  display: grid;
  gap: 1rem;
}
.payment-next-card .button[disabled] {
  opacity: .62;
  cursor: not-allowed;
}
.coupon-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, .55fr);
  gap: clamp(1rem, 3vw, 1.5rem);
  align-items: start;
  padding: clamp(1.1rem, 2.6vw, 1.6rem);
  border: 1px solid rgba(169, 78, 99, .26);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(247, 233, 236, .78), rgba(255, 253, 249, .94));
  box-shadow: var(--shadow);
}
.coupon-card h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
}
.coupon-form {
  display: grid;
  gap: .9rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 249, .9);
}
.coupon-form label {
  display: grid;
  gap: .35rem;
  color: var(--teal-dark);
  font-weight: 800;
}
.coupon-form label span {
  color: var(--muted);
  font-weight: 600;
}
.coupon-form .checkbox {
  color: var(--graphite);
}
.coupon-form .checkbox a {
  color: var(--teal-dark);
  font-weight: 800;
}
.inline-action-link {
  color: var(--color-accent-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(169, 78, 99, .45);
  text-decoration-thickness: .12em;
  text-underline-offset: .18em;
}
.inline-action-link:hover {
  color: var(--color-accent-hover);
  text-decoration-color: currentColor;
}
.inline-action-link:focus-visible {
  outline: 3px solid var(--color-focus-ring);
  outline-offset: 3px;
  border-radius: 6px;
}
.legal-shell { max-width: 1040px; }
.legal-hero {
  display: grid;
  grid-template-columns: 1fr minmax(260px, .65fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  margin-bottom: 1.5rem;
}
.legal-date { color: var(--muted); font-weight: 700; }
.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1rem;
  margin-bottom: 1rem;
  box-shadow: none;
}
.legal-toc a {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: none;
}
.legal-content h2 { margin-top: 2rem; }
.legal-content ul { padding-left: 1.2rem; }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + .5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .hero,
  .checkout-hero,
  .checkout-grid,
  .legal-hero,
  .two-column,
  .emotional,
  .honesty,
  .purchase-panel,
  .site-footer { grid-template-columns: 1fr; }
  .configurator-shell,
  .placeholder-grid,
  .coupon-card,
  .config-card-grid.three,
  .detail-grid { grid-template-columns: 1fr; }
  .config-card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plan-summary { position: static; }
  .hero { min-height: auto; }
  .hero-media { min-height: 0; order: 2; }
  .hero-media img { aspect-ratio: 3 / 2; max-height: none; }
  .card-grid.four,
  .benefit-strip,
  .steps { grid-template-columns: repeat(2, 1fr); }
  .activity-showcase { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { padding-bottom: 72px; }
  .site-header { min-height: 68px; }
  .logo { font-size: 1.42rem; }
  .logo-mark { width: 37px; height: 37px; flex-basis: 37px; }
  .hero { padding-top: 1.25rem; }
  .hero-copy { padding-top: 0; }
  .hero-actions .button,
  .lead-form { width: 100%; }
  .card-grid.four,
  .benefit-strip,
  .steps,
  .lead-form,
  .config-card-grid.two { grid-template-columns: 1fr; }
  .configurator-shell,
  .placeholder-shell { padding-left: 1rem; padding-right: 1rem; }
  .configurator-section,
  .important-details,
  .plan-summary,
  .payment-next-card,
  .coupon-card,
  .placeholder-hero { border-radius: 18px; }
  .summary-money dd span { font-size: 1.35rem; }
  .section-soft,
  .purchase-panel,
  .final-cta { max-width: calc(100% - 1rem); border-radius: 22px; }
  .sticky-mobile-cta {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: .75rem;
    z-index: 60;
    min-height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--color-accent);
    color: white;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 16px 36px rgba(31,42,55,.28);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
