@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap");

/* ============================================================
   WeightPas — design system
   ============================================================ */

:root {
  --bg: #fbf7f7;
  --bg-2: #f4eef1;
  --surface: #ffffff;
  --ink: #17131f;
  --ink-2: #362e42;
  --mute: #6d6479;
  --line: #e8dfe4;
  --line-2: #f0e8ec;

  --brand: #e0457b;
  --brand-dk: #bf2f62;
  --brand-lt: #ff7aa6;
  --brand-soft: #fdeaf1;

  --accent: #14a898;
  --accent-dk: #0e8b7d;
  --accent-soft: #e2f5f2;

  --dark: #17131f;
  --dark-2: #241d2f;

  --shadow-s: 0 2px 10px rgba(23, 19, 31, 0.05);
  --shadow: 0 18px 44px rgba(23, 19, 31, 0.09);
  --shadow-lg: 0 34px 80px rgba(23, 19, 31, 0.16);

  --r-s: 10px;
  --r: 18px;
  --r-l: 28px;
  --r-xl: 40px;

  --g: clamp(18px, 4vw, 56px);
  --max: 1180px;
  --bar: 74px;

  --display: "Outfit", system-ui, sans-serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.68;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--brand); color: #fff; }
h1, h2, h3, h4, h5 { font-family: var(--display); font-weight: 700; letter-spacing: -0.025em; line-height: 1.12; }

.wrap { width: min(var(--max), 100% - 2 * var(--g)); margin-inline: auto; }

.js [data-in] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js [data-in].on { opacity: 1; transform: none; }
.js [data-in][data-w="1"] { transition-delay: 0.09s; }
.js [data-in][data-w="2"] { transition-delay: 0.17s; }
@media (prefers-reduced-motion: reduce) {
  .js [data-in] { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- top strip ---------- */

.top-ad {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 16px;
}
.top-ad b { color: var(--brand-lt); font-weight: 600; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--bar);
  display: flex;
  align-items: center;
  gap: 20px;
  padding-inline: var(--g);
  background: rgba(251, 247, 247, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 32px rgba(23, 19, 31, 0.06);
}
.brand {
  font-family: var(--display);
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
}
.brand::before {
  content: "";
  flex: none;
  margin-right: 9px;
  width: 26px;
  height: 26px;
  border-radius: 9px;
  background: linear-gradient(140deg, var(--brand-lt), var(--brand) 55%, var(--brand-dk));
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.9), 0 4px 12px rgba(224, 69, 123, 0.35);
}
.brand span { color: var(--brand); }

.nav {
  display: flex;
  gap: 4px;
  margin-inline: auto;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-2);
}
.nav a {
  padding: 7px 14px;
  border-radius: 999px;
  transition: background 0.22s, color 0.22s;
}
.nav a:hover { background: var(--brand-soft); color: var(--brand-dk); }

.header-end { display: flex; align-items: center; gap: 12px; }
.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}
.btn-buy:hover {
  background: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(224, 69, 123, 0.32);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
  position: relative;
}
.menu-btn i {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.25s;
}
.menu-btn i:nth-child(1) { top: 14px; }
.menu-btn i:nth-child(2) { top: 20.5px; }
.menu-btn i:nth-child(3) { top: 27px; }
body.menu-open .menu-btn i:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .menu-btn i:nth-child(2) { opacity: 0; }
body.menu-open .menu-btn i:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--dark);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
body.menu-open { overflow: hidden; }
body.menu-open .mobile-nav { opacity: 1; visibility: visible; }
.mobile-nav > div { text-align: center; padding: 24px; }
.mobile-nav ol {
  display: grid;
  gap: 14px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 8vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}
.mobile-nav ol a { transition: color 0.2s; }
.mobile-nav ol a:hover { color: var(--brand-lt); }
.mobile-nav small {
  display: block;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}
