/* ----------  TOKENS (aligned with elonga.webflow.css)  ---------- */
:root {
  --black: #13162a;
  --crimson: #f4175b;
  --crimson-deep: #f73571;
  --grey-font: #919299;
  --dim-grey: #646778;
  --bg-cards: #202336;
  --lighter-black-bg: #282b3c;
  --bg-light-beige: #f5f5f3;
  --light-greyish: #cfceca;

  --radius: 12px;
  --radius-btn: 8px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 10px 34px rgba(0, 0, 0, 0.07);
  --display: Stolzl, Arial, sans-serif;
  --body: "Stolzl Book", Arial, sans-serif;
  --ui: Plusjakartasans, Arial, sans-serif;
  --cta-gradient: linear-gradient(23deg, #f4175b 25%, #f73571 94%);

  --page-padding: clamp(1.25rem, 4vw, 2.5rem);
  --content-max: 42rem;
  --text-h1: clamp(1.75rem, 2.5vw + 1.25rem, 2.5rem);
  --text-body: clamp(0.875rem, 0.25vw + 0.8rem, 1rem);
  --text-age: clamp(3.5rem, 8vw + 1rem, 5.25rem);
  --text-age-result: clamp(4rem, 10vw + 1rem, 5.5rem);
  --footer-pad: clamp(5.5rem, 12vh, 7.5rem);
}

/* ---------- LIGHT THEME ---------- */
[data-theme="light"] {
  --bg: var(--bg-light-beige);
  --bg2: #efeef0;
  --frame: var(--bg-light-beige);
  --ink: var(--black);
  --ink-soft: var(--dim-grey);
  --line: var(--light-greyish);
  --red: var(--crimson);
  --red-deep: #da1551;
  --red-soft: #fde4e8;
  --opt-bg: #efeef0;
  --opt-bg-sel: #ffffff;
  --opt-hover: #e8e8eb;
  --card: #ffffff;
  --card-soft: #ffffff;
  --white: #ffffff;
  --green: #2e7d5b;
  --cta-bg: var(--black);
  --cta-fg: #ffffff;
  --on-card: var(--black);
  --on-card-soft: var(--dim-grey);
}

/* ---------- DARK THEME (elonga.com) ---------- */
[data-theme="dark"] {
  --bg: var(--black);
  --bg2: var(--lighter-black-bg);
  --frame: var(--black);
  --ink: #ffffff;
  --ink-soft: var(--grey-font);
  --line: #3a3d52;
  --red: var(--crimson);
  --red-deep: var(--crimson-deep);
  --red-soft: #2a1c30;
  --opt-bg: var(--bg-cards);
  --opt-bg-sel: var(--lighter-black-bg);
  --opt-hover: #2a2e48;
  --card: var(--bg-cards);
  --card-soft: var(--lighter-black-bg);
  --white: var(--bg-cards);
  --green: #4fd1a0;
  --cta-bg: var(--crimson);
  --cta-fg: #ffffff;
  --on-card: #ffffff;
  --on-card-soft: var(--grey-font);
}

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

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100%;
  min-height: 100dvh;
  font-family: var(--body);
  font-size: var(--text-body);
  line-height: 2;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

/* ----------  SHELL  ---------- */
.frame {
  width: 100%;
  max-width: var(--content-max);
  min-height: 100dvh;
  margin-inline: auto;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* ----------  TOP BAR  ---------- */
.topbar {
  padding: max(1.25rem, env(safe-area-inset-top)) var(--page-padding) 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 3.75rem;
  flex-shrink: 0;
}

.back {
  border: none;
  background: none;
  font-size: 1.625rem;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  padding: 0.25rem 0.5rem 0.25rem 0;
  visibility: hidden;
  min-width: 2.75rem;
  min-height: 2.75rem;
}

.back.show {
  visibility: visible;
}

.progress {
  flex: 1;
  display: flex;
  gap: 0.375rem;
}

.progress.hidden {
  visibility: hidden;
}

.seg {
  height: 4px;
  flex: 1;
  border-radius: 3px;
  background: var(--line);
  overflow: hidden;
}

.seg > i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--red);
  border-radius: 3px;
  transition: width 0.45s ease;
}

/* ----------  STAGE  ---------- */
.stage {
  flex: 1;
  position: relative;
  min-height: 0;
}

.screen {
  position: absolute;
  inset: 0;
  padding: 0.5rem var(--page-padding) var(--footer-pad);
  padding-bottom: max(var(--footer-pad), calc(env(safe-area-inset-bottom) + 5rem));
  display: none;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  animation: fade 0.35s ease;
}

