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

:root {
  --paper: #efe8d8;
  --cream: #fbf7ee;
  --ink: #0c1f24;
  --ink-2: #24383e;
  --mute: #5d7178;
  --line: #d5ccb8;
  --teal: #0f7a74;
  --teal-deep: #0a5551;
  --mint: #c9ece8;
  --gold: #c4a35a;
  --gold-soft: #efe3c4;
  --signal: #d85a2b;
  --night: #061216;
  --night-2: #10262c;
  --shadow: 6px 6px 0 rgba(12, 31, 36, 0.14);
  --radius: 2px;
  --g: clamp(18px, 4vw, 52px);
  --max: 1180px;
  --bar: 76px;
  --display: "Syne", "Avenir Next", sans-serif;
  --sans: "Outfit", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.62;
  overflow-x: hidden;
  -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(--teal); color: #fff; }

.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.08s; }
.js [data-in][data-w="2"] { transition-delay: 0.16s; }
@media (prefers-reduced-motion: reduce) {
  .js [data-in] { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.ad-strip {
  background: var(--night);
  color: var(--gold);
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--bar);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-inline: var(--g);
  background: rgba(239, 232, 216, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.brand img { width: 34px; height: 34px; }
.brand span { color: var(--teal); }
.nav { display: flex; gap: 26px; font-size: 0.86rem; font-weight: 600; color: var(--ink-2); }
.nav a { position: relative; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }
.header-end { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.btn-buy {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  background: var(--teal);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: background 0.25s, transform 0.25s var(--ease);
}
.btn-buy:hover { background: var(--teal-deep); transform: translateY(-1px); }

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

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(6, 18, 22, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-nav > div {
  position: absolute;
  top: 0;
  right: 0;
  width: min(340px, 90vw);
  height: 100%;
  background: var(--night);
  color: #fff;
  padding: calc(var(--bar) + 28px) 28px 28px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
body.menu-open .mobile-nav { opacity: 1; visibility: visible; }
body.menu-open .mobile-nav > div { transform: none; }
.mobile-nav ol { display: grid; gap: 16px; font-family: var(--display); font-size: 1.2rem; font-weight: 700; }
.mobile-nav small { display: block; margin-top: 28px; font-size: 0.78rem; color: rgba(255,255,255,0.5); font-family: var(--mono); }
.mobile-nav a:hover { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 24px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, box-shadow 0.25s;
}
.btn-primary {
  background: var(--signal);
  color: #fff;
  box-shadow: 4px 4px 0 var(--ink);
}
.btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn-outline {
  border: 1.5px solid var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-accent {
  background: var(--teal);
  color: #fff;
  box-shadow: 4px 4px 0 var(--night);
}
.btn-accent:hover { background: var(--teal-deep); transform: translate(-2px, -2px); }

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: calc(92vh - var(--bar) - 36px);
  background:
    radial-gradient(circle at 18% 22%, rgba(15, 122, 116, 0.12), transparent 28%),
    repeating-radial-gradient(circle at 12px 12px, rgba(12, 31, 36, 0.07) 0 1.2px, transparent 1.4px 14px),
    var(--paper);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 76px) var(--g);
}
.kicker {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.7rem, 6vw, 5.1rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
  font-weight: 800;
}
.hero h1 em {
  font-style: normal;
  color: var(--teal);
  display: block;
}
.hero-lead { color: var(--mute); max-width: 46ch; margin-bottom: 26px; font-size: 1.05rem; }
.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
  margin: 0 0 18px;
}
.price-now {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.price-note {
  flex-basis: 100%;
  font-size: 0.78rem;
  color: var(--mute);
  font-family: var(--mono);
}
.price-row--product { margin: 0 0 18px; }
.price-row--cta .price-now { color: var(--gold); }
.price-row--cta .price-note { color: rgba(255,255,255,0.55); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-stats div {
  padding: 10px 14px;
  background: var(--cream);
  border: 1px solid var(--ink);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.hero-stats b {
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1;
  color: var(--teal);
  font-weight: 800;
}
.hero-stats span { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; color: var(--mute); }
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(160deg, var(--night) 0%, var(--night-2) 55%, #0f3d3a 100%);
  overflow: hidden;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px dashed rgba(196, 163, 90, 0.35);
  border-radius: 50%;
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--night);
  padding: 8px 12px;
}
.hero-visual img {
  max-height: min(520px, 70vh);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.45));
}

.ticker {
  overflow: hidden;
  background: var(--teal);
  color: #fff;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.ticker-track {
  display: flex;
  gap: 42px;
  width: max-content;
  padding: 12px 0;
  animation: ticker 28s linear infinite;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ticker-track span { white-space: nowrap; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 0;
}
.trust-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 18px 20px;
  background: var(--cream);
}
.trust-item i {
  font-style: normal;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--gold);
  flex-shrink: 0;
}
.trust-item b { display: block; font-size: 0.84rem; }
.trust-item small { display: block; font-size: 0.72rem; color: var(--mute); }

.section { padding: clamp(64px, 9vw, 108px) 0; }
.section-alt { background: var(--cream); }
.section-head { margin-bottom: clamp(28px, 4vw, 48px); max-width: 680px; }
.section-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 12px;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.section-head p { color: var(--mute); margin-top: 12px; }

.manifesto {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.quote {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.quote b { color: var(--teal); font-weight: 800; }
.manifesto-copy p { color: var(--ink-2); margin-bottom: 14px; }

.product-block {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  background: var(--cream);
  border: 1px solid var(--ink);
  box-shadow: var(--shadow);
}
.gallery {
  position: relative;
  background:
    repeating-radial-gradient(circle at 10px 10px, rgba(15, 122, 116, 0.12) 0 1.1px, transparent 1.3px 16px),
    #e7f3f1;
  min-height: 500px;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 24px 24px 16px;
}
.gallery-stage {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
}
.gallery-stage > img {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  z-index: 1;
}
.gallery-stage > img.on { opacity: 1; z-index: 2; }
.gallery-count {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  background: var(--ink);
  color: var(--gold);
  padding: 6px 10px;
}
.thumbs {
  position: relative;
  z-index: 4;
  display: flex;
  gap: 8px;
  padding-top: 8px;
}
.thumbs button {
  flex: 1;
  max-width: 72px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  background: #fff;
  padding: 3px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thumbs button[aria-current="true"] { outline: 2px solid var(--teal); outline-offset: 1px; }
.thumbs img {
  position: static;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 1;
}

.product-copy { padding: clamp(28px, 4vw, 44px); background: var(--cream); }
.product-copy h3 {
  font-family: var(--display);
  font-size: 1.85rem;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.spec {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 8px 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.spec dt { font-family: var(--mono); font-size: 0.66rem; font-weight: 600; color: var(--teal); padding-top: 2px; letter-spacing: 0.08em; }
.spec h4 { font-size: 0.95rem; margin-bottom: 4px; }
.spec p { font-size: 0.86rem; color: var(--mute); }
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 22px; }
.pill {
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 7px 10px;
  background: var(--mint);
  color: var(--teal-deep);
  text-transform: uppercase;
}

.optic-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 14px;
}
.optic-card {
  padding: clamp(22px, 3vw, 32px);
  background: var(--cream);
  border: 1px solid var(--ink);
  min-height: 220px;
}
.optic-card:first-child {
  background: var(--night);
  color: #fff;
}
.optic-card:first-child p { color: rgba(255,255,255,0.7); }
.optic-num {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 16px;
}
.optic-card h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.optic-card p { font-size: 0.92rem; color: var(--mute); }

.bento {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.bento-card {
  padding: clamp(20px, 2.6vw, 28px);
  background: var(--cream);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.bento-card:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow); }
.bento-card:nth-child(1) {
  grid-row: span 2;
  background: var(--mint);
  border-color: var(--teal);
}
.bento-card:nth-child(4) { background: var(--gold-soft); border-color: var(--gold); }
.bento-num {
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--teal);
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}
.bento-card h3 { font-size: 1.12rem; margin-bottom: 8px; font-family: var(--display); }
.bento-card p { font-size: 0.9rem; color: var(--mute); }

.use-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}
.use-hero {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--ink);
}
.use-hero img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.use-hero figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--cream);
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.use-stack { display: grid; gap: 12px; }
.use-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  background: var(--cream);
  border: 1px solid var(--line);
  overflow: hidden;
}
.use-card img { width: 100%; height: 100%; object-fit: cover; min-height: 110px; }
.use-card div { padding: 16px; }
.use-card h3 { font-family: var(--display); font-size: 1.05rem; margin-bottom: 4px; }
.use-card p { font-size: 0.82rem; color: var(--mute); }

.steps-band {
  background: var(--night);
  color: #fff;
  padding: clamp(48px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.steps-band::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -40px;
  bottom: -60px;
  border: 40px solid rgba(15, 122, 116, 0.18);
  border-radius: 50%;
  pointer-events: none;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
  margin-top: 32px;
  position: relative;
  z-index: 1;
}
.step {
  padding: 24px 20px;
  background: var(--night-2);
}
.step::before {
  content: attr(data-step);
  display: block;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 12px;
}
.step h3 { font-family: var(--display); font-size: 1.15rem; margin-bottom: 8px; }
.step p { font-size: 0.86rem; color: rgba(255,255,255,0.72); }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.stat-list { display: grid; gap: 12px; }
.stat-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 20px;
  background: var(--cream);
  border-left: 4px solid var(--teal);
}
.stat-item strong {
  font-family: var(--display);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--teal);
  letter-spacing: -0.04em;
}
.stat-item p { font-size: 0.88rem; color: var(--mute); }
.note { font-size: 0.84rem; color: var(--mute); margin-top: 14px; padding-left: 14px; border-left: 3px solid var(--gold); }

