/* ==========================================================================
   LessBloated Daily — long-form direct-response lander
   Early-2010s "As Seen On TV" DNA: navy nav, oval emblem, red badge,
   yellow/orange CTAs, two-column sales letter with a sticky order rail.
   Product art is drawn in CSS as a daily-pouch dispenser (OK Capsule form).
   ========================================================================== */

:root {
  --navy: #143a72;
  --navy-dark: #0e2a55;
  --navy-deep: #091d3c;
  --blue: #1f66b0;
  --blue-mid: #2f7fd0;
  --blue-pale: #eaf3fc;
  --blue-line: #b9d3ec;

  --red: #c9202a;
  --red-dark: #99161e;
  --red-pale: #fdeceb;

  --yellow: #ffd52e;
  --yellow-hi: #ffe873;
  --orange: #f08a1c;
  --orange-dark: #d2700c;

  --gold: #d8a520;
  --gold-hi: #f6d773;

  --ink: #21262e;
  --ink-soft: #4c5663;
  --ink-faint: #79828f;

  --rule: #d7dee7;
  --rule-soft: #e7ecf2;
  --paper: #ffffff;
  --paper-alt: #f7f9fc;

  --shell: 1000px;
  --rail: 336px;

  --font: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --font-impact: "Archivo Black", "Arial Black", Impact, var(--font);
  --font-script: "Dancing Script", "Brush Script MT", cursive;

  --shadow-card: 0 2px 6px rgba(14, 42, 85, 0.09);
  --shadow-pop: 0 10px 26px -8px rgba(14, 42, 85, 0.38);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* config.js toggles state copy with [hidden]; nothing may out-specify it */
[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 1rem;
}

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.62;
  color: var(--ink);
  background: #dce6f2;
  background-image: linear-gradient(180deg, #cfdcec 0%, #e6edf6 240px, #eef2f7 100%);
  background-attachment: fixed;
  min-height: 100vh;
  padding: 0 0 2.5rem;
}

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

a {
  color: var(--blue);
}

a:hover {
  color: var(--red);
}

strong,
b {
  font-weight: 700;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--yellow);
  color: var(--navy-deep);
  font-weight: 700;
  padding: 0.6rem 1rem;
  text-decoration: none;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* ---------------------------------------------------------------- shell */

.shell {
  max-width: var(--shell);
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid #b4c6da;
  border-top: 0;
  box-shadow: 0 6px 34px rgba(9, 29, 60, 0.22);
}

/* ------------------------------------------------------------- masthead */

.masthead {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 72%, #e7eff8 100%);
  border-top: 5px solid var(--navy);
  border-bottom: 1px solid var(--rule);
  padding: 1.1rem 1.5rem 1rem;
}

.masthead-inner {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* oval brand emblem */
.emblem {
  flex: 0 0 auto;
  width: 214px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(120% 130% at 30% 20%, #2b5f9f 0%, var(--navy) 52%, var(--navy-deep) 100%);
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 2px var(--navy), 0 5px 14px -4px rgba(9, 29, 60, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  padding: 0 0.75rem;
}

.emblem-name {
  font-family: var(--font-script);
  font-size: 2.05rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.35);
}

.emblem-sub {
  margin-top: 0.2rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
}

/* AS SEEN ON TV badge */
.asotv {
  flex: 0 0 auto;
  width: 104px;
  height: 78px;
  background: linear-gradient(180deg, #e03038 0%, var(--red) 46%, var(--red-dark) 100%);
  border: 3px solid var(--paper);
  border-radius: 8px;
  box-shadow: 0 0 0 2px var(--red-dark), 0 5px 12px -4px rgba(153, 22, 30, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  line-height: 1;
  text-align: center;
}

.asotv-as {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.asotv-tv {
  font-family: var(--font-impact);
  font-size: 2.3rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
}

.masthead-tag {
  flex: 1 1 260px;
  min-width: 240px;
  text-align: center;
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.28;
}

.masthead-tag .hot {
  color: var(--red);
  font-family: var(--font-impact);
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}

.masthead-tag .script {
  font-family: var(--font-script);
  font-size: 1.85rem;
  color: var(--red);
  font-weight: 700;
}

/* ------------------------------------------------------------------ nav */

.mainnav {
  background: linear-gradient(180deg, #1c4a8c 0%, var(--navy) 45%, var(--navy-dark) 100%);
  border-bottom: 3px solid var(--yellow);
}

.mainnav ul {
  list-style: none;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: var(--shell);
  margin: 0 auto;
}

.mainnav li {
  display: flex;
}

.mainnav a {
  display: flex;
  align-items: center;
  padding: 0.85rem 1.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 0.15s, color 0.15s;
}

.mainnav a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--yellow);
}

.mainnav a[aria-current="page"] {
  background: rgba(0, 0, 0, 0.22);
  color: var(--yellow);
}

.mainnav .nav-spacer {
  flex: 1 1 auto;
  border-right: 0;
}

.mainnav .nav-order a {
  background: linear-gradient(180deg, var(--yellow-hi) 0%, var(--yellow) 48%, var(--orange) 100%);
  color: #3a2600;
  border-right: 0;
  letter-spacing: 0.1em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.mainnav .nav-order a:hover {
  background: linear-gradient(180deg, #fff0a8 0%, var(--yellow-hi) 48%, var(--yellow) 100%);
  color: #3a2600;
}

/* --------------------------------------------------------------- layout */

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--rail);
  grid-template-areas:
    "hero rail"
    "sales rail";
  align-items: start;
  gap: 0 1.5rem;
  padding: 1.5rem 1.5rem 2rem;
}

.hero {
  grid-area: hero;
}

.sales {
  grid-area: sales;
  min-width: 0;
}

.rail {
  grid-area: rail;
}

/* ----------------------------------------------------------------- hero */

.hero-kicker {
  display: inline-block;
  background: var(--red);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.32rem 0.7rem;
  border-radius: 3px;
  margin-bottom: 0.85rem;
}

.hero h1 {
  font-family: var(--font-impact);
  font-size: clamp(1.85rem, 4.6vw, 2.85rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--navy-deep);
  text-transform: uppercase;
}

.hero h1 .script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 6.4vw, 4rem);
  font-weight: 700;
  font-style: italic;
  color: var(--red);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1;
  margin: 0.06em 0 0.02em;
  text-shadow: 1px 2px 0 rgba(153, 22, 30, 0.16);
}

.hero h1 .small {
  display: block;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--blue);
  margin-top: 0.6rem;
}

.hero-lede {
  margin-top: 0.9rem;
  font-size: 1.02rem;
  color: var(--ink-soft);
}

.hero-body {
  margin-top: 1.15rem;
}

.hero-body .checks {
  margin-top: 1.15rem;
}

/* ------------------------------------------------------- check / x lists */

.checks,
.xlist {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.checks li,
.xlist li {
  position: relative;
  padding-left: 2.05rem;
  font-size: 0.97rem;
  line-height: 1.45;
}

.checks li::before,
.xlist li::before {
  position: absolute;
  left: 0;
  top: 0.06em;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
  font-weight: 700;
  color: #ffffff;
}

.checks li::before {
  content: "\2713";
  background: linear-gradient(180deg, var(--blue-mid) 0%, var(--blue) 60%, #17538f 100%);
  box-shadow: 0 1px 3px rgba(20, 58, 114, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.xlist li::before {
  content: "\2715";
  background: linear-gradient(180deg, #d9534f 0%, var(--red) 60%, var(--red-dark) 100%);
  box-shadow: 0 1px 3px rgba(153, 22, 30, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.checks.checks-lg li {
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.checks.checks-lg li span {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink-soft);
}

/* -------------------------------------------------------- product render */

.render {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ground shadow stays under the product, not the full column width */
.render::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 248px;
  bottom: 16px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(14, 42, 85, 0.34) 0%, rgba(14, 42, 85, 0) 72%);
}

/* the hero gets the full content column, so the product shot can be bigger */
.hero .render {
  height: 336px;
  margin-top: 0.5rem;
}

.hero .render-stage {
  transform: scale(1.16);
}

.hero .render::after {
  width: 286px;
}

.render-stage {
  position: relative;
  width: 268px;
  height: 268px;
}

/* dispenser carton */
.dispenser {
  position: absolute;
  left: 6px;
  top: 26px;
  width: 168px;
  height: 208px;
  border: 1px solid #a9c3de;
  border-radius: 9px 12px 10px 10px;
  background: linear-gradient(152deg, #ffffff 0%, #f3f8fd 34%, #dde9f7 66%, #c2d7ee 100%);
  box-shadow: inset -16px 0 24px -16px rgba(14, 42, 85, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 16px 26px -12px rgba(14, 42, 85, 0.5);
  padding: 0.85rem 0.7rem 0;
  text-align: center;
  z-index: 2;
}

/* carton top face */
.dispenser::before {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: -9px;
  height: 12px;
  border: 1px solid #a9c3de;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, #ffffff 0%, #d9e7f5 100%);
}

/* glossy sheen */
.dispenser::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(116deg, rgba(255, 255, 255, 0.9) 0 16%, rgba(255, 255, 255, 0) 33% 100%);
  pointer-events: none;
}

.dispenser-oval {
  width: 118px;
  height: 52px;
  margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(120% 130% at 30% 20%, #2b5f9f 0%, var(--navy) 55%, var(--navy-deep) 100%);
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.dispenser-oval b {
  font-family: var(--font-script);
  font-size: 1.12rem;
  color: #ffffff;
}

.dispenser-oval i {
  font-style: normal;
  font-size: 0.36rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--yellow);
  margin-top: 0.12rem;
}

.dispenser-rule {
  width: 74%;
  height: 2px;
  margin: 0.6rem auto 0.5rem;
  background: linear-gradient(90deg, transparent, var(--blue-line) 20%, var(--blue-line) 80%, transparent);
  position: relative;
  z-index: 1;
}

.dispenser-line {
  font-family: var(--font-impact);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--navy-deep);
  position: relative;
  z-index: 1;
}

.dispenser-sub {
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 0.18rem;
  position: relative;
  z-index: 1;
}

/* dispensing slot */
.dispenser-slot {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 16px;
  height: 11px;
  border-radius: 3px;
  background: linear-gradient(180deg, #7f96b0 0%, #2f4560 55%, #56708c 100%);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* strip of daily pouches */
.pouch-strip {
  position: absolute;
  right: -6px;
  bottom: 4px;
  display: flex;
  align-items: flex-end;
  gap: 0;
  transform: rotate(-7deg);
  transform-origin: left bottom;
  z-index: 3;
  filter: drop-shadow(0 10px 14px rgba(14, 42, 85, 0.34));
}

.pouch {
  position: relative;
  width: 62px;
  height: 88px;
  background: linear-gradient(148deg, #ffffff 0%, #f6fafd 40%, #e2edf8 100%);
  border: 1px solid #b3cae2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding-top: 0.2rem;
}

.pouch + .pouch {
  border-left: 0;
}

/* perforation between pouches */
.pouch + .pouch::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: repeating-linear-gradient(180deg, #9db7d2 0 3px, transparent 3px 6px);
}

/* crimped top/bottom seal */
.pouch::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 9px;
  background: repeating-linear-gradient(90deg, #cfe0f0 0 2px, #eaf3fb 2px 4px);
  border-bottom: 1px solid #bcd2e6;
}

.pouch-cap {
  width: 26px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f6a8b4 0%, #e2707f 50%, #c9556a 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 1px 2px rgba(0, 0, 0, 0.18);
  position: relative;
}

.pouch-cap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(120, 40, 55, 0.35);
}

.pouch-day {
  font-size: 0.44rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.pouch-brand {
  font-family: var(--font-script);
  font-size: 0.62rem;
  color: var(--navy);
  line-height: 1;
}

.render-flag {
  position: absolute;
  left: 0;
  bottom: -4px;
  font-size: 0.68rem;
  color: var(--ink-faint);
  text-align: center;
  width: 100%;
}

/* -------------------------------------------------------------- sections */

.sec {
  padding: 1.9rem 0 0;
}

.sec + .sec {
  border-top: 1px solid var(--rule-soft);
  margin-top: 1.9rem;
}

.sec-head {
  text-align: center;
  margin-bottom: 1.3rem;
}

.sec-head.left {
  text-align: left;
}

.eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.45rem;
}

h2 {
  font-family: var(--font-impact);
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  line-height: 1.14;
  color: var(--navy-deep);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

h2 .script {
  font-family: var(--font-script);
  font-size: 1.35em;
  font-style: italic;
  color: var(--red);
  text-transform: none;
  letter-spacing: 0;
}

h3 {
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.sec p + p {
  margin-top: 0.85rem;
}

.lede {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 46em;
}

.sec-head:not(.left) .lede {
  margin-left: auto;
  margin-right: auto;
}

.pull {
  border-left: 4px solid var(--yellow);
  background: #fffdf2;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-top: 1.1rem;
}

/* ------------------------------------------------------------ comparison */

.versus {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.9rem;
  align-items: stretch;
}

.versus-col {
  border: 2px solid var(--rule);
  border-radius: 7px;
  padding: 1.05rem 1.05rem 1.15rem;
  background: var(--paper-alt);
}

.versus-col h3 {
  font-family: var(--font-impact);
  font-size: 0.98rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.03em;
  padding-bottom: 0.7rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid var(--rule);
}

.versus-bad {
  border-color: #e6bcbc;
  background: var(--red-pale);
}

.versus-bad h3 {
  color: var(--red-dark);
  border-bottom-color: #e6bcbc;
}

.versus-good {
  border-color: var(--blue-line);
  background: var(--blue-pale);
  box-shadow: var(--shadow-card);
}

.versus-good h3 {
  color: var(--navy);
  border-bottom-color: var(--blue-line);
}

.versus-vs {
  align-self: center;
  font-family: var(--font-impact);
  font-size: 1.05rem;
  color: var(--paper);
  background: var(--navy);
  border-radius: 50%;
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}

/* ----------------------------------------------------------- ingredients */

.ingredients {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  text-align: center;
}

.ing-disc {
  width: 104px;
  height: 104px;
  margin: 0 auto 0.65rem;
  border-radius: 50%;
  border: 4px solid var(--paper);
  box-shadow: 0 0 0 2px var(--blue-line), 0 6px 14px -6px rgba(14, 42, 85, 0.45);
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f2f8ea 0%, #d9ebc4 48%, #b8d894 100%);
}

/* abstract botanical leaf drawn in CSS */
.ing-disc::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  transform: translate(-50%, -50%) rotate(-42deg);
  border-radius: 0 100% 0 100%;
  background: linear-gradient(140deg, #7fb04b 0%, #4f8a2f 100%);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.45);
}

.ing-disc::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44px;
  height: 2px;
  transform: translate(-50%, -50%) rotate(-42deg);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
}

.ing-dandelion {
  background: linear-gradient(160deg, #fdf6dc 0%, #f6e39a 48%, #e2c65f 100%);
}

.ing-dandelion::before {
  background: linear-gradient(140deg, #e8c447 0%, #b8922a 100%);
}

.ing-ginger {
  background: linear-gradient(160deg, #fdf1e2 0%, #f0cfa4 48%, #d9ac72 100%);
}

.ing-ginger::before {
  background: linear-gradient(140deg, #d9a05a 0%, #a97535 100%);
}

.ing-fennel {
  background: linear-gradient(160deg, #f1f9ea 0%, #cfe8ba 48%, #a9d189 100%);
}

.ing-fennel::before {
  background: linear-gradient(140deg, #8fbe5c 0%, #5d9235 100%);
}

.ing-peppermint {
  background: linear-gradient(160deg, #e9f8f2 0%, #b8e5d2 48%, #86ccb1 100%);
}

.ing-peppermint::before {
  background: linear-gradient(140deg, #4fb391 0%, #2b7d63 100%);
}

.ing h3 {
  font-family: var(--font-impact);
  font-size: 0.86rem;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin-bottom: 0.3rem;
}

.ing p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* ------------------------------------------------------------ how it works */

.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 0.9rem;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 3.1rem;
  min-height: 2.3rem;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--blue-mid) 0%, var(--blue) 60%, #17538f 100%);
  color: #ffffff;
  font-family: var(--font-impact);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 2px 5px rgba(20, 58, 114, 0.35);
}

.steps h3 {
  margin-bottom: 0.1rem;
}

.steps p {
  font-size: 0.93rem;
  color: var(--ink-soft);
}

/* ------------------------------------------------------------ testimonial */

.testimonial {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1.15rem;
  align-items: start;
  background: var(--paper-alt);
  border: 1px solid var(--rule);
  border-left: 5px solid var(--yellow);
  border-radius: 6px;
  padding: 1.2rem 1.25rem;
}

.portrait {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  border: 4px solid var(--paper);
  box-shadow: 0 0 0 2px var(--blue-line), 0 5px 12px -5px rgba(14, 42, 85, 0.45);
  background: linear-gradient(160deg, #dbe7f4 0%, #b9cee6 55%, #93b2d3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-impact);
  font-size: 1.5rem;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(14, 42, 85, 0.5);
}

.portrait-note {
  display: block;
  text-align: center;
  font-size: 0.62rem;
  color: var(--ink-faint);
  margin-top: 0.4rem;
  line-height: 1.3;
}

.stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.testimonial blockquote {
  font-size: 1.02rem;
  font-style: italic;
  color: var(--navy-deep);
  margin: 0.35rem 0 0.6rem;
  line-height: 1.5;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}

.sample-flag {
  display: inline-block;
  background: var(--navy);
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding: 0.16rem 0.44rem;
  border-radius: 3px;
  vertical-align: 0.1em;
}

.sample-flag.warn {
  background: var(--red);
}

/* -------------------------------------------------------------------- faq */

.faq {
  display: grid;
  gap: 0.5rem;
}

.faq details {
  border: 1px solid var(--rule);
  border-radius: 5px;
  background: var(--paper);
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 0.75rem 2.4rem 0.75rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-deep);
  background: var(--paper-alt);
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-impact);
  font-size: 1.1rem;
  color: var(--blue);
  line-height: 1;
}

.faq details[open] summary {
  background: var(--blue-pale);
  border-bottom: 1px solid var(--rule);
}

.faq details[open] summary::after {
  content: "\2212";
}

.faq .answer {
  padding: 0.85rem 0.9rem;
  font-size: 0.93rem;
  color: var(--ink-soft);
}

.faq .answer p + p {
  margin-top: 0.6rem;
}

/* --------------------------------------------------------------- buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-impact);
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  border-radius: 7px;
  transition: transform 0.12s, box-shadow 0.15s, filter 0.15s;
}

.btn-order {
  width: 100%;
  flex-direction: column;
  padding: 0.95rem 1.1rem;
  font-size: 1.28rem;
  letter-spacing: 0.02em;
  color: #3a2600;
  background: linear-gradient(180deg, var(--yellow-hi) 0%, var(--yellow) 42%, var(--orange) 100%);
  border: 2px solid #b96f0a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 5px 0 var(--orange-dark),
    0 12px 20px -8px rgba(210, 112, 12, 0.6);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
  line-height: 1.15;
}

.btn-order small {
  display: block;
  font-family: var(--font);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
  color: #5a3c00;
}

.btn-order:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 6px 0 var(--orange-dark),
    0 14px 24px -8px rgba(210, 112, 12, 0.66);
}

.btn-order:active {
  transform: translateY(3px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 2px 0 var(--orange-dark);
}

.btn-blue {
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
  color: #ffffff;
  background: linear-gradient(180deg, #2f7fd0 0%, var(--blue) 55%, #17538f 100%);
  border: 1px solid #14497f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 3px 0 #123f6d;
}

.btn-blue:hover {
  filter: brightness(1.07);
  color: #ffffff;
}

.cta-band {
  text-align: center;
  background: var(--blue-pale);
  border: 2px solid var(--blue-line);
  border-radius: 7px;
  padding: 1.4rem 1.2rem;
  margin-top: 1.9rem;
}

.cta-band h2 {
  margin-bottom: 0.5rem;
}

.cta-band .btn-order {
  max-width: 340px;
  margin: 0.9rem auto 0;
}

/* ------------------------------------------------------------------ rail */

.rail-inner {
  position: sticky;
  top: 0.85rem;
  display: grid;
  gap: 0.85rem;
}

.order-card {
  border: 2px solid var(--navy);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-pop);
}

.order-head {
  background: linear-gradient(180deg, #1c4a8c 0%, var(--navy) 50%, var(--navy-dark) 100%);
  color: #ffffff;
  font-family: var(--font-impact);
  font-size: 0.94rem;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  padding: 0.75rem 0.7rem;
  letter-spacing: 0.01em;
}

.order-offer {
  background: repeating-linear-gradient(-45deg, var(--red) 0 12px, #b81c25 12px 24px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.4rem 0.5rem;
}

.order-price {
  text-align: center;
  padding: 0.9rem 0.8rem 0.7rem;
  border-bottom: 1px dashed var(--rule);
}

.order-price .amount {
  font-family: var(--font-impact);
  font-size: 2.75rem;
  line-height: 1;
  color: var(--red);
}

.order-price .what {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-top: 0.3rem;
}

.order-price .ship {
  font-size: 0.76rem;
  color: var(--ink-soft);
  margin-top: 0.2rem;
}

.order-body {
  padding: 0.85rem 0.8rem 1rem;
}

/* checkout handoff — the hosted checkout cannot be framed, so we link out */
.handoff {
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--paper-alt);
  padding: 0.9rem 0.85rem 1rem;
  text-align: center;
}

.handoff-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.15rem;
}

.handoff-sub {
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--ink-faint);
}

.handoff-note {
  margin-top: 0.8rem;
  border: 1px solid #e6d9a8;
  background: #fffbe9;
  border-radius: 5px;
  padding: 0.6rem 0.65rem;
  font-size: 0.72rem;
  line-height: 1.45;
  color: #6a5312;
  text-align: center;
}

.handoff-note b {
  display: block;
  color: #4d3c08;
  font-size: 0.76rem;
  margin-bottom: 0.15rem;
}

.order-cta-wrap {
  margin-top: 0.85rem;
}

.order-fine {
  margin-top: 0.6rem;
  font-size: 0.7rem;
  line-height: 1.45;
  color: var(--ink-faint);
  text-align: center;
}

/* trust badges — generic marks, not licensed third-party seals */
.trust {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin-top: 0.85rem;
  padding-top: 0.8rem;
  border-top: 1px dashed var(--rule);
}

.trust li {
  text-align: center;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.25;
}

.shield {
  width: 32px;
  height: 36px;
  margin: 0 auto 0.3rem;
  background: linear-gradient(180deg, #4a8fd4 0%, var(--blue) 55%, #14497f 100%);
  border-radius: 5px 5px 50% 50% / 5px 5px 62% 62%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 2px 4px rgba(20, 58, 114, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  padding-bottom: 0.25rem;
}

/* guarantee seal */
.seal-wrap {
  text-align: center;
  padding: 0.2rem 0 0.1rem;
}

.seal {
  width: 148px;
  height: 148px;
  margin: 0 auto;
  border-radius: 50%;
  position: relative;
  background: repeating-conic-gradient(from 0deg, var(--gold-hi) 0deg 9deg, var(--gold) 9deg 18deg);
  box-shadow: 0 6px 16px -6px rgba(120, 88, 10, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.seal-face {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: radial-gradient(120% 120% at 32% 22%, #fff6d8 0%, #f2d271 46%, #cf9f1c 100%);
  border: 3px solid #fffaea;
  box-shadow: inset 0 0 0 2px #b7860f, inset 0 2px 6px rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  padding: 0 0.5rem;
}

.seal-face .big {
  font-family: var(--font-impact);
  font-size: 2.15rem;
  color: #6b4a02;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.seal-face .day {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b4a02;
  margin-top: 0.1rem;
}

.seal-face .txt {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a5504;
  margin-top: 0.3rem;
  line-height: 1.25;
}

.seal-note {
  font-size: 0.7rem;
  color: var(--ink-faint);
  margin-top: 0.5rem;
  line-height: 1.45;
}

.rail-aside {
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--paper-alt);
  padding: 0.8rem 0.85rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.rail-aside h3 {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

/* --------------------------------------------------------------- notices */

.disclaimer {
  margin-top: 1.9rem;
  border-top: 1px solid var(--rule);
  padding-top: 1.1rem;
  font-size: 0.76rem;
  line-height: 1.55;
  color: var(--ink-faint);
}

.disclaimer p + p {
  margin-top: 0.55rem;
}

.disclaimer strong {
  color: var(--ink-soft);
}

.callout {
  border: 1px solid #e6d9a8;
  background: #fffbe9;
  border-left: 4px solid var(--yellow);
  border-radius: 5px;
  padding: 0.85rem 0.95rem;
  font-size: 0.88rem;
  color: #6a5312;
  margin: 1.1rem 0;
}

/* ------------------------------------------------------------ inner pages */

.page {
  padding: 1.6rem 1.5rem 2.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.page-wide {
  max-width: var(--shell);
}

.crumb {
  font-size: 0.78rem;
  color: var(--ink-faint);
  margin-bottom: 0.9rem;
}

.crumb a {
  color: var(--blue);
}

.page h1 {
  font-family: var(--font-impact);
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  text-transform: uppercase;
  color: var(--navy-deep);
  line-height: 1.12;
  margin-bottom: 0.4rem;
}

.page > .lede {
  margin-bottom: 1.2rem;
}

.legal h2 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.45rem;
}

.legal p + p,
.legal ul {
  margin-top: 0.7rem;
}

.legal ul {
  padding-left: 1.3rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.legal li + li {
  margin-top: 0.3rem;
}

.faq-group h2 {
  font-size: 1.15rem;
  margin: 1.7rem 0 0.6rem;
}

/* checkout page: summary + embed side by side */
.checkout-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  padding: 1.6rem 1.5rem 2.2rem;
}

.summary {
  border: 2px solid var(--navy);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-card);
}

.summary h2 {
  background: linear-gradient(180deg, #1c4a8c 0%, var(--navy) 50%, var(--navy-dark) 100%);
  color: #ffffff;
  font-size: 0.94rem;
  padding: 0.7rem 0.85rem;
  text-align: center;
}

.summary-body {
  padding: 0.9rem 0.85rem 1rem;
}

.summary-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
  padding-bottom: 0.8rem;
  border-bottom: 1px dashed var(--rule);
}

.summary-thumb {
  width: 58px;
  height: 68px;
  border: 1px solid #b3cae2;
  border-radius: 4px;
  background: linear-gradient(148deg, #ffffff 0%, #eef5fc 45%, #d7e6f6 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.summary-item .t {
  font-weight: 700;
  color: var(--navy-deep);
  font-size: 0.92rem;
}

.summary-item .s {
  font-size: 0.76rem;
  color: var(--ink-soft);
}

.summary-lines {
  display: grid;
  gap: 0.35rem;
  padding: 0.8rem 0;
  font-size: 0.86rem;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--rule);
}

.summary-lines > div {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.8rem 0 0.2rem;
  font-family: var(--font-impact);
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--navy-deep);
}

.summary-total .amount {
  font-size: 1.7rem;
  color: var(--red);
}

/* the wide handoff panel on checkout.html */
.handoff-page {
  padding: 1.8rem 1.5rem 2rem;
}

.handoff-page .handoff-title {
  font-family: var(--font-impact);
  text-transform: uppercase;
  font-size: 1.05rem;
  color: var(--navy-deep);
  margin-bottom: 0.35rem;
}

.handoff-page .handoff-sub {
  font-size: 0.88rem;
  color: var(--ink-soft);
  max-width: 430px;
  margin: 0 auto;
}

.handoff-btn {
  max-width: 400px;
  margin: 1.3rem auto 0;
}

.handoff-steps {
  list-style: none;
  counter-reset: ho;
  display: grid;
  gap: 0.55rem;
  max-width: 430px;
  margin: 1.4rem auto 0;
  padding-top: 1.1rem;
  border-top: 1px dashed var(--rule);
  text-align: left;
}

.handoff-steps li {
  position: relative;
  counter-increment: ho;
  padding-left: 1.9rem;
  font-size: 0.83rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.handoff-steps li::before {
  content: counter(ho);
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--navy);
  color: #ffffff;
  font-family: var(--font-impact);
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* thanks timeline */
.timeline {
  list-style: none;
  counter-reset: tl;
  display: grid;
  gap: 1rem;
  margin-top: 1.3rem;
}

.timeline li {
  counter-increment: tl;
  position: relative;
  padding-left: 3.1rem;
}

.timeline li::before {
  content: counter(tl);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--blue-mid) 0%, var(--blue) 60%, #17538f 100%);
  color: #ffffff;
  font-family: var(--font-impact);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 2px 5px rgba(20, 58, 114, 0.35);
}

.timeline .t {
  font-weight: 700;
  color: var(--navy-deep);
}

.timeline .d {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.thanks-mark {
  width: 74px;
  height: 74px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #4fb37a 0%, #2f8b55 100%);
  color: #ffffff;
  font-size: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.4), 0 6px 14px -6px rgba(47, 139, 85, 0.7);
}

.center {
  text-align: center;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* ---------------------------------------------------------------- footer */

.sitefoot {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 55%, var(--navy-deep) 100%);
  color: #c6d7ec;
  padding: 1.5rem 1.5rem 1.6rem;
  border-top: 3px solid var(--yellow);
}

.foot-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0;
  margin-bottom: 0.9rem;
}

.foot-nav li + li::before {
  content: "|";
  color: rgba(198, 215, 236, 0.4);
  padding: 0 0.7rem;
}

.foot-nav a {
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.foot-nav a:hover {
  color: var(--yellow);
}

.foot-legal {
  text-align: center;
  font-size: 0.74rem;
  line-height: 1.6;
  color: rgba(198, 215, 236, 0.85);
  max-width: 62em;
  margin: 0 auto;
}

.foot-legal p + p {
  margin-top: 0.5rem;
}

.foot-copy {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 0.9rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

/* ------------------------------------------------------------ responsive */

@media (max-width: 980px) {
  :root {
    --rail: 300px;
  }

  .layout {
    gap: 0 1.15rem;
  }
}

@media (max-width: 860px) {
  /* stack the order rail directly under the hero, keep the lander feel */
  .layout {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "hero"
      "rail"
      "sales";
    gap: 1.5rem 0;
  }

  .rail-inner {
    position: static;
  }

  .order-card,
  .seal-wrap {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .checkout-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .ingredients {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem 1rem;
  }

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

  .versus-vs {
    justify-self: center;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 14.5px;
    padding-bottom: 0;
  }

  .shell {
    border-left: 0;
    border-right: 0;
  }

  .masthead {
    padding: 0.9rem 1rem;
  }

  .masthead-inner {
    gap: 0.8rem 1rem;
  }

  .emblem {
    width: 186px;
    height: 84px;
  }

  .emblem-name {
    font-size: 1.75rem;
  }

  .asotv {
    width: 88px;
    height: 66px;
  }

  .asotv-tv {
    font-size: 1.9rem;
  }

  .masthead-tag {
    flex-basis: 100%;
    font-size: 1.08rem;
  }

  .masthead-tag .hot {
    font-size: 1.14rem;
  }

  .masthead-tag .script {
    font-size: 1.55rem;
  }

  .mainnav ul {
    justify-content: center;
  }

  .mainnav a {
    padding: 0.7rem 0.85rem;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .mainnav .nav-spacer {
    display: none;
  }

  .mainnav .nav-order {
    flex: 1 1 100%;
  }

  .mainnav .nav-order a {
    justify-content: center;
    font-size: 0.88rem;
    padding: 0.75rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .layout {
    padding: 1.1rem 1rem 1.6rem;
  }

  .hero .render {
    height: 292px;
  }

  .hero .render-stage {
    transform: scale(0.98);
  }

  .testimonial {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    text-align: center;
  }

  .page,
  .checkout-layout {
    padding: 1.2rem 1rem 1.8rem;
  }

  .sitefoot {
    padding: 1.3rem 1rem 1.4rem;
  }

  .foot-nav {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .foot-nav li + li::before {
    content: none;
    padding: 0;
  }
}

@media (max-width: 420px) {
  .ingredients {
    grid-template-columns: minmax(0, 1fr);
  }

  .btn-order {
    font-size: 1.12rem;
  }

  .seal {
    width: 132px;
    height: 132px;
  }

  .seal-face {
    width: 106px;
    height: 106px;
  }

  .seal-face .big {
    font-size: 1.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn {
    transition: none;
  }
}

@media print {
  body {
    background: #ffffff;
  }

  .mainnav,
  .rail {
    display: none;
  }
}