.mobile-nav small a { color: var(--brand-lt); }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s, color 0.25s;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 30px rgba(224, 69, 123, 0.3);
}
.btn-primary:hover { background: var(--brand-dk); transform: translateY(-2px); box-shadow: 0 18px 40px rgba(224, 69, 123, 0.38); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn-outline:hover { box-shadow: inset 0 0 0 1.5px var(--ink); transform: translateY(-2px); }
.btn-accent {
  background: var(--ink);
  color: #fff;
}
.btn-accent:hover { background: var(--brand); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(224, 69, 123, 0.32); }

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

.hero {
  position: relative;
  width: min(var(--max), 100% - 2 * var(--g));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(40px, 7vw, 86px) 0 clamp(44px, 6vw, 78px);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -18%;
  right: -22%;
  width: 62vw;
  height: 62vw;
  max-width: 780px;
  max-height: 780px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 122, 166, 0.28), rgba(224, 69, 123, 0.05) 58%, transparent 72%);
  filter: blur(6px);
  pointer-events: none;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 9px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-s);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  margin-bottom: 22px;
}
.kicker::before {
  content: "CZ";
  display: grid;
  place-items: center;
  width: 26px;
  height: 20px;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.03;
  text-wrap: balance;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--brand) 20%, var(--brand-lt));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--mute);
  max-width: 52ch;
  margin-bottom: 26px;
}

.price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 14px;
  padding: 16px 20px;
  border-radius: var(--r);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-s);
  margin-bottom: 24px;
  max-width: 520px;
}
.price-now {
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.price-was { font-size: 1rem; color: var(--mute); text-decoration: line-through; }
.price-note { font-size: 0.78rem; color: var(--mute); flex-basis: 100%; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
}
.hero-stats div {
  padding: 14px 16px;
  border-radius: var(--r-s);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line-2);
}
.hero-stats b {
  display: block;
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand);
}
.hero-stats span { font-size: 0.74rem; color: var(--mute); line-height: 1.4; display: block; }

.hero-visual { position: relative; }
.hero-visual img {
  width: 100%;
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-2);
}
.hero-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-chip {
  position: absolute;
  right: -10px;
  bottom: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px 13px 14px;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid var(--line-2);
}
.hero-chip i {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dk);
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 800;
  font-style: normal;
}
.hero-chip b { display: block; font-family: var(--display); font-size: 0.9rem; font-weight: 700; }
.hero-chip small { display: block; font-size: 0.72rem; color: var(--mute); line-height: 1.3; }

/* ---------- trust bar ---------- */

.trust-bar {
  width: min(var(--max), 100% - 2 * var(--g));
  margin: 0 auto clamp(30px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  overflow: hidden;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 22px 24px;
  background: var(--surface);
}
.trust-item i {
  flex: none;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: var(--brand-soft);
  color: var(--brand-dk);
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 800;
  font-style: normal;
}
.trust-item b { display: block; font-family: var(--display); font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.trust-item small { display: block; font-size: 0.78rem; color: var(--mute); line-height: 1.45; }

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

.section { padding: clamp(52px, 8vw, 100px) 0; }
.section-alt { background: var(--bg-2); }

.section-head { max-width: 62ch; margin-bottom: clamp(30px, 4vw, 52px); }
.section-tag {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.9rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.section-head p { color: var(--mute); font-size: 1.02rem; }

/* ---------- manifesto / overview ---------- */

.manifesto {
  display: grid;
  gap: 30px;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}
.quote {
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.28;
  color: var(--ink);
}
.quote b { color: var(--brand); font-weight: 700; }
.manifesto-copy { display: grid; gap: 14px; text-align: left; }
.manifesto-copy p { color: var(--mute); font-size: 1.02rem; }
.manifesto-copy strong { color: var(--ink-2); }

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

.product-block {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(26px, 4vw, 60px);
  align-items: start;
}
.gallery { position: sticky; top: calc(var(--bar) + 20px); }
.gallery-stage {
  position: relative;
  border-radius: var(--r-l);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
}
.gallery-stage > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6%;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.6s var(--ease), transform 0.9s var(--ease);
}
.gallery-stage > img.on { opacity: 1; transform: none; }
.gallery-count {
  position: absolute;
  z-index: 2;
  left: 18px;
  top: 18px;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 12px; }
.thumbs button {
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
  border: 1.5px solid var(--line);
  aspect-ratio: 1 / 1;
  padding: 6px;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}
.thumbs button:hover { transform: translateY(-2px); }
.thumbs button[aria-current="true"] { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
.thumbs img { width: 100%; height: 100%; object-fit: contain; }

.product-copy h3 {
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.spec {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.spec:last-child { border-bottom: 1px solid var(--line); }
.spec dt {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--brand);
  padding-top: 3px;
}
.spec h4 { font-size: 1.02rem; font-weight: 700; margin-bottom: 3px; }
.spec p { font-size: 0.92rem; color: var(--mute); }

.pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0; }
.pill {
  padding: 7px 15px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dk);
  font-size: 0.78rem;
  font-weight: 600;
}
.price-row--product, .price-row--cta { max-width: none; }
.price-row--cta { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.2); box-shadow: none; }
.price-row--cta .price-now { color: #fff; }
.price-row--cta .price-note { color: rgba(255, 255, 255, 0.65); }

/* ---------- bento ---------- */

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.bento-card {
  grid-column: span 2;
  padding: 28px;
  border-radius: var(--r-l);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}
.bento-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--brand-soft); }
.bento-card:nth-child(1), .bento-card:nth-child(2) { grid-column: span 3; }
.bento-card:nth-child(1) {
  background: linear-gradient(155deg, var(--ink), var(--dark-2));
  border-color: transparent;
  color: #fff;
}
.bento-card:nth-child(1) p { color: rgba(255, 255, 255, 0.72); }
.bento-card:nth-child(1) .bento-num { background: rgba(255, 255, 255, 0.12); color: var(--brand-lt); }
.bento-num {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: var(--brand-soft);
  color: var(--brand-dk);
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.bento-card h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 8px; }
.bento-card p { font-size: 0.93rem; color: var(--mute); }

