/* Shine Bright — editorial redesign
   Direction: warm paper, ink-green, terracotta. Serif display + grotesk text.
   Hairline rules and tight radii instead of soft gradient cards. */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,800&family=Archivo:wght@400;500;600;700&display=swap');

:root {
  --paper:      #f6f1e6;
  --card:       #fffdf8;
  --ink:        #16211b;
  --ink-2:      #3d4a43;
  --ink-3:      #6d7a71;
  --line:       #e2d9c7;
  --line-2:     #cfc3a9;
  --accent:     #c2492b;
  --accent-2:   #f4e2db;
  --leaf:       #2f5d4a;
  --leaf-2:     #e4ede8;
  --gold:       #a8781f;
  --gold-2:     #f6ecd6;
  --danger:     #a33222;

  --serif: 'Fraunces', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --sans:  'Archivo', 'Helvetica Neue', system-ui, -apple-system, sans-serif;

  --r-sm: 3px;
  --r-md: 6px;
  --r-lg: 10px;

  --wrap: 1140px;
  --bar-h: 38px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; cursor: pointer; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.wrap--narrow { max-width: 860px; }

/* ---------- shared bits ---------- */

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--accent);
}

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

.section { padding: 64px 0; }
.section--tight { padding: 44px 0; }
.section--dark { background: var(--ink); color: #efe9dc; }
.section--card { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head { max-width: 660px; }
.section-head--center { margin: 0 auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }
.section-head h2, .section-head h3 { font-size: 34px; margin-top: 14px; }
.section-head p { margin-top: 12px; color: var(--ink-3); font-size: 15px; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 5px 10px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  color: var(--ink-2);
  background: var(--card);
}
.tag--leaf { color: var(--leaf); border-color: #b9cfc4; background: var(--leaf-2); }
.tag--gold { color: var(--gold); border-color: #e0c98f; background: var(--gold-2); }

.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .25 } }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--ink);
  border-radius: var(--r-sm);
  background: var(--ink);
  color: var(--paper);
  padding: 15px 26px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform .12s ease, background .18s ease, color .18s ease;
}
.btn:hover { background: #0d1712; }
.btn:active { transform: translateY(1px); }
.btn--accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--accent:hover { background: #a93c21; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { background: var(--paper); }
.btn--block { width: 100%; }
.btn__stack { display: flex; flex-direction: column; align-items: center; gap: 2px; line-height: 1.25; }
.btn__sub { font-size: 11px; font-weight: 500; opacity: .8; letter-spacing: .04em; }

/* ---------- announcement ticker ---------- */

.ticker {
  position: sticky; top: 0; z-index: 60;
  background: var(--ink);
  color: #e9e3d5;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.ticker .wrap {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap; text-align: center;
  min-height: var(--bar-h);
  padding-top: 9px; padding-bottom: 9px;
}
.ticker .sep { opacity: .3; }
.ticker .pill {
  border: 1px solid rgba(255,255,255,.18);
  padding: 2px 10px;
  border-radius: 999px;
}

/* ---------- header ---------- */

.site-header {
  position: sticky; top: var(--bar-h); z-index: 50;
  background: rgba(246,241,230,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 13px; padding-bottom: 13px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark {
  width: 38px; height: 38px;
  border: 1px solid var(--ink);
  border-radius: var(--r-sm);
  background: var(--ink);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 800; font-size: 19px;
}
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 20px; line-height: 1.1; }
.brand__tag {
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); margin-top: 2px;
}
.header__meta { display: flex; align-items: center; gap: 8px; }
.header__meta-mobile { display: none; font-size: 11px; font-weight: 600; color: var(--ink-3); }

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

.hero { padding: 56px 0 64px; }
.hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 54px; align-items: start; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 600; color: var(--ink-2);
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 9px; margin-bottom: 22px;
}
.hero h1 { font-size: 54px; line-height: 1.02; }
.hero h1 .strike {
  color: var(--ink-3);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--accent);
}
.hero h1 .line2 {
  display: block; margin-top: 8px;
  color: var(--leaf);
  font-style: italic;
  font-weight: 400;
}
.hero__lede { margin-top: 20px; font-size: 17px; line-height: 1.65; color: var(--ink-2); max-width: 34em; }
.hero__lede b { color: var(--ink); font-weight: 600; }