.screen.active {
  display: flex;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  margin-bottom: 0.875rem;
  font-family: var(--ui);
}

h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--text-h1);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 0.625rem;
}

h1.center,
h2.center,
p.center {
  text-align: center;
}

h1 .hl {
  color: var(--red);
}

.sub {
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: var(--text-body);
  line-height: 2;
  margin-bottom: 1.375rem;
}

.sub.center {
  text-align: center;
}

/* ----------  OPTIONS  ---------- */
.opts {
  display: flex;
  flex-direction: column;
  gap: 0.8125rem;
  margin-top: 0.375rem;
}

.opt {
  background: var(--opt-bg);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 1.125rem 1.25rem;
  font-size: 0.875rem;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  transition: background 0.18s, border-color 0.18s, box-shadow 0.18s;
  font-family: var(--display);
  width: 100%;
  min-height: 3.25rem;
}

.opt:hover {
  background: var(--opt-hover);
}

.opt.sel {
  background: var(--opt-bg-sel);
  border-color: var(--red);
  box-shadow: var(--shadow);
}

.opt .emo {
  font-size: 1.375rem;
  line-height: 1;
  flex-shrink: 0;
}

.opt .check {
  margin-left: auto;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 7px;
  border: 2px solid var(--line);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
}

.opt.sel .check {
  background: var(--red);
  border-color: var(--red);
}

.opt.sel .check::after {
  content: "✓";
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8125rem;
  margin-top: 0.375rem;
}

.grid .opt {
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 0.875rem;
  padding: 1.875rem 0.75rem;
  min-height: 7.5rem;
}

.grid .opt .emo {
  font-size: 1.875rem;
}

.grid .opt .check {
  display: none;
}

/* ----------  INPUTS  ---------- */
.field {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem 1.375rem;
  font-size: 1.125rem;
  width: 100%;
  font-family: var(--body);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.field:focus {
  outline: none;
  border-color: var(--red);
}

select.field {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231F1B16' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1.375rem center;
}

/* ----------  AGE SLIDER  ---------- */
.agepick {
  margin-top: 1.875rem;
  max-width: 28rem;
  margin-inline: auto;
  width: 100%;
}

.agenum {
  text-align: center;
  margin-bottom: 1.375rem;
}

.agenum span {
  font-family: var(--display);
  font-size: var(--text-age);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.agenum small {
  display: block;
  font-size: 0.875rem;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.375rem;
}

.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 6px;
  background: var(--opt-bg);
  outline: none;
  margin: 0.25rem 0;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--red);
  cursor: pointer;
  border: 4px solid var(--frame);
  box-shadow: 0 2px 10px rgba(244, 23, 91, 0.5);
}

.slider::-moz-range-thumb {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--red);
  cursor: pointer;
  border: 4px solid var(--frame);
  box-shadow: 0 2px 10px rgba(244, 23, 91, 0.5);
}

.agescale {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
}

/* ----------  CTA (matches Webflow .button-2)  ---------- */
.cta {
  background-color: transparent;
  background-image: var(--cta-gradient);
  color: var(--cta-fg);
  border: none;
  border-radius: var(--radius-btn);
  padding: 1.125rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 400;
  width: 100%;
  cursor: pointer;
  font-family: var(--display);
  transition: background-image 0.4s ease, background-color 0.4s ease, filter 0.18s;
  margin-top: 0.5rem;
  min-height: 3.5rem;
  max-height: 3.5rem;
}

.cta:hover {
  background-image: linear-gradient(var(--crimson), var(--crimson));
  filter: none;
}

.cta:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.cta.red {
  background-color: transparent;
  background-image: var(--cta-gradient);
}

.cta.red:hover {
  background-image: linear-gradient(var(--crimson), var(--crimson));
}

[data-theme="light"] .cta {
  background-image: none;
  background-color: var(--cta-bg);
}

[data-theme="light"] .cta:hover {
  filter: brightness(0.92);
}

[data-theme="light"] .cta.red {
  background-color: var(--crimson);
  background-image: var(--cta-gradient);
}

.footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.125rem var(--page-padding) max(1.625rem, env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent 0%, var(--bg) 38%);
}

.footer--static {
  position: static;
  background: none;
  padding: 1.125rem 0 0;
}

/* ----------  INTERSTITIAL  ---------- */
.center-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 36rem;
  margin-inline: auto;
}

.lock {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.625rem;
  margin: 0 auto 1.625rem;
}

.factcard {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  margin: 1.125rem 0;
  width: 100%;
}