/* ---------- phases ---------- */

.phase-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.phase-card {
  padding: 30px;
  border-radius: var(--r-l);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.phase-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.phase-card.featured {
  background: linear-gradient(160deg, var(--brand), var(--brand-dk));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 22px 50px rgba(224, 69, 123, 0.28);
}
.phase-card.featured p { color: rgba(255, 255, 255, 0.85); }
.phase-card.featured .phase-label { background: rgba(255, 255, 255, 0.18); color: #fff; }
.phase-label {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--bg-2);
  color: var(--ink-2);
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.phase-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 9px; }
.phase-card p { font-size: 0.93rem; color: var(--mute); }

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

.steps-band {
  background: linear-gradient(155deg, var(--ink), var(--dark-2) 60%, #2e2038);
  border-radius: var(--r-xl);
  padding: clamp(34px, 5vw, 64px);
  color: #fff;
}
.steps-band .section-head { margin-bottom: 34px; }
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.step {
  position: relative;
  padding: 26px 22px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.step::before {
  content: attr(data-step);
  display: block;
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--brand-lt);
  margin-bottom: 10px;
  line-height: 1;
}
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 7px; }
.step p { font-size: 0.88rem; color: rgba(255, 255, 255, 0.68); }

/* ---------- stats ---------- */

.stats-grid { display: grid; grid-template-columns: 1fr 0.95fr; gap: clamp(26px, 4vw, 56px); align-items: start; }
.stat-list { display: grid; gap: 12px; }
.stat-item {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 26px;
  border-radius: var(--r);
  background: var(--surface);
  border: 1px solid var(--line);
}
.stat-item strong {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--brand);
  line-height: 1;
}
.stat-item p { font-size: 0.9rem; color: var(--mute); }
.note {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: var(--r);
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  font-size: 0.88rem;
  color: var(--ink-2);
}

/* ---------- cta band ---------- */

.cta-band {
  background: linear-gradient(150deg, var(--ink), #33203a 55%, var(--brand-dk));
  border-radius: var(--r-xl);
  padding: clamp(34px, 5vw, 64px);
  color: #fff;
}
.cta-inner { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(24px, 4vw, 52px); align-items: center; }
.cta-inner h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 800; margin-bottom: 12px; }
.cta-inner p { color: rgba(255, 255, 255, 0.74); font-size: 0.95rem; margin-bottom: 20px; }
.checks { display: grid; gap: 11px; }
.checks li {
  position: relative;
  padding-left: 32px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}
.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--brand-lt);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
}

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