.checklist { margin-top: 26px; display: grid; gap: 0; border-top: 1px solid var(--line); }
.checklist li {
  display: flex; align-items: center; gap: 13px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px; font-weight: 500;
}
.checklist .tick {
  width: 22px; height: 22px; flex: none;
  border-radius: 50%;
  border: 1px solid var(--leaf);
  color: var(--leaf);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}

.price-slab {
  margin-top: 26px;
  border: 1px solid var(--line-2);
  border-left: 3px solid var(--accent);
  border-radius: var(--r-sm);
  background: var(--card);
  padding: 18px 20px;
}
.price-slab__row { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.price-strike { color: var(--ink-3); text-decoration: line-through; font-size: 15px; }
.price-now { font-family: var(--serif); font-size: 34px; font-weight: 800; letter-spacing: -0.03em; }
.price-slab__note { margin-top: 6px; font-size: 12px; color: var(--ink-3); letter-spacing: .02em; }

.hero__cta { margin-top: 26px; }
.hero__proof {
  margin-top: 18px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 13px;
}
.hero__proof .stars { color: var(--gold); letter-spacing: -2px; }
.hero__proof .fine {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3);
}
.hero__proof .bull { width: 4px; height: 4px; border-radius: 50%; background: var(--line-2); }

/* product plate */
.plate {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 30px 24px 24px;
}
.plate::before {
  content: '';
  position: absolute; inset: 7px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  pointer-events: none;
}
.plate__flag {
  position: absolute; top: -11px; left: 24px;
  background: var(--ink); color: var(--paper);
  font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--r-sm);
}
.bottles { position: relative; display: flex; align-items: flex-end; justify-content: center; gap: 14px; padding: 22px 0 8px; }
.bottle {
  border: 1px solid var(--ink);
  border-radius: var(--r-md);
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  padding: 10px 8px;
  position: relative;
}
.bottle__cap {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  width: 38px; height: 11px;
  border: 1px solid var(--ink);
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
  background: var(--ink);
}
.bottle__label {
  background: var(--card);
  border: 1px solid var(--ink);
  border-radius: var(--r-sm);
  width: 100%;
  padding: 8px 6px;
  text-align: center;
}
.bottle__label .emj { font-size: 15px; line-height: 1; }
.bottle__label .t {
  font-size: 9.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; margin-top: 4px; line-height: 1.2;
}
.bottle__label .s { font-size: 8.5px; font-weight: 500; color: var(--ink-3); }
.bottle__label .bar { height: 2px; margin-top: 6px; background: var(--accent); }
.bottle__foot { font-size: 8.5px; font-weight: 700; letter-spacing: .16em; }

.bottle--floor { width: 112px; height: 288px; background: var(--leaf-2); }
.bottle--floor .bottle__foot { color: var(--leaf); }
.bottle--hand  { width: 88px; height: 206px; background: var(--gold-2); }
.bottle--hand .bottle__foot { color: var(--gold); }
.bottle--hand .bottle__cap { width: 22px; height: 14px; border-radius: 3px 3px 0 0; top: -14px; }
.bottle--hand .bottle__cap::after { content: ''; position: absolute; top: 2px; left: -12px; width: 14px; height: 4px; border-radius: 2px; background: var(--ink); }
.bottle--toilet { width: 88px; height: 244px; background: var(--accent-2); border-top-left-radius: 22px; }
.bottle--toilet .bottle__foot { color: var(--accent); }

.plate__stats { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--r-sm); margin-top: 22px; }
.plate__stats > div { padding: 12px 8px; text-align: center; border-right: 1px solid var(--line); }
.plate__stats > div:last-child { border-right: 0; }
.plate__stats .k { font-family: var(--serif); font-weight: 600; font-size: 15px; }
.plate__stats .v { font-size: 10.5px; color: var(--ink-3); margin-top: 2px; }
.plate__gift {
  margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 12px; font-weight: 600; color: var(--leaf);
}
.plate__gift .tick {
  width: 18px; height: 18px; border-radius: 50%; background: var(--leaf); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 10px;
}