.factrow {
  display: flex;
  align-items: flex-start;
  gap: 0.8125rem;
  text-align: left;
  margin: 1rem 0;
}

.factrow .ic {
  font-size: 1.375rem;
  flex-shrink: 0;
}

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

.factrow b {
  color: var(--ink);
  font-weight: 600;
}

.logo {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw + 1rem, 1.875rem);
  text-align: center;
  margin: 0.375rem 0 0.125rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-transform: lowercase;
}

.logo::after {
  content: "·";
  color: var(--red);
}

.press {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.125rem 1.625rem;
  align-items: center;
  margin: 1.125rem 0;
  opacity: 0.7;
  font-family: var(--display);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  letter-spacing: 0.04em;
}

.press span {
  font-weight: 600;
}

.seal {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 1.5rem);
  flex-wrap: wrap;
  margin: 1.25rem 0;
  width: 100%;
}

.bzgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(5.25rem, 1fr));
  gap: 0.5rem;
  margin-top: 1.375rem;
  width: 100%;
}

.bz {
  background: var(--opt-bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.625rem 0.875rem;
  text-align: center;
}

.bz b {
  display: block;
  font-size: 0.875rem;
  color: var(--ink);
  font-family: var(--display);
}

.bz span {
  font-size: 0.6875rem;
  color: var(--ink-soft);
}

.seal .s {
  text-align: center;
  min-width: 5.5rem;
}

.seal .s b {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--ink);
}

.seal .s span {
  font-size: 0.75rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

.chartbox {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.375rem;
  box-shadow: var(--shadow);
  width: 100%;
  margin: 0.375rem 0 1rem;
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 0.625rem;
  height: 7.5rem;
  margin-top: 0.5rem;
}

.bars .b {
  flex: 1;
  background: var(--red-soft);
  border-radius: 8px 8px 0 0;
  position: relative;
}

.bars .b.you {
  background: var(--red);
}

.bars .b span {
  position: absolute;
  top: -1.375rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.barslabels {
  display: flex;
  gap: 0.625rem;
  margin-top: 0.5rem;
}

.barslabels span {
  flex: 1;
  text-align: center;
  font-size: 0.6875rem;
  color: var(--ink-soft);
}

/* ----------  LOADING  ---------- */
.loadrow {
  margin: 0.875rem 0;
  max-width: 32rem;
  margin-inline: auto;
  width: 100%;
}

.loadrow .lt {
  display: flex;
  justify-content: space-between;
  font-size: 0.9375rem;
  margin-bottom: 0.4375rem;
  color: var(--ink);
}

.loadrow .lt .pct {
  color: var(--ink-soft);
}

.ltrack {
  height: 7px;
  background: var(--line);
  border-radius: 5px;
  overflow: hidden;
}

.ltrack > i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #E8B24A, var(--red));
  border-radius: 5px;
  transition: width 0.4s linear;
}

/* ----------  RESULT  ---------- */
.agewrap {
  text-align: center;
  margin: 0.625rem 0 0.375rem;
}

.agebig {
  font-family: var(--display);
  font-size: var(--text-age-result);
  font-weight: 600;
  line-height: 1;
  color: var(--red);
}

.agebig.younger {
  color: #2E7D5B;
}

.agecap {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
}

.delta {
  display: inline-block;
  background: var(--red-soft);
  color: var(--red);
  font-weight: 500;
  font-family: var(--ui);
  border-radius: var(--radius-btn);
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  margin-top: 0.875rem;
}

.delta.younger {
  background: #D9EDE2;
  color: #2E7D5B;
}

.pillbreak {
  margin: 1.5rem 0 0.5rem;
  max-width: 32rem;
  margin-inline: auto;
  width: 100%;
}

.pillrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.6875rem 0;
}

.pillrow .pn {
  width: 6rem;
  font-size: 0.875rem;
  color: var(--ink);
  flex-shrink: 0;
}

.pillrow .pt {
  flex: 1;
  height: 9px;
  background: var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.pillrow .pt > i {
  display: block;
  height: 100%;
  border-radius: 6px;
  background: var(--red);
}

.pillrow .pt > i.good {
  background: #3FA277;
}

.pillrow .pv {
  width: 3.375rem;
  text-align: right;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  flex-shrink: 0;
}

.fixcards {
  display: grid;
  gap: 0.75rem;
  margin: 0.75rem 0;
}

.fixcard {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  text-align: left;
}

.fixcard .fh {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.125rem;
  margin-bottom: 0.375rem;
}

.fixcard p {
  font-family: var(--body);
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 2;
}

/* ----------  PAYWALL / CONVERSION  ---------- */
.reserve {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--bg2);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.125rem;
  flex-wrap: wrap;
}