.guarantee {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-s);
}
.seal {
  display: grid;
  place-items: center;
  width: 172px;
  height: 172px;
  border-radius: 50%;
  background: var(--brand-soft);
  border: 2px dashed var(--brand);
  text-align: center;
}
.seal b {
  display: block;
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--brand-dk);
  line-height: 1;
}
.seal small { display: block; font-size: 0.74rem; font-weight: 600; color: var(--ink-2); margin-top: 4px; }

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

.faq { display: grid; gap: 10px; max-width: 880px; }
.faq details {
  border-radius: var(--r);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq details[open] { border-color: var(--brand-soft); box-shadow: var(--shadow-s); }
.faq summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 19px 56px 19px 22px;
  position: relative;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 600;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary em {
  flex: none;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--brand);
}
.faq summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--mute);
  border-bottom: 2px solid var(--mute);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-20%) rotate(225deg); }
.faq details p { padding: 0 22px 22px 56px; font-size: 0.93rem; color: var(--mute); }
.faq a { color: var(--brand-dk); text-decoration: underline; }

/* ---------- contact ---------- */

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
  padding: clamp(30px, 4.5vw, 56px);
  border-radius: var(--r-xl);
  background: linear-gradient(155deg, var(--ink), var(--dark-2));
  color: #fff;
}
.contact .section-tag { color: var(--brand-lt); }
.contact-intro h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 800; margin-bottom: 12px; }
.contact-intro p { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; }
.contact-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-row:last-child { border-bottom: 0; }
.contact-row dt {
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  padding-top: 3px;
}
.contact-row dd { font-size: 0.98rem; font-weight: 600; }
.contact-row dd a { transition: color 0.2s; }
.contact-row dd a:hover { color: var(--brand-lt); }
.contact-row dd small { display: block; font-size: 0.78rem; font-weight: 400; color: rgba(255, 255, 255, 0.55); margin-top: 2px; }

/* ---------- health banner ---------- */

.health-banner {
  padding: 22px 26px;
  border-radius: var(--r);
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  font-size: 0.84rem;
  color: var(--mute);
  line-height: 1.65;
}
.health-banner strong { color: var(--ink); }

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

.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.62);
  padding: clamp(46px, 6vw, 76px) 0 28px;
  position: relative;
  overflow: hidden;
}
.site-footer .wrap { position: relative; }
.foot-grid, .foot-end { position: relative; z-index: 1; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding-bottom: 34px;
}
.site-footer h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-lt);
  margin-bottom: 14px;
}
.site-footer p, .site-footer li { font-size: 0.86rem; line-height: 1.75; }
.site-footer li { margin-bottom: 5px; }
.site-footer a { transition: color 0.2s; }
.site-footer a:hover { color: #fff; }

.legal-block {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--r-s);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
}
.legal-block dl { display: grid; gap: 5px; font-size: 0.8rem; }
.legal-block dl > div { display: grid; grid-template-columns: 118px 1fr; gap: 10px; }
.legal-block dt { color: rgba(255, 255, 255, 0.42); }
.legal-block dd { color: rgba(255, 255, 255, 0.78); }

.foot-note { margin-top: 18px; }
.foot-note h5 { font-size: 0.8rem; font-weight: 700; color: rgba(255, 255, 255, 0.85); margin-bottom: 6px; }
.foot-note p { font-size: 0.78rem; color: rgba(255, 255, 255, 0.45); }