/* ---------- problems ---------- */

.problems { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 40px; border-top: 1px solid var(--line-2); }
.problem {
  padding: 28px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line-2);
  position: relative;
}
.problem:last-child { border-right: 0; }
.problem__num {
  font-family: var(--serif); font-size: 13px; font-weight: 600; color: var(--accent);
  letter-spacing: .1em;
}
.problem__emoji { font-size: 30px; margin-top: 14px; line-height: 1; }
.problem h4 { font-size: 20px; margin-top: 14px; }
.problem p { margin-top: 9px; font-size: 13.5px; line-height: 1.65; color: var(--ink-3); }
.problem__x {
  position: absolute; top: 26px; right: 26px;
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid var(--danger); color: var(--danger);
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700;
}

/* ---------- features ---------- */

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 44px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.feature { background: var(--card); padding: 26px 24px; transition: background .2s ease; }
.feature:hover { background: var(--paper); }
.feature__icon {
  width: 42px; height: 42px; border: 1px solid var(--line-2); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  background: var(--paper);
}
.feature h4 { font-size: 18px; margin-top: 15px; }
.feature p { margin-top: 8px; font-size: 13px; line-height: 1.6; color: var(--ink-3); }

/* ---------- before / after ---------- */

.ba__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 44px; align-items: center; }
.section--dark .eyebrow { color: #d9a58f; }
.section--dark .eyebrow::before { background: #d9a58f; }
.ba h3 { font-size: 34px; color: #fdf9ef; text-wrap: balance; }
.ba h3 .em { display: block; font-style: italic; font-weight: 400; color: #9dc4b0; margin-top: 6px; }
.ba p { margin-top: 16px; color: #b6bdb6; font-size: 14.5px; line-height: 1.7; }
.ba__tags { margin-top: 24px; display: flex; gap: 10px; flex-wrap: wrap; }
.ba__tags .tag { background: transparent; border-color: rgba(255,255,255,.22); color: #e5ded0; }
.ba__tags .tag--on { border-color: #6f9d86; color: #a8ceb9; }

.slider { background: var(--card); border-radius: var(--r-md); padding: 8px; }
.slider__stage { position: relative; height: 320px; border-radius: var(--r-sm); overflow: hidden; }
.stage__before {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, #ddd6c6, #ddd6c6 12px, #d0c8b6 12px, #d0c8b6 24px);
}
.stage__before::after { content: ''; position: absolute; inset: 0; background: rgba(22,33,27,.16); }
.stage__after {
  position: absolute; inset: 0; width: 50%;
  border-right: 2px solid var(--card);
  overflow: hidden;
}
.stage__after-inner {
  position: absolute; inset: 0; width: 100vw;
  background: linear-gradient(160deg, #f4faf4 0%, #eef6f0 55%, #fffdf8 100%);
}
.stage__after-inner::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 22% 28%, rgba(47,93,74,.18), transparent 42%),
    radial-gradient(circle at 78% 72%, rgba(194,73,43,.14), transparent 42%);
}
.stage__chip {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  font-size: 10.5px; font-weight: 700; letter-spacing: .02em;
  padding: 5px 10px; border-radius: var(--r-sm);
}
.stage__chip--before { background: var(--ink); color: var(--paper); left: auto; right: 16px; }
.stage__before .stage__caption { left: auto; right: 20px; max-width: 62%; }
.stage__chip--after { background: var(--leaf); color: #fff; }
.stage__caption {
  position: absolute; left: 20px; right: 20px; bottom: 22px; z-index: 3;
  font-size: 12px; font-weight: 600;
  background: rgba(255,253,248,.9);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 9px 12px;
  color: var(--ink);
}
.stage__caption--after { color: var(--leaf); }
.stage__handle {
  position: absolute; top: 50%; transform: translate(-50%, -50%); z-index: 4;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--card); border: 1px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  pointer-events: none;
}
.slider__control { padding: 14px 8px 4px; }
.slider__control input[type=range] { width: 100%; accent-color: var(--accent); }
.slider__legend {
  display: flex; justify-content: space-between; margin-top: 6px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .02em; color: var(--ink-3);
}

/* ---------- steps ---------- */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 44px; }
.step { border-top: 2px solid var(--ink); padding-top: 20px; }
.step__no {
  font-family: var(--serif); font-size: 13px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--accent);
}
.step__icon { font-size: 32px; margin-top: 16px; line-height: 1; }
.step h4 { font-size: 21px; margin-top: 14px; }
.step p { margin-top: 9px; font-size: 13.5px; line-height: 1.65; color: var(--ink-3); }

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

.table-scroll { margin-top: 40px; overflow-x: auto; border: 1px solid var(--line-2); border-radius: var(--r-md); background: var(--card); }
table.compare { width: 100%; min-width: 660px; border-collapse: collapse; font-size: 14px; }
table.compare th, table.compare td { text-align: left; padding: 15px 18px; border-bottom: 1px solid var(--line); }
table.compare thead th { font-family: var(--serif); font-size: 14px; font-weight: 600; border-bottom: 1px solid var(--line-2); }
table.compare thead th:first-child { color: var(--ink-3); font-family: var(--sans); font-size: 12px; letter-spacing: .04em; }
table.compare .col-win { background: var(--leaf-2); border-left: 1px solid #c3d6cb; border-right: 1px solid #c3d6cb; color: var(--leaf); font-weight: 600; }
table.compare thead .col-win { color: var(--leaf); }
table.compare tbody tr:last-child td { border-bottom: 0; }
table.compare td:first-child { font-weight: 600; }
table.compare td:not(.col-win):not(:first-child) { color: var(--ink-3); }
.win-mark {
  display: inline-flex; align-items: center; gap: 7px;
}
.win-mark .b {
  width: 18px; height: 18px; border-radius: 50%; background: var(--leaf); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: 10px;
}
.table-note { margin-top: 14px; text-align: center; font-size: 12px; color: var(--ink-3); }

/* ---------- testimonials ---------- */

.vids { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.vid {
  position: relative; aspect-ratio: 4 / 5;
  border-radius: var(--r-md); overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--ink);
}
.vid__bg { position: absolute; inset: 0; background: linear-gradient(150deg, #22362c 0%, #16211b 55%, #33231e 100%); }
.vid__mid {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}
.vid__play {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--paper); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; padding-left: 3px;
}
.vid__tag {
  font-size: 11px; font-weight: 600;
  border: 1px solid rgba(255,255,255,.25); color: #ece5d7;
  padding: 4px 11px; border-radius: 999px;
}
.vid__foot {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
}
.vid__name { color: #fff; font-weight: 600; font-size: 14px; }
.vid__city { color: rgba(255,255,255,.7); font-size: 12px; }
.vid__dur {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  background: rgba(255,253,248,.92); color: var(--ink);
  font-size: 10px; font-weight: 700; padding: 4px 8px; border-radius: var(--r-sm);
}

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 40px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.review { background: var(--card); padding: 22px 22px 24px; }
.review__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.review__who { display: flex; align-items: center; gap: 11px; }
.review__av {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--ink); background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; font-size: 14px;
}
.review__name { font-weight: 600; font-size: 13.5px; line-height: 1.3; }
.review__meta { font-size: 11.5px; color: var(--ink-3); display: flex; align-items: center; gap: 5px; }
.review__meta .ver { color: var(--leaf); font-weight: 600; }
.review__stars { color: var(--gold); font-size: 11px; letter-spacing: -1px; }
.review__text {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 15.5px; line-height: 1.6; color: var(--ink-2);
}

.ugc-head {
  margin-top: 44px; text-align: center;
  font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-3);
}
.ugc { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 18px; }
.ugc__cell {
  aspect-ratio: 1; border: 1px solid var(--line-2); border-radius: var(--r-sm);
  background: var(--card);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.ugc__cell .e { font-size: 26px; line-height: 1; }
.ugc__cell .l { font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }

/* ---------- safety + founder ---------- */

.safety__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 46px; align-items: start; }
.badges { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 26px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.badge { background: var(--card); padding: 16px 18px; display: flex; align-items: center; gap: 13px; }
.badge__ico {
  width: 34px; height: 34px; flex: none; border-radius: var(--r-sm);
  border: 1px solid var(--leaf); color: var(--leaf);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.badge__t { font-weight: 600; font-size: 13.5px; line-height: 1.25; }
.badge__s { font-size: 11px; color: var(--ink-3); }
.safety__note {
  margin-top: 22px; font-size: 13.5px; line-height: 1.7; color: var(--ink-2);
  border-left: 2px solid var(--accent); padding-left: 16px;
}
.safety__note b { font-weight: 600; }

.founder {
  background: var(--ink); color: #ece5d7;
  border-radius: var(--r-md); padding: 30px 28px;
}
.founder__top { display: flex; align-items: center; gap: 13px; }
.founder__av {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; font-size: 15px;
}
.founder__n { font-weight: 600; font-size: 14px; }
.founder__s { font-size: 12px; color: rgba(255,255,255,.6); }
.founder__quote {
  margin-top: 20px; font-family: var(--serif); font-size: 17px; line-height: 1.65; color: #f2ece0;
}
.founder__quote b { color: #a8ceb9; font-weight: 600; font-style: italic; }
.founder__sig { margin-top: 20px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #d9a58f; }

/* ---------- pricing ---------- */

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 46px; align-items: stretch; }
.plan {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 26px 24px;
  display: flex; flex-direction: column;
}
.plan__kicker { font-size: 10.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); }
.plan h4 { font-size: 22px; margin-top: 10px; }
.plan__sub { margin-top: 7px; font-size: 13px; color: var(--ink-3); }
.plan__price { margin-top: 20px; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.plan__price .now { font-family: var(--serif); font-size: 31px; font-weight: 800; letter-spacing: -0.03em; }
.plan__price .was { font-size: 13px; color: var(--ink-3); text-decoration: line-through; }
.plan__list { margin-top: 20px; display: grid; gap: 9px; font-size: 13.5px; }
.plan__list li { display: flex; gap: 9px; align-items: flex-start; }
.plan__list .y { color: var(--leaf); font-weight: 700; }
.plan__list .n { color: var(--ink-3); }
.plan__list li.off { opacity: .5; }
.plan .btn { margin-top: auto; }
.plan__list + .btn { margin-top: 24px; }

.plan--feat {
  background: var(--leaf-2);
  border: 1px solid var(--leaf);
  box-shadow: 0 0 0 4px rgba(47,93,74,.08);
}
.plan--feat .plan__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.plan--feat .flag {
  background: var(--leaf); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--r-sm);
}
.plan--feat .clock {
  font-size: 10.5px; font-weight: 700; color: var(--gold);
  border: 1px solid #e0c98f; background: var(--gold-2);
  padding: 4px 9px; border-radius: var(--r-sm);
}
.plan--feat .off-badge {
  background: var(--accent); color: #fff; font-size: 11px; font-weight: 700;
  padding: 3px 9px; border-radius: var(--r-sm);
}
.plan__inc {
  margin-top: 20px; background: var(--card);
  border: 1px solid #c3d6cb; border-radius: var(--r-sm); padding: 16px 16px 17px;
}
.plan__inc-h { font-size: 10.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--leaf); }
.plan__inc ul { margin-top: 10px; display: grid; gap: 7px; font-size: 13.5px; }
.plan__inc li { display: flex; gap: 9px; }
.plan__inc .y { color: var(--leaf); font-weight: 700; }
.plan__note { margin-top: 12px; text-align: center; font-size: 11.5px; font-weight: 600; color: var(--ink-3); }
.btn .cod-chip { font-size: 9.5px; font-weight: 700; background: rgba(255,255,255,.22); padding: 2px 6px; border-radius: 3px; letter-spacing: .08em; }

/* ---------- guarantee ---------- */

.guarantee {
  background: var(--ink); color: #ece5d7;
  border-radius: var(--r-md);
  padding: 28px 30px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.guarantee__left { display: flex; gap: 18px; align-items: flex-start; }
.guarantee__seal {
  width: 52px; height: 52px; flex: none; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.guarantee__t { font-family: var(--serif); font-size: 21px; font-weight: 600; }
.guarantee__d { margin-top: 7px; font-size: 13px; line-height: 1.65; color: rgba(255,255,255,.65); max-width: 46ch; }
.guarantee__right { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.guarantee__cell {
  border: 1px solid rgba(255,255,255,.18); border-radius: var(--r-sm);
  padding: 13px 16px; text-align: center; min-width: 108px;
}
.guarantee__cell .i { font-size: 15px; }
.guarantee__cell .l { margin-top: 5px; font-size: 10.5px; font-weight: 700; letter-spacing: .05em; }

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

.faq { margin-top: 38px; border-top: 1px solid var(--line-2); }
.faq__item { border-bottom: 1px solid var(--line-2); }
.faq__q {
  width: 100%; background: none; border: 0; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 19px 2px;
  font-family: var(--serif); font-size: 18px; font-weight: 600; letter-spacing: -0.01em;
}
.faq__sign {
  width: 26px; height: 26px; flex: none; border-radius: 50%;
  border: 1px solid var(--line-2); color: var(--ink-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.faq__item.open .faq__sign { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.faq__a { display: none; padding: 0 60px 22px 2px; font-size: 14px; line-height: 1.75; color: var(--ink-2); }
.faq__item.open .faq__a { display: block; }

/* ---------- order form ---------- */

.order__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.order h3 { font-size: 36px; margin-top: 14px; }
.order__lede { margin-top: 12px; font-size: 14.5px; color: var(--ink-3); }
.urgency {
  margin-top: 26px;
  border: 1px solid #e0c98f; background: var(--gold-2);
  border-radius: var(--r-sm); padding: 15px 17px;
  display: flex; gap: 13px; align-items: center;
}
.urgency__ico {
  width: 34px; height: 34px; flex: none; border-radius: 50%;
  background: var(--gold); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.urgency__t { font-weight: 700; font-size: 13.5px; color: #6b4b0f; }
.urgency__s { font-size: 12.5px; color: #7a5a1c; margin-top: 2px; }

.combo-pick { margin-top: 26px; }
.combo-pick__h { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); }
.combo-pick__row { margin-top: 12px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.combo-btn {
  background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r-sm);
  padding: 13px 14px; text-align: left; transition: border-color .18s ease, background .18s ease;
}
.combo-btn:hover { border-color: var(--ink-3); }
.combo-btn.on { border-color: var(--leaf); background: var(--leaf-2); }
.combo-btn .l, .combo-btn .p, .combo-btn .s { display: block; }
.combo-btn .l { font-size: 12px; font-weight: 600; }
.combo-btn .p { font-family: var(--serif); font-size: 16px; font-weight: 700; margin-top: 2px; }
.combo-btn .s { margin-top: 4px; font-size: 10.5px; font-weight: 700; color: var(--leaf); min-height: 14px; }
.secure-line { margin-top: 16px; display: flex; align-items: center; gap: 8px; font-size: 11.5px; color: var(--ink-3); }

.form {
  background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r-md);
  padding: 28px 26px;
  display: grid; gap: 18px;
}
.field label {
  display: block;
  font-size: 10.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3);
}
.field input, .field textarea, .field select {
  margin-top: 8px; width: 100%;
  font: inherit; font-size: 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  padding: 13px 14px;
  outline: none;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}
.field textarea { resize: none; line-height: 1.55; }
.field input:focus, .field textarea:focus, .field select:focus {
  background: #fff;
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(47,93,74,.1);
}
.field__hint { margin-top: 7px; font-size: 11.5px; color: var(--ink-3); }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink-3) 50%), linear-gradient(135deg, var(--ink-3) 50%, transparent 50%); background-position: right 18px center, right 13px center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 34px; }
.field--strong select { background-color: #fff; font-weight: 600; }
.form__fine {
  border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 13px; text-align: center; font-size: 11.5px; line-height: 1.7; color: var(--ink-3);
}
.form__fine b { color: var(--ink); font-weight: 600; }

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

.site-footer { background: var(--ink); color: rgba(255,255,255,.72); border-top: 1px solid var(--ink); }
.site-footer .wrap { padding-top: 46px; padding-bottom: 46px; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 0.9fr 0.8fr; gap: 44px; }
.footer__brand { display: flex; align-items: center; gap: 11px; }
.footer__mark {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.35); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 800; font-size: 18px;
}
.footer__name { font-family: var(--serif); color: #fff; font-size: 19px; font-weight: 600; }
.footer__about { margin-top: 15px; font-size: 13.5px; line-height: 1.75; max-width: 38ch; color: rgba(255,255,255,.62); }
.footer__chips { margin-top: 18px; display: flex; gap: 8px; flex-wrap: wrap; }
.footer__chips span {
  font-size: 10.5px; font-weight: 700; letter-spacing: .04em;
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--r-sm); padding: 5px 10px;
}
.footer__h { color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.footer__list { margin-top: 16px; display: grid; gap: 10px; font-size: 13.5px; }
.footer__list div { display: flex; gap: 9px; }
.footer__list .muted { color: rgba(255,255,255,.42); }
.pays { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.pays span {
  background: var(--paper); color: var(--ink);
  font-size: 10.5px; font-weight: 700; letter-spacing: .04em;
  padding: 6px 10px; border-radius: var(--r-sm);
}
.copyright { margin-top: 20px; font-size: 11px; color: rgba(255,255,255,.42); line-height: 1.7; }

/* ---------- mobile sticky bar ---------- */

.mobar { display: none; }
.mobar-spacer { display: none; }

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

@media (max-width: 980px) {
  .hero__grid, .ba__grid, .safety__grid, .order__grid { grid-template-columns: 1fr; gap: 38px; }
  .plans { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .section { padding: 46px 0; }
  .wrap { padding: 0 18px; }
  .hero { padding: 40px 0 46px; }
  .hero h1 { font-size: 36px; }
  .section-head h2, .section-head h3, .ba h3, .order h3 { font-size: 27px; }
  .header__meta { display: none; }
  .header__meta-mobile { display: block; text-align: right; max-width: 100px; font-size: 10.5px; line-height: 1.4; }
  .brand__name { font-size: 17px; }
  .brand__tag { font-size: 8.5px; letter-spacing: .14em; white-space: nowrap; }
  .brand__mark { width: 34px; height: 34px; font-size: 17px; }
  .mobar__t { font-size: 12.5px; }
  .ticker .sep { display: none; }
  .ticker .wrap { gap: 12px; font-size: 11px; }
  .problems, .features, .steps, .reviews, .vids, .badges { grid-template-columns: 1fr; }
  .problem { border-right: 0; }
  .ugc { grid-template-columns: repeat(3, 1fr); }
  .field--row, .combo-pick__row { grid-template-columns: 1fr; }
  .combo-pick__row { grid-template-columns: repeat(3, 1fr); }
  .guarantee__right { grid-template-columns: repeat(3, 1fr); width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
  .faq__a { padding-right: 20px; }
  .slider__stage { height: 260px; }
  .bottle--floor { width: 92px; height: 236px; }
  .bottle--hand { width: 72px; height: 168px; }
  .bottle--toilet { width: 72px; height: 200px; }

  .mobar {
    display: flex; align-items: center; gap: 12px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    background: rgba(255,253,248,.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--line-2);
    padding: 11px 16px;
  }
  .mobar__l { flex: 1; min-width: 0; }
  .mobar__t { font-weight: 700; font-size: 13px; line-height: 1.25; }
  .mobar__s { margin-top: 3px; font-size: 11px; color: var(--ink-3); display: flex; align-items: center; gap: 6px; }
  .mobar .btn { flex: none; padding: 12px 18px; font-size: 13px; }
  .mobar-spacer { display: block; height: 74px; }
}

/* ---------- icons ---------- */

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ico {
  width: 16px; height: 16px; flex: none;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  overflow: visible;
}
.ico--lg { width: 22px; height: 22px; }

.eyebrow--ico::before { display: none; }
.eyebrow--ico { gap: 7px; }
.eyebrow--ico .ico { width: 14px; height: 14px; }

.ornament {
  display: block; width: 34px; height: 1px;
  background: var(--accent); margin: 0 auto 4px;
  position: relative;
}
.ornament::before,
.ornament::after {
  content: ''; position: absolute; top: -2px;
  width: 5px; height: 5px; background: var(--accent);
  transform: rotate(45deg);
}
.ornament::before { left: -9px; }
.ornament::after  { right: -9px; }
.section-head--center .ornament + h2,
.section-head--center .ornament + h3 { margin-top: 18px; }

.hero__lede .em, .founder__quote .em { font-weight: 600; }
.hero__lede .em { color: var(--ink); }
.founder__quote .em { color: #a8ceb9; font-style: italic; }

.checklist .tick .ico { width: 12px; height: 12px; stroke-width: 3; }
.plate__gift .tick .ico { width: 10px; height: 10px; stroke-width: 3; color: #fff; }
.problem__x .ico { width: 12px; height: 12px; stroke-width: 3; }
.badge__ico .ico { width: 16px; height: 16px; }
.vid__play { padding-left: 2px; }
.guarantee__cell .ico { width: 17px; height: 17px; margin: 0 auto; }
.urgency__ico .ico { width: 16px; height: 16px; }
.secure-line, .footer__list div, .plan--feat .clock, .ba__tags .tag, .header__meta .tag {
  display: flex; align-items: center; gap: 7px;
}
.footer__list div { align-items: flex-start; }
.footer__list .ico { margin-top: 3px; }
.plan__list li .ico { margin-top: 3px; }
.plan__list .n .ico { stroke-width: 2.5; }
.founder__sig { display: flex; align-items: center; gap: 8px; }
.founder__sig .ico { width: 14px; height: 14px; fill: currentColor; }

/* ---------- order form: bot protection + submit states ---------- */

/* Honeypot. Off-screen rather than display:none, which some bots skip. */
.hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto; width: 1px; height: 1px;
  overflow: hidden;
}

.turnstile { min-height: 65px; }
.turnstile:empty { min-height: 0; }

.form-status {
  display: none;
  border-radius: var(--r-sm);
  padding: 13px 15px;
  font-size: 13.5px;
  line-height: 1.6;
  font-weight: 500;
}
.form-status.show { display: block; }
.form-status.is-pending {
  background: var(--paper);
  border: 1px solid var(--line-2);
  color: var(--ink-2);
}
.form-status.is-error {
  background: var(--accent-2);
  border: 1px solid #e3b8a9;
  color: #8a3620;
}
.form-status.is-ok {
  background: var(--leaf-2);
  border: 1px solid #b9cfc4;
  color: var(--leaf);
  font-weight: 600;
}

.field input.invalid, .field textarea.invalid, .field select.invalid {
  border-color: var(--accent);
  background: #fff;
}

#submit-btn[disabled] { opacity: .6; cursor: progress; }

/* Success panel replacing the form once an order lands. */
.form-done {
  background: var(--card);
  border: 1px solid var(--leaf);
  border-radius: var(--r-md);
  padding: 34px 28px;
  text-align: center;
}
.form-done__mark {
  width: 52px; height: 52px; margin: 0 auto 16px;
  border-radius: 50%; background: var(--leaf); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.form-done__mark .ico { width: 24px; height: 24px; stroke-width: 3; }
.form-done__t { font-family: var(--serif); font-size: 21px; font-weight: 600; }
.form-done__d { font-family: var(--serif); font-size: 17px; line-height: 1.65; color: var(--ink); }
.form-done__meta { margin-top: 18px; font-size: 12px; color: var(--ink-3); }
