:root {
  --background: oklch(100% 0 0);
  --foreground: oklch(21% .03 264);
  --primary: oklch(70% .12 183);
  --primary-foreground: oklch(100% 0 0);
  --primary-soft: oklch(96% .03 183);
  --alert: oklch(62% .2 30);
  --alert-soft: oklch(96% .03 40);
  --card: oklch(100% 0 0);
  --border: oklch(92% .008 255);
  --muted-foreground: oklch(55% .02 258);
  --secondary: oklch(96% .01 255);
  --shadow-card: 0 2px 10px -4px oklch(21% .03 264 / .15);
  --font: Inter, system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
}
#app { min-height: 100dvh; display: flex; flex-direction: column; }
button { font-family: inherit; color: inherit; }
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}
.wrap { max-width: 36rem; margin: 0 auto; padding: 0 16px 24px; width: 100%; }
.logo {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-weight: 800; letter-spacing: .03em; color: var(--foreground);
}
.logo .flame { font-size: 1.05em; line-height: 1; }
.logo-text { color: var(--foreground); }
h1 { font-size: clamp(1.25rem, 5.4vw, 1.7rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; text-align: center; text-wrap: balance; }
.brand { color: var(--primary); }
.alert { color: var(--alert); }
.cta {
  display: flex; width: 100%; min-height: 3.5rem; align-items: center; justify-content: center;
  border: 0; border-radius: 999px; background: var(--primary); color: var(--primary-foreground);
  font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
  font-size: clamp(.875rem, 3.8vw, 1.05rem); padding: 1rem 1.25rem; cursor: pointer;
  box-shadow: 0 10px 28px -10px var(--primary);
  animation: pulse-ring 2.4s cubic-bezier(.22,1,.36,1) infinite;
}
.cta:hover { filter: brightness(1.04); }
.cta:disabled { opacity: .4; cursor: not-allowed; animation: none; filter: none; }
a.cta { text-decoration: none; color: var(--primary-foreground); }
@keyframes pulse-ring { 50% { filter: brightness(1.06); } }
.hero { width: 100%; border-radius: 1rem; margin: 1rem 0; }
.opt { width: 100%; border: 2px solid var(--border); background: var(--card); border-radius: 1rem; padding: 12px; font-weight: 600; text-align: left; cursor: pointer; min-height: 44px; }
.opt:hover { border-color: color-mix(in oklab, var(--primary) 45%, var(--border)); }
.opt.selected, .opt:active { border-color: var(--primary); background: var(--primary); color: var(--primary-foreground); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.grid-2.gender { max-width: 22.5rem; margin: 8px auto 0; gap: 14px; }
.bar { height: 4px; background: var(--secondary); border-radius: 99px; overflow: hidden; }
.bar > i { display: block; height: 100%; background: var(--primary); }
header.top { position: sticky; top: 0; z-index: 8; background: var(--background); padding: 8px 0 6px; }
.muted { color: var(--muted-foreground); font-size: 12px; text-align: center; }
img { max-width: 100%; height: auto; display: block; }

header.top .wrap { padding-bottom: 0; }
.nav {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  margin-bottom: 8px;
}
.nav .logo { grid-column: 1 / -1; grid-row: 1; font-size: 1.02rem; pointer-events: none; }
.nav .back, .nav-spacer { grid-row: 1; z-index: 1; }
.nav-spacer { display: block; width: 44px; height: 44px; }
.back {
  width: 36px; height: 36px; margin-left: 4px;
  border: 1px solid var(--border); background: var(--card); cursor: pointer;
  font-size: 1.55rem; line-height: 1; border-radius: 99px;
  display: grid; place-items: center; padding: 0 0 2px;
  box-shadow: var(--shadow-card);
}
.landing .logo { padding: 18px 0 6px; font-size: 1.2rem; }
.landing h1 { margin: 8px 0 12px; font-size: clamp(1.375rem, 6.2vw, 2.15rem); }
.landing .cta { margin-top: 8px; }
.screen { padding-top: 12px; flex: 1; }
.screen h1 { margin-bottom: 16px; }
.screen.has-dock { padding-bottom: 8px; }
.dock {
  position: sticky; bottom: 0; z-index: 8;
  background: linear-gradient(180deg, transparent, var(--background) 32%);
  padding: 16px 0 calc(12px + env(safe-area-inset-bottom));
}
.dock .wrap { padding-bottom: 0; }
.dock .cta { margin: 0; }
.hint { margin: -4px 0 14px; }
.stack { display: flex; flex-direction: column; gap: 10px; }
.opt { display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-card); }
.opt .emoji { font-size: 1.35rem; line-height: 1; }
.opt-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sublabel { font-size: 12px; font-weight: 400; color: var(--muted-foreground); }
.opt.selected .sublabel, .opt:active .sublabel { color: var(--primary-foreground); opacity: .9; }
.grid-2 .opt { flex-direction: column; text-align: center; padding: 8px 8px 12px; position: relative; }
.grid-2 .opt img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: .85rem;
}
.gender .opt { border-radius: 1.1rem; }
.gender .opt-label { font-weight: 600; font-size: 14px; margin-top: 2px; }
.gender .chev {
  position: absolute; right: 12px; bottom: 42px;
  width: 22px; height: 22px; border-radius: 99px;
  background: #fff; color: #444;
  box-shadow: 0 1px 4px rgba(0,0,0,.16);
  font-size: 16px; line-height: 1; display: grid; place-items: center;
  padding-bottom: 2px;
}
.stack .opt img,
.opt.media img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: .75rem;
  flex-shrink: 0;
}
.split {
  display: flex;
  align-items: stretch;
  gap: 10px;
}
.split > img {
  width: 38%;
  object-fit: cover;
  border-radius: 1.1rem;
  flex-shrink: 0;
}
.split .stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.split .stack .opt { flex: 1; min-height: 48px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips > * {
  border: 2px solid var(--border);
  background: var(--card);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 600;
  cursor: pointer;
}
.chips > *.selected {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--primary-foreground);
}
.alert-box {
  background: var(--alert-soft);
  color: var(--foreground);
  border-radius: 1rem;
  padding: 14px 16px;
}
.alert-box .title { color: var(--alert); font-weight: 800; margin-bottom: 6px; }
.price-box {
  border: 1px solid var(--primary);
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow-card);
}
.price-anchor {
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 800;
  text-align: center;
  padding: 10px 16px;
  font-size: clamp(.85rem, 3.8vw, 1rem);
}
.price-body { padding: 16px; text-align: center; }
.price-name { font-weight: 800; font-size: clamp(1rem, 4.2vw, 1.25rem); }
.price-value {
  font-size: clamp(2.5rem, 12vw, 3rem);
  font-weight: 800;
  line-height: 1;
  margin: 8px 0 4px;
}
.price-micro, .price-pay { color: var(--muted-foreground); font-size: 12px; font-weight: 600; }
.price-pay { margin-top: 10px; }
.seals {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 12px;
  margin-top: 12px; font-size: 10px; font-weight: 600;
}
.seals b { font-weight: 800; }
.group { margin-bottom: 16px; }
.group-title { font-weight: 800; font-size: 14px; margin-bottom: 8px; }
.info-text { color: var(--muted-foreground); text-align: center; line-height: 1.5; margin: 0 0 12px; }
.info-img { width: 100%; border-radius: 1rem; margin: 8px 0 4px; }
.slider-card {
  border: 2px solid var(--border);
  background: var(--card);
  border-radius: 1rem;
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.slider-val {
  font-size: clamp(2.5rem, 12vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
}
.slider-val span + span {
  margin-left: 4px;
  font-size: clamp(1rem, 4.5vw, 1.25rem);
  color: var(--muted-foreground);
  font-weight: 800;
}
input[type=range] { width: 100%; margin-top: 1rem; accent-color: var(--primary); }
.slider-ends {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 11px;
  color: var(--muted-foreground);
}
.imc { margin-bottom: 12px; }
.imc-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; }
.imc-title { font-weight: 800; }
.imc-pct { font-weight: 800; flex-shrink: 0; }
.imc-bar {
  position: relative;
  height: 10px;
  border-radius: 99px;
  background: linear-gradient(90deg, #22c55e 0%, #a3e635 25%, #facc15 50%, #f97316 75%, #ef4444 100%);
  margin: 12px 0 8px;
}
.imc-pointer {
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  border: 3px solid var(--primary);
  background: var(--background);
  border-radius: 99px;
  transform: translate(-50%, -50%);
}
.imc-axis {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted-foreground);
}
.summary-img { margin: 12px auto; max-height: 12rem; object-fit: contain; }
.plan-head { text-align: center; font-weight: 800; font-size: clamp(1.05rem, 4.8vw, 1.25rem); margin: 0 0 12px; }
.plan-chart { position: relative; margin-top: 8px; color: var(--border); }
.plan-chart svg { width: 100%; height: auto; display: block; }
.plan-halo { color: color-mix(in oklab, var(--muted-foreground) 25%, transparent); }
.plan-badge {
  position: absolute;
  z-index: 1;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 800;
}
.plan-badge.start {
  top: -10px; left: 0;
  background: #fff; color: #111;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 2px 10px rgba(15,23,42,.2);
  font-size: 12px;
}
.plan-badge.end { bottom: 28px; right: 0; background: var(--primary); color: var(--primary-foreground); }
.plan-axis {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted-foreground);
  padding: 0 4px;
}
.screen.center { text-align: center; }
.load-pct {
  font-size: clamp(2.5rem, 12vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin: 12px 0;
}
.load-bar { height: 12px; background: var(--secondary); border-radius: 99px; overflow: hidden; }
.load-bar > i { display: block; height: 100%; background: var(--primary); width: 0; }
.load-line { margin: 12px 0 16px; font-weight: 600; }
.prints { display: flex; flex-direction: column; gap: 12px; text-align: left; }
.print-card {
  border: 2px solid var(--border);
  border-radius: 1rem;
  padding: 14px;
  background: var(--card);
  box-shadow: var(--shadow-card);
}
.print-kicker { font-weight: 800; text-align: left; margin: 8px 0 4px; font-size: 14px; }
.print-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.print-photo { width: 40px; height: 40px; border-radius: 99px; object-fit: cover; flex-shrink: 0; }
.print-name { font-weight: 800; font-size: 14px; }
.print-title { font-weight: 700; font-size: 14px; margin: 4px 0; }
.print-text { color: var(--muted-foreground); font-size: 13px; line-height: 1.45; }
.recap {
  background: var(--primary-soft);
  border-radius: 1rem;
  padding: 14px 16px;
  font-weight: 700;
  text-align: left;
  margin: 12px 0 4px;
}
.offer { display: flex; flex-direction: column; gap: 22px; }
.offer > h1 { margin-bottom: 0; }
.offer h2 {
  font-size: clamp(1.05rem, 4.8vw, 1.25rem);
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  text-wrap: balance;
}
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  border: 2px solid var(--border);
  border-radius: 1.5rem;
  padding: 12px;
  background: var(--card);
  box-shadow: var(--shadow-card);
}
.compare-label { text-align: center; font-weight: 800; font-size: 13px; margin-bottom: 8px; }
.compare-crop {
  height: clamp(7.5rem, 34vw, 10rem);
  overflow: hidden;
  border-radius: .75rem;
  background: var(--secondary);
}
.compare-crop img {
  max-width: none;
  height: auto;
  display: block;
  margin-top: -13%;
}
.metric { margin-top: 8px; }
.metric p { font-size: 11px; font-weight: 600; color: var(--muted-foreground); margin-bottom: 4px; }
.metric-track { height: 8px; background: var(--secondary); border-radius: 99px; overflow: hidden; }
.metric-track > i { display: block; height: 100%; border-radius: 99px; }
.metric-track > i.bad { background: var(--alert); }
.metric-track > i.good { background: var(--primary); }
.how {
  background: var(--primary-soft);
  border-radius: 1.5rem;
  padding: 16px;
  text-align: center;
}
.how p { font-size: 14px; line-height: 1.5; margin-top: 8px; }
.include { text-align: center; margin-top: 16px; }
.include-emoji { font-size: 1.75rem; }
.include-title { font-weight: 800; margin: 6px 0 4px; }
.include-text { color: var(--muted-foreground); font-size: 14px; line-height: 1.5; }
.ba-img { width: 100%; border-radius: 1rem; margin-top: 12px; }
.review {
  border: 2px solid var(--border);
  border-radius: 1rem;
  padding: 14px;
  background: var(--card);
  box-shadow: var(--shadow-card);
  margin-top: 12px;
}
.review-head { display: flex; justify-content: space-between; gap: 8px; align-items: center; }
.review-name { font-weight: 800; font-size: 14px; }
.stars { color: var(--primary); flex-shrink: 0; }
.review-title { font-weight: 700; font-size: 14px; margin: 6px 0 4px; }
.review-text { color: var(--muted-foreground); font-size: 14px; line-height: 1.5; }
.guarantee {
  border: 2px solid var(--border);
  border-radius: 1.5rem;
  padding: 20px 16px;
  text-align: center;
  background: var(--card);
  box-shadow: var(--shadow-card);
}
.guarantee img { width: 7rem; margin: 0 auto 12px; }
.guarantee p { color: var(--muted-foreground); font-size: 14px; line-height: 1.5; margin-top: 8px; }