.foot-end {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
}
.foot-watermark {
  position: absolute;
  left: 50%;
  bottom: -4.5vw;
  z-index: 0;
  transform: translateX(-50%);
  font-family: var(--display);
  font-size: clamp(4rem, 17vw, 15rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.022);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

/* ---------- cookie bar ---------- */

.cookie-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 90;
  width: min(880px, calc(100% - 28px));
  transform: translate(-50%, 130%);
  transition: transform 0.5s var(--ease);
}
.cookie-bar.show { transform: translate(-50%, 0); }
.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-radius: var(--r-l);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.cookie-inner p { font-size: 0.84rem; color: var(--mute); flex: 1 1 320px; }
.cookie-inner a { color: var(--brand-dk); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions .btn { padding: 11px 20px; font-size: 0.86rem; }

/* ---------- legal pages ---------- */

.legal { padding: clamp(40px, 6vw, 76px) 0 clamp(46px, 6vw, 84px); }
.legal-head { margin-bottom: clamp(28px, 4vw, 48px); }
.legal-head h1 { font-size: clamp(2rem, 4.6vw, 3.2rem); font-weight: 800; margin-bottom: 10px; }
.legal-head p { color: var(--mute); font-size: 0.92rem; }
.legal-body { display: grid; grid-template-columns: 232px 1fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
.legal-toc {
  position: sticky;
  top: calc(var(--bar) + 20px);
  padding: 22px;
  border-radius: var(--r-l);
  background: var(--surface);
  border: 1px solid var(--line);
}
.legal-toc h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.legal-toc div { display: grid; gap: 3px; }
.legal-toc a {
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--ink-2);
  transition: background 0.2s, color 0.2s;
}
.legal-toc a:hover { background: var(--brand-soft); color: var(--brand-dk); }
.legal-main section { margin-bottom: 32px; scroll-margin-top: calc(var(--bar) + 20px); }
.legal-main h2 { font-size: 1.28rem; font-weight: 700; margin-bottom: 10px; }
.legal-main h3 { font-size: 1.02rem; font-weight: 700; margin: 16px 0 7px; }
.legal-main p { font-size: 0.93rem; color: var(--mute); margin-bottom: 10px; }
.legal-main strong { color: var(--ink); }
.legal-main a { color: var(--brand-dk); text-decoration: underline; }
.legal-main ul { margin: 8px 0 12px; display: grid; gap: 6px; }
.legal-main ul li { position: relative; padding-left: 20px; font-size: 0.93rem; color: var(--mute); }
.legal-main ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.formbox {
  padding: 22px 24px;
  border-radius: var(--r);
  background: var(--bg-2);
  border: 1px dashed var(--line);
  font-size: 0.9rem;
  color: var(--ink-2);
  margin: 14px 0;
}
.formbox p { color: var(--ink-2); }

.legal-card {
  padding: 24px 26px;
  border-radius: var(--r-l);
  background: linear-gradient(155deg, var(--ink), var(--dark-2));
  color: #fff;
  margin-bottom: 26px;
}
.legal-card h2 { color: #fff; }
.legal-card dl { display: grid; gap: 9px; margin-top: 14px; }
.legal-card dl > div { display: grid; grid-template-columns: 158px 1fr; gap: 14px; font-size: 0.92rem; }
.legal-card dt { color: rgba(255, 255, 255, 0.5); font-weight: 500; }
.legal-card dd { color: #fff; font-weight: 600; }
.legal-card dd a { color: var(--brand-lt); text-decoration: none; }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1040px) {
  .nav { display: none; }
  .menu-btn { display: block; }
  .header-end { margin-left: auto; }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 560px; }
  .product-block { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .stats-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .legal-body { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .legal-toc div { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .bento-card, .bento-card:nth-child(1), .bento-card:nth-child(2) { grid-column: span 3; }
}

@media (max-width: 780px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .phase-grid { grid-template-columns: 1fr; }
  .guarantee { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .bento { grid-template-columns: 1fr; }
  .bento-card, .bento-card:nth-child(1), .bento-card:nth-child(2) { grid-column: span 1; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-chip { right: 12px; bottom: 12px; }
  .thumbs { grid-template-columns: repeat(5, 1fr); gap: 7px; }
  .contact-row { grid-template-columns: 1fr; gap: 3px; }
  .stat-item { grid-template-columns: 1fr; gap: 6px; }
  .foot-grid { grid-template-columns: 1fr; }
  .legal-block dl > div { grid-template-columns: 1fr; gap: 0; }
  .legal-card dl > div { grid-template-columns: 1fr; gap: 0; }
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-inner p { flex: 0 0 auto; }
  .cookie-actions .btn { flex: 1; }
}

@media (max-width: 560px) {
  .trust-bar { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .btn-buy { padding: 10px 15px; font-size: 0.7rem; }
  .brand { font-size: 1.22rem; }
  .hero-actions .btn { width: 100%; }
}
