:root {
  --ink: #1b1b1e;
  --muted: #5c5b66;
  --paper: #fcf8fd;
  --paper-2: #f6f2f7;
  --line: rgba(255, 255, 255, 0.28);
  --violet: #5152b9;
  --violet-2: #8e8ffa;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: #0d0d10; color: var(--ink); }
html { scroll-behavior: smooth; }
body { font-family: Geist, "Segoe UI", sans-serif; text-rendering: optimizeLegibility; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, .serif { font-family: "EB Garamond", Georgia, serif; font-weight: 500; letter-spacing: -0.03em; margin: 0; }
p { margin: 0; }
.material-symbols-outlined { font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24; }
#app { min-height: 100dvh; background: var(--paper); }
.btn {
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-primary { background: linear-gradient(135deg, #5152b9, #8e8ffa); color: #fff; }
.btn-ghost { background: rgba(255, 255, 255, 0.14); color: #fff; border: 1px solid var(--line); backdrop-filter: blur(16px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-quiet { background: #ece8f1; color: var(--ink); }
.btn-full { width: 100%; }
.btn:disabled { opacity: 0.45; }
.tiny { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

.hero {
  position: relative;
  min-height: 100dvh;
  background: #0d0d10;
  color: #fff;
}
.hero-frame {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
.hero-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(10px + var(--safe-t)) 16px 10px;
}
.hero-top .brand { background: 0; border: 0; color: #fff; font-family: "EB Garamond", serif; font-size: 22px; padding: 0; text-shadow: 0 8px 24px rgba(0,0,0,.45); }
.hero-top .ghost-login { background: rgba(0,0,0,.28); color: #fff; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; padding: 8px 14px; min-height: 40px; backdrop-filter: blur(12px); }

.ba {
  position: relative;
  height: 62dvh;
  min-height: 340px;
  overflow: hidden;
  user-select: none;
  touch-action: none;
  background: #111;
}
.ba:focus { outline: none; }
.ba:focus-visible { box-shadow: inset 0 0 0 3px #fff; }
.ba img, .ba .ba-after, .ba .ba-before-clip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  pointer-events: none;
}
.ba-before-clip {
  position: absolute;
  inset: 0 auto 0 0;
  width: 52%;
  overflow: hidden;
  border-right: 2px solid rgba(255,255,255,.92);
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  width: 48px;
  margin-left: -24px;
  left: 52%;
  display: grid;
  place-items: center;
  z-index: 3;
}
.ba-knob {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
}
.ba-label {
  position: absolute;
  top: calc(14px + var(--safe-t) + 36px);
  z-index: 4;
  background: rgba(0,0,0,.42);
  backdrop-filter: blur(10px);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.ba-label.now { left: 14px; }
.ba-label.imagined { right: 14px; }

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 20px calc(22px + var(--safe-b));
  background: linear-gradient(to top, #0d0d10 70%, #141418);
}
.hero-copy h1 { font-size: clamp(32px, 8.4vw, 48px); line-height: 1.04; }
.hero-copy .sub { margin: 8px 0 16px; color: rgba(255,255,255,.78); font-size: 16px; }
.hero-actions { display: flex; gap: 10px; }
.hero-actions .btn { flex: 1; min-width: 0; }
@media (max-width: 360px) {
  .hero-actions { flex-direction: column; }
}
.hero-sub { margin-top: 12px; color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.45; }

.block { padding: 32px 0 12px; background: var(--paper); color: var(--ink); }
.block h2 { font-size: clamp(28px, 7vw, 42px); padding: 0 20px 8px; line-height: 1.08; }
.block .lede { padding: 0 20px 14px; color: var(--muted); line-height: 1.5; }

.snap {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 20px 22px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.snap::-webkit-scrollbar { display: none; }
.story {
  flex: 0 0 74vw;
  max-width: 340px;
  scroll-snap-align: start;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  height: 96vw;
  max-height: 460px;
  min-height: 300px;
  background: #111;
  box-shadow: 0 18px 40px rgba(20,20,22,.12);
}
.story img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%; }
.story span {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(0,0,0,.48); color: #fff;
  padding: 7px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
}

.composer {
  margin: 4px 16px 8px;
  background: #fff;
  border-radius: 28px;
  padding: 18px 16px 14px;
  box-shadow: 0 18px 50px rgba(20,20,22,.07);
}
.composer h2 { font-size: 28px; padding: 0; margin-bottom: 12px; }
.composer > input {
  width: 100%;
  border: 0;
  background: var(--paper-2);
  border-radius: 18px;
  padding: 16px 16px;
  min-height: 56px;
  outline: none;
  margin-bottom: 10px;
}
.composer-row { display: flex; gap: 8px; }
.composer-row .btn { flex: 1; }
.chip-row { display: flex; gap: 8px; overflow-x: auto; padding: 10px 0 2px; scrollbar-width: none; }
.chip-row::-webkit-scrollbar { display: none; }
.chip-quiet { opacity: 0.78; }
.chip { flex: 0 0 auto; border: 0; background: #efeaf4; border-radius: 999px; padding: 8px 12px; font-size: 12px; color: var(--ink); }

.card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 16px 24px; }
.img-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #111;
  min-height: 210px;
  height: 52vw;
}
.img-card .split { display: grid; grid-template-columns: 1fr 1fr; height: 100%; }
.img-card .split img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.img-card.torso .split img { object-position: 50% 40%; }
.ba.proof-ba img,
.ba.proof-ba .ba-after,
.ba.proof-ba .ba-before-clip img {
  object-position: 50% 48%;
}
.ba.proof-ba.compare-stage {
  height: 72vw;
  min-height: 320px;
  max-height: 520px;
}
#compare-demo img, #compare-demo .ba-after, #compare-demo .ba-before-clip img {
  object-position: 50% 32%;
}
.branch img { object-position: 50% 22%; }
.img-card b {
  position: absolute; left: 10px; bottom: 10px;
  color: #fff; font-size: 13px;
  text-shadow: 0 8px 18px rgba(0,0,0,.6);
}

.branch { display: flex; gap: 10px; overflow-x: auto; padding: 4px 16px 24px; scrollbar-width: none; }
.branch::-webkit-scrollbar { display: none; }
.branch figure { margin: 0; flex: 0 0 auto; width: 42vw; max-width: 168px; }
.branch img { width: 100%; height: 56vw; max-height: 230px; object-fit: cover; border-radius: 18px; }
.branch figcaption { font-size: 12px; font-weight: 600; padding: 8px 2px 0; color: var(--muted); }

.looks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 16px 24px; }
.look-tile {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #111;
  border: 0;
  padding: 0;
  display: block;
  width: 100%;
}
.look-tile img { width: 100%; height: 100%; object-fit: cover; }
.look-tile .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 10px 10px;
  background: linear-gradient(to top, rgba(0,0,0,.72), transparent);
  color: #fff; text-align: left;
}
.look-tile strong { display: block; font-size: 14px; }
.look-tile small { opacity: 0.75; font-size: 11px; }
.look-tile .heart { position: absolute; top: 8px; right: 8px; color: #fff; font-size: 18px; }

.privacy { padding: 36px 20px 48px; background: #141416; color: #fff; }
.privacy h2, .privacy h1 { font-size: clamp(30px, 8vw, 42px); }
.privacy p { color: rgba(255,255,255,.7); margin-top: 10px; line-height: 1.5; }
.p-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.p-grid div, .p-grid button {
  background: rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 16px 14px;
  font-size: 13px;
  color: #fff;
  border: 0;
  text-align: left;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-grid .material-symbols-outlined { color: var(--violet-2); }

.top {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: calc(8px + var(--safe-t)) 14px 8px;
  background: rgba(252,248,253,.88);
  backdrop-filter: blur(18px);
}
.brand { font-family: "EB Garamond", serif; font-size: 20px; color: var(--violet); background: 0; border: 0; padding: 0; }
.credits { border: 0; background: #ece8f1; border-radius: 999px; padding: 8px 12px; font-size: 12px; font-weight: 600; min-height: 36px; }
.desk-nav { display: none; gap: 6px; }
.desk-nav button { border: 0; background: 0; color: var(--muted); font-size: 13px; font-weight: 600; padding: 8px 12px; border-radius: 999px; }
.desk-nav button.active, .desk-nav button:hover { color: var(--violet); background: #ece8f1; }

.stage { position: relative; background: #111; }
.stage img, .stage .ph {
  width: 100%;
  height: calc(100dvh - 260px);
  min-height: 300px;
  object-fit: cover;
  object-position: 50% 18%;
}
.stage .ph { background: linear-gradient(180deg, #2a2a32, #111); }
.dock {
  position: sticky; bottom: 0; z-index: 12;
  padding: 12px 14px calc(12px + var(--safe-b));
  background: linear-gradient(to top, #fcf8fd 78%, rgba(252,248,253,.55));
}
.onboard-dock { bottom: 56px; z-index: 14; }
.dock h2 { font-size: 28px; }
.dock p { color: var(--muted); margin: 6px 0 12px; }
.dock .composer-row { flex-wrap: wrap; }
.dock .composer-row input {
  flex: 1 1 100%;
  border: 0; background: #fff; border-radius: 999px;
  padding: 14px 16px; min-height: 48px; outline: none; min-width: 0;
  order: -1;
}
.dock .composer-row .btn { flex: 1; }

.nav {
  position: sticky; bottom: 0; z-index: 15;
  display: flex; justify-content: space-around;
  padding: 8px 8px calc(10px + var(--safe-b));
  background: rgba(252,248,253,.94);
  backdrop-filter: blur(18px);
  border-top: 1px solid #ece8f1;
}
.nav button {
  border: 0; background: 0; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 10px; font-weight: 600; min-width: 64px; min-height: 44px;
}
.nav button.active { color: var(--violet); }

.sheet { position: fixed; inset: 0; z-index: 50; background: rgba(13,13,16,.48); display: flex; align-items: flex-end; }
.sheet-card {
  width: 100%; background: #fff;
  border-radius: 28px 28px 0 0;
  padding: 18px 18px calc(18px + var(--safe-b));
  animation: up .28s ease;
}
.sheet-card h3 { font-size: 26px; margin-bottom: 6px; }
.sheet-card p { color: var(--muted); }
.opts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 14px 0; }
.opts button { border: 1px solid #ece8f1; background: #f7f4f8; border-radius: 16px; padding: 14px; min-height: 52px; }
.opts button.on { border-color: var(--violet); background: #e2dfff; }
.drop {
  border: 1.5px dashed #c7c5d4;
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  color: var(--muted);
  margin-bottom: 10px;
  background: var(--paper);
}
@keyframes up { from { transform: translateY(24px); opacity: 0; } to { transform: none; opacity: 1; } }

.auth { min-height: 100dvh; padding: 28px 20px; background: var(--paper); }
.auth h1 { font-size: 36px; }
.auth p { color: var(--muted); margin: 8px 0 18px; }
.auth input { width: 100%; border: 0; background: #fff; border-radius: 16px; padding: 16px; margin: 8px 0; min-height: 52px; }
.error { color: #ba1a1a; font-size: 14px; }

.slots { display: grid; gap: 12px; padding: 16px 16px 8px; }
.slots > .slot { height: 38vh; min-height: 220px; }
.slot-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.slot {
  position: relative;
  height: 28vh;
  min-height: 168px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 42% 58% at 50% 46%, transparent 54%, rgba(20,20,22,.18) 56%),
    linear-gradient(180deg, #d9d3de, #c4bec9);
  display: grid;
  place-items: end center;
  color: #fff;
  text-align: center;
  padding: 16px;
}
.slot::before {
  content: "";
  position: absolute;
  left: 50%; top: 18%;
  width: 46%; height: 58%;
  transform: translateX(-50%);
  border: 2px dashed rgba(255,255,255,.55);
  border-radius: 50% 50% 46% 46%;
  pointer-events: none;
}
.slot.full::before { width: 38%; height: 72%; top: 10%; border-radius: 18px; }
.slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.slot.has-img::before { display: none; }
.slot.has-img .guide div { display: none; }
.slot .guide { position: relative; z-index: 1; background: rgba(0,0,0,.42); backdrop-filter: blur(10px); border-radius: 16px; padding: 10px 14px; }
.slot input { display: none; }

.result-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 16px 12px;
  background: var(--paper);
  position: sticky;
  bottom: 56px;
  z-index: 11;
}
.abc { display: flex; justify-content: center; gap: 8px; padding: 8px; }
.abc button { width: 44px; height: 44px; border-radius: 50%; border: 0; background: #ece8f1; font-weight: 600; }
.abc button.on { background: var(--violet); color: #fff; }
.var-swipe { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.var-swipe::-webkit-scrollbar { display: none; }
.var-swipe article { flex: 0 0 100%; scroll-snap-align: start; }
.var-swipe img { width: 100%; height: 46dvh; min-height: 280px; object-fit: cover; object-position: 50% 18%; }

.pay { position: fixed; inset: 0; z-index: 60; background: rgba(13,13,16,.55); display: grid; place-items: end center; }
.pay-card {
  width: min(480px, 100%);
  background: #fff;
  border-radius: 28px 28px 0 0;
  padding: 22px 20px calc(22px + var(--safe-b));
  text-align: center;
  animation: up .28s ease;
}
.pay-card img { width: 100%; height: 220px; object-fit: cover; border-radius: 18px; margin-bottom: 12px; }
.pay-card h2 { font-size: 32px; }
.pay-card ul { text-align: left; color: var(--muted); padding-left: 18px; line-height: 1.6; }
.price { font-size: 28px; color: var(--violet); margin: 8px 0; }

.history-item { display: grid; grid-template-columns: 88px 1fr; gap: 12px; padding: 10px 20px; align-items: center; }
.history-item img { width: 88px; height: 110px; object-fit: cover; border-radius: 14px; }
.history-item p { color: var(--muted); font-size: 13px; margin: 4px 0 8px; }

.toast {
  position: fixed; left: 50%; bottom: 96px;
  transform: translateX(-50%);
  background: #141416; color: #fff;
  padding: 10px 16px; border-radius: 999px;
  z-index: 70; font-size: 14px; white-space: nowrap; max-width: 90vw;
}
.thumbs { display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 8px; }
.thumbs img { width: 56px; height: 56px; object-fit: cover; border-radius: 12px; }
.thumbs button { border: 0; background: 0; padding: 0; position: relative; }
.generating {
  position: fixed; inset: 0; z-index: 55;
  background: rgba(13,13,16,.62);
  color: #fff; display: grid; place-items: center;
  text-align: center; padding: 24px;
}
.generating h2 { font-size: 32px; }

.tattoo-stage { position: relative; overflow: hidden; }
.tattoo-mark {
  position: absolute; width: 84px; height: 84px;
  border: 2px dashed #fff; border-radius: 8px;
  transform-origin: center;
  background: rgba(81,82,185,.18);
}
.compare-stage { position: relative; height: 48dvh; min-height: 280px; background: #111; border-radius: 0; }
.compare-tools { display: flex; gap: 8px; padding: 12px 16px 18px; flex-wrap: wrap; }
.compare-pick { display: flex; gap: 8px; overflow-x: auto; padding: 0 16px 12px; }
.compare-pick button { border: 0; padding: 0; border-radius: 12px; overflow: hidden; width: 64px; height: 80px; opacity: .55; }
.compare-pick button.on { opacity: 1; outline: 2px solid var(--violet); }
.compare-pick img { width: 100%; height: 100%; object-fit: cover; }
.tile-cmp { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 0 8px 12px; }
.tile-cmp img { width: 100%; height: 42vw; object-fit: cover; border-radius: 12px; }

.zoom-stage { overflow: hidden; }
.zoom-stage img { transform: scale(var(--zoom, 1)); transform-origin: center; }

@media (max-height: 700px) {
  .ba { height: 55dvh; min-height: 280px; }
  .hero-copy h1 { font-size: 30px; }
}
@media (min-width: 768px) {
  .ba { height: 70dvh; }
  .story { flex-basis: 280px; height: 400px; }
  .card-grid, .looks-grid { grid-template-columns: repeat(3, 1fr); max-width: 1100px; margin: 0 auto; }
  .block h2, .block .lede { max-width: 1100px; margin-left: auto; margin-right: auto; }
  .composer, .branch, .snap { max-width: 1100px; margin-left: auto; margin-right: auto; }
  .dock .composer-row { flex-wrap: nowrap; max-width: 720px; margin: 0 auto; }
  .dock .composer-row input { flex: 1 1 auto; order: 0; }
  .nav { display: none; }
  .desk-nav { display: flex; }
  .onboard-dock { bottom: 0; }
  .top { padding: 12px 40px; }
  .hero-copy { padding-left: 48px; padding-right: 48px; }
  .img-card { height: 280px; }
}
@media (min-width: 1024px) {
  .hero-frame { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 100dvh; }
  .ba { height: 100dvh; min-height: 100dvh; }
  .hero-copy {
    justify-content: center;
    padding: 80px 64px;
    background: #0d0d10;
  }
  .hero-copy h1 { font-size: 56px; }
  .hero-actions { max-width: 460px; }
  .ba-label { top: 24px; }
  .stage img, .stage .ph { height: calc(100dvh - 180px); }
  .result-actions { bottom: 0; max-width: 720px; margin: 0 auto; }
  .compare-stage { height: 78dvh; }
  .ba.proof-ba.compare-stage { height: 78vh; max-height: 820px; min-height: 480px; }
}
.composer-hint { font-size: 13px; color: var(--muted); margin: 8px 2px 0; line-height: 1.45; }
.ref-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--paper-2); border-radius: 16px; padding: 8px 10px; margin-bottom: 10px;
}
.ref-chip.tight { margin: 0 0 8px; }
.ref-chip img { width: 52px; height: 52px; object-fit: cover; border-radius: 12px; }
.ref-chip strong { display: block; font-size: 13px; text-transform: capitalize; }
.ref-chip small { color: var(--muted); font-size: 12px; }
.ref-x {
  margin-left: auto; width: 36px; height: 36px; border: 0; border-radius: 50%;
  background: #ece8f1; font-size: 20px; line-height: 1;
}
.micro { padding: 0 20px 4px; font-weight: 600; color: var(--ink); }
.disclaimer { padding: 12px 20px 0; font-size: 12px; color: var(--muted); }
.block-cta { padding: 14px 20px 24px; display: flex; gap: 8px; flex-wrap: wrap; }
.proof-block .proof-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
  padding: 4px 20px 8px;
}
.proof-story figure { margin: 0; }
.proof-op { display: none; }
.proof-story img {
  width: 100%; height: 46vw; max-height: 220px; min-height: 150px;
  object-fit: cover; object-position: 50% 18%;
  border-radius: 22px; background: #111;
}
.proof-story figure:first-child img { object-position: 50% 50%; }
.proof-result {
  grid-column: 1 / -1;
}
.proof-result img {
  height: 88vw; min-height: 300px; max-height: 460px;
  object-position: 50% 22%;
}
.proof-story figcaption {
  margin-top: 8px; font-size: 13px; font-weight: 600; color: var(--muted);
}
.proof-ba { border-radius: 0; margin: 8px 0 0; }
.card-grid-wide { grid-template-columns: 1fr 1fr; }
.branch-lg figure { width: 48vw; max-width: 200px; }
.branch-lg img { height: 64vw; max-height: 280px; }

@media (min-width: 768px) {
  .proof-block .proof-story, .block-cta, .micro, .disclaimer { max-width: 1100px; margin-left: auto; margin-right: auto; }
  .proof-story img { height: 240px; min-height: 200px; max-height: none; }
  .proof-result img { height: 480px; min-height: 320px; max-height: none; }
  .card-grid-wide { grid-template-columns: repeat(4, 1fr); max-width: 1100px; }
  .img-card { height: 300px; }
}
@media (min-width: 1024px) {
  .proof-block .proof-story {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1.12fr;
    align-items: center;
    gap: 16px;
    max-width: 1200px;
  }
  .proof-op { display: block; }
  .proof-result { grid-column: auto; }
  .proof-story img, .proof-result img { height: 520px; min-height: 0; max-height: none; }
  .proof-result img { box-shadow: 0 24px 60px rgba(20,20,22,.16); }
  .block h2, .block .lede { max-width: 1200px; }
  .proof-block .block-cta, .proof-block .micro, .proof-block .disclaimer { max-width: 1200px; }
  .card-grid-wide { max-width: 1200px; }
  .composer { max-width: 720px; }
}
@media (min-width: 1440px) {
  .proof-story img { height: 560px; }
  .hero-copy h1 { font-size: 64px; }
}

.detail-card { margin: 12px 16px 20px; background: #fff; border-radius: 28px; padding: 18px 16px; box-shadow: 0 18px 40px rgba(20,20,22,.06); }
.detail-card h2 { font-size: 28px; margin: 4px 0 8px; }
.detail-card p { color: var(--muted); line-height: 1.5; }
.know-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.know-grid ul { list-style: none; padding: 0; margin: 8px 0 0; }
.know-grid li { font-size: 14px; padding: 4px 0; }
.know-grid .known { color: var(--ink); }
.next-photo { margin-top: 16px; padding-top: 14px; border-top: 1px solid #ece8f1; }
.next-photo strong { display: block; margin: 4px 0 6px; }
.sil-wrap { display: grid; justify-items: center; margin: 16px 0 8px; }
.sil { width: min(180px, 46vw); height: auto; cursor: pointer; }
.sil [data-sil] { cursor: pointer; transition: fill .45s ease; }
.sil-toggle { display: flex; gap: 6px; margin-bottom: 8px; }
.sil-toggle button { border: 0; background: #efeaf4; border-radius: 999px; padding: 8px 14px; font-size: 12px; font-weight: 600; }
.sil-toggle button.on { background: var(--violet); color: #fff; }
.fid { margin-top: 12px; }
.fid-chip { border: 0; background: #efeaf4; border-radius: 999px; padding: 8px 14px; font-size: 13px; font-weight: 600; }
.fid-body { margin-top: 10px; background: var(--paper-2); border-radius: 18px; padding: 12px 14px; }
.fid-body ul { list-style: none; padding: 0; margin: 0 0 8px; }
.fid-body li { font-size: 14px; padding: 3px 0; }
.est-note { border: 0; background: 0; color: var(--muted); font-size: 12px; padding: 8px 4px; text-align: left; }
.evolve-row { display: flex; gap: 10px; overflow-x: auto; padding: 4px 16px 8px; scrollbar-width: none; }
.evolve-row article { flex: 0 0 68vw; max-width: 260px; background: #fff; border-radius: 22px; padding: 16px; }
.evolve-row span { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--violet); font-weight: 600; }
.evolve-row strong { display: block; margin: 8px 0 6px; font-size: 18px; }
.evolve-row p { color: var(--muted); font-size: 14px; }
@media (min-width: 768px) {
  .evolve-row { max-width: 1100px; margin: 0 auto; }
  .evolve-row article { flex-basis: 280px; }
}