.cta-band {
  background:
    linear-gradient(135deg, var(--night) 0%, #0d3a37 100%);
  color: #fff;
  padding: clamp(40px, 5vw, 64px);
  border: 1px solid var(--ink);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 32px;
  align-items: center;
}
.cta-inner h2 { font-family: var(--display); font-size: clamp(1.9rem, 3.2vw, 2.7rem); margin-bottom: 10px; letter-spacing: -0.03em; }
.cta-inner p { color: rgba(255,255,255,0.7); margin-bottom: 18px; }
.checks li {
  font-size: 0.88rem;
  padding: 10px 0 10px 24px;
  position: relative;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.checks li::before { content: "▸"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }

.guarantee {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--ink);
  background: var(--cream);
}
.seal {
  width: 128px;
  height: 128px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--mint);
}
.seal b { font-family: var(--display); font-size: 2.5rem; line-height: 1; color: var(--teal); display: block; }
.seal small { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute); font-family: var(--mono); }

.faq { border-top: 1px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--ink); background: var(--cream); }
.faq summary {
  display: grid;
  grid-template-columns: 56px 1fr 24px;
  gap: 12px;
  align-items: center;
  padding: 18px 8px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary em {
  font-style: normal;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.08em;
}
.faq summary::after { content: "+"; font-size: 1.3rem; color: var(--signal); }
.faq details[open] summary::after { content: "−"; }
.faq details[open] summary { background: var(--mint); }
.faq details p { padding: 0 16px 18px 64px; color: var(--mute); font-size: 0.92rem; max-width: 74ch; }
.faq a { color: var(--teal); text-decoration: underline; }

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(36px, 5vw, 52px);
  background: var(--night);
  color: #fff;
}
.contact-intro h2 { font-family: var(--display); font-size: clamp(2rem, 3.6vw, 3.1rem); line-height: 1.02; margin-bottom: 12px; letter-spacing: -0.03em; }
.contact-intro p { color: rgba(255,255,255,0.65); max-width: 42ch; }
.contact-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-row dt { font-family: var(--mono); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.contact-row dd a { color: #fff; font-weight: 600; }
.contact-row dd small { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

.health-banner {
  padding: 18px 22px;
  background: var(--gold-soft);
  border: 1px solid var(--gold);
  font-size: 0.84rem;
  color: var(--ink-2);
  line-height: 1.7;
}

.site-footer {
  background: var(--ink);
  color: #e6ece9;
  padding: clamp(40px, 6vw, 64px) 0 0;
  margin-top: 0;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer h4 {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.site-footer p, .site-footer li { font-size: 0.85rem; color: rgba(230,236,233,0.65); line-height: 1.8; }
.site-footer a:hover { color: #fff; }
.foot-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-left: 3px solid var(--teal);
  background: rgba(255,255,255,0.04);
}
.foot-note h5 {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 6px;
}
.foot-note p { font-size: 0.78rem; }
.foot-end {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 0;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(230,236,233,0.4);
  font-family: var(--mono);
}
.foot-watermark {
  font-family: var(--display);
  font-size: clamp(2.6rem, 12vw, 7.4rem);
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.08);
  user-select: none;
  margin-bottom: -0.05em;
}

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--cream);
  border-top: 2px solid var(--ink);
  padding: 16px var(--g);
  display: none;
}
.cookie-bar.show { display: block; }
.cookie-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cookie-inner p { font-size: 0.88rem; color: var(--ink-2); max-width: 720px; }
.cookie-inner a { color: var(--teal); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; }

.legal { padding: 56px 0 80px; }
.legal-head { border-bottom: 2px solid var(--ink); padding-bottom: 24px; margin-bottom: 36px; }
.legal-head h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: -0.04em;
  line-height: 0.96;
}
.legal-head p { font-size: 0.76rem; color: var(--mute); margin-top: 10px; font-family: var(--mono); }
.legal-body { display: grid; grid-template-columns: 220px 1fr; gap: 40px; }
.legal-toc { position: sticky; top: calc(var(--bar) + 20px); align-self: start; }
.legal-toc h4 {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.legal-toc a {
  display: block;
  font-size: 0.84rem;
  color: var(--mute);
  padding: 5px 0 5px 12px;
  border-left: 2px solid var(--line);
}
.legal-toc a:hover { color: var(--teal); border-color: var(--teal); }
.legal-main section { margin-bottom: 32px; scroll-margin-top: calc(var(--bar) + 20px); }
.legal-main h2 {
  font-family: var(--display);
  font-size: 1.35rem;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.02em;
}
.legal-main h3 { font-size: 1.02rem; margin: 14px 0 8px; }
.legal-main p { font-size: 0.92rem; color: var(--ink-2); margin-bottom: 10px; line-height: 1.8; }
.legal-main a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.legal-main ul { margin-bottom: 12px; }
.legal-main ul li {
  font-size: 0.92rem;
  color: var(--ink-2);
  padding-left: 16px;
  position: relative;
  line-height: 1.8;
}
.legal-main ul li::before { content: "–"; position: absolute; left: 0; color: var(--teal); }
.formbox {
  background: var(--cream);
  border: 1px solid var(--ink);
  border-left: 4px solid var(--teal);
  padding: 22px;
  margin-top: 14px;
}

@media (max-width: 1024px) {
  .hero, .product-block, .stats-grid, .cta-inner, .contact, .guarantee, .legal-body, .manifesto, .use-mosaic, .optic-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 340px; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-card:nth-child(1) { grid-row: auto; }
  .phase-grid, .steps { grid-template-columns: 1fr 1fr; }
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .gallery { min-height: 380px; }
  .legal-toc { position: static; }
  .legal-toc div { display: flex; flex-wrap: wrap; gap: 8px; }
  .legal-toc a { border: 1px solid var(--line); padding: 6px 12px; border-left: 1px solid var(--line); }
}

@media (max-width: 820px) {
  .nav { display: none; }
  .menu-btn { display: block; }
  .hero-stats { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .trust-bar, .bento, .steps, .use-card { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .faq summary { grid-template-columns: 36px 1fr 20px; font-size: 1rem; }
  .faq details p { padding-left: 8px; }
  .contact-row { grid-template-columns: 1fr; gap: 4px; }
  .stat-item { grid-template-columns: 80px 1fr; }
  .ticker-track { animation-duration: 18s; }
}