.reserve .rt {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.3;
}

.reserve .rt b {
  color: var(--ink);
}

.reserve .rb {
  background-color: transparent;
  background-image: var(--cta-gradient);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  padding: 0.75rem 1.125rem;
  font-weight: 400;
  font-family: var(--display);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  min-height: 2.75rem;
  transition: background-image 0.4s ease;
}

.reserve .rb:hover {
  background-image: linear-gradient(var(--crimson), var(--crimson));
}

.offer {
  background: var(--card);
  border: 2px solid var(--red);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 0.5rem 0 1.125rem;
}

.offer .tag {
  background-color: var(--crimson);
  background-image: linear-gradient(to bottom, var(--crimson), var(--crimson));
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-family: var(--ui);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 0.5625rem;
  text-transform: uppercase;
}

.offer .ob {
  padding: 1.375rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.875rem;
  flex-wrap: wrap;
}

.offer .ob .ol h3 {
  font-family: var(--display);
  font-size: 1.3125rem;
  margin-bottom: 0.25rem;
}

.offer .ob .ol p {
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.offer .ob .ol .strike {
  text-decoration: line-through;
  opacity: 0.6;
  margin-right: 0.375rem;
}

.offer .ob .price {
  font-family: var(--display);
  font-size: 1.875rem;
  color: var(--ink);
  text-align: right;
  flex-shrink: 0;
}

.offer .ob .price small {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-soft);
  font-family: var(--body);
}

.feats {
  display: grid;
  gap: 1rem;
  margin: 1rem 0;
}

.feat {
  display: flex;
  align-items: flex-start;
  gap: 0.8125rem;
  text-align: left;
}

.feat .fi {
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 11px;
  background: var(--red-soft);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feat .ft b {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.0625rem;
  margin-bottom: 0.125rem;
}

.feat .ft p {
  font-family: var(--body);
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 2;
}

.guarantee {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.625rem 1.375rem;
  text-align: center;
  box-shadow: var(--shadow);
  margin: 1.375rem 0;
}

.guarantee .gseal {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 3px solid var(--red);
  color: var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.875rem;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-transform: uppercase;
}

.guarantee h3 {
  font-family: var(--display);
  font-size: 1.4375rem;
  margin-bottom: 0.5rem;
}

.guarantee p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.reviews h2,
.proofh {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.375rem, 2vw + 1rem, 1.5rem);
  line-height: 1.37;
  text-align: center;
  margin: 1.5rem 0 0.25rem;
}

.lovec {
  text-align: center;
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(1.375rem, 2vw + 1rem, 1.625rem);
  margin-bottom: 1.125rem;
}

.reviews {
  display: grid;
  gap: 0.875rem;
  margin: 0.875rem 0;
}

.review {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  text-align: left;
}

.review .stars {
  color: var(--red);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.review p {
  font-family: var(--body);
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 2;
  margin-bottom: 0.75rem;
}

.review h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.review .who {
  font-size: 0.875rem;
  font-weight: 600;
}

.storenote {
  background: #FBF6EC;
  border: 1px dashed var(--red);
  border-radius: 14px;
  padding: 0.875rem 1rem;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.45;
  margin: 0.875rem 0;
}

.storenote b {
  color: var(--red);
}

.smallnote {
  font-size: 0.875rem;
  font-family: var(--ui);
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.8;
  margin-top: 0.875rem;
}

.smallnote a {
  color: var(--ink-soft);
}

.disclaimer {
  font-size: 0.75rem;
  font-family: var(--ui);
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.8;
  margin-top: 0.625rem;
  opacity: 0.8;
}

/* ----------  RESPONSIVE — tablet & desktop  ---------- */
@media (min-width: 640px) {
  :root {
    --content-max: 44rem;
  }

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

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

  .pillrow .pn {
    width: 7rem;
  }
}

@media (min-width: 900px) {
  .fixcards {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  :root {
    --content-max: 48rem;
  }

  .opts {
    gap: 1rem;
  }

  .opt {
    padding: 1.375rem 1.5rem;
  }
}

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

/* dev: skip funnel to pivot (remove before production) */
.dev-skip {
  display: block;
  width: 100%;
  margin-bottom: 0.75rem;
  padding: 0.625rem 1rem;
  border: 1px dashed var(--grey-font);
  border-radius: var(--radius-btn);
  background: transparent;
  color: var(--grey-font);
  font-family: var(--ui);
  font-size: 13px;
  cursor: pointer;
}

.dev-skip:hover {
  color: #fff;
  border-color: var(--crimson);
}
