:root {
  --bg: #0e0f12;
  --raised: #18191f;
  --ink: #f5f3ee;
  --muted: #9b968c;
  --faint: #6e6a64;
  --accent: #ff4d3a;
  --accent-press: #e33d2c;
  --ok: #3dd68c;
  --warn: #ffb020;
  --line: rgba(255, 255, 255, 0.08);
  --safe: env(safe-area-inset-bottom, 0px);
  color: var(--ink);
  background: var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.45;
  font-size: 17px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; display: flex; justify-content: center; min-height: 100%; }
body {
  margin: 0 auto;
  background: var(--bg);
  max-width: 430px;
  min-height: 100dvh;
  padding-bottom: calc(88px + var(--safe));
}
body.no-sticky { padding-bottom: var(--safe); }
a { color: var(--ink); }
img { max-width: 100%; }
[hidden] { display: none !important; }
nav, main, footer { width: 100%; padding: 0 16px; }
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px 10px;
  position: sticky;
  top: 0;
  z-index: 5;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
}
nav strong { font-size: 15px; font-weight: 750; letter-spacing: -0.03em; }
nav a { text-decoration: none; }
.nav-links { display: flex; gap: 12px; font-size: 13px; color: var(--muted); align-items: center; }
.nav-links a { color: var(--muted); }
.chip {
  font-size: 12px;
  font-weight: 700;
  background: #2a130f;
  color: #ffb4aa;
  border-radius: 999px;
  padding: 6px 10px;
  text-decoration: none;
}
h1, h2, h3 { letter-spacing: -0.04em; line-height: 1.08; margin: 0 0 10px; }
h1 { font-size: 2.05rem; font-weight: 800; }
h2 { font-size: 1.45rem; font-weight: 750; }
h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em; }
p { margin: 0 0 12px; color: var(--muted); }
.lead { font-size: 1.05rem; color: #cfc9be; }
.hero { padding: 8px 0 20px; }
.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffb4aa;
  margin-bottom: 10px;
}
.buttons { display: grid; gap: 10px; margin: 18px 0 8px; }
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-weight: 750;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.button.alt {
  background: var(--raised);
  color: var(--ink);
  border: 1px solid var(--line);
}
.button:focus-visible, a:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.muted { color: var(--faint); font-size: 13px; }
.phone {
  margin: 20px 0 8px;
  background: linear-gradient(180deg, #23242c, #15161b);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 18px 16px 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.notch {
  width: 78px;
  height: 8px;
  border-radius: 8px;
  background: #000;
  margin: 0 auto 14px;
}
.slot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
}
.slot:first-of-type { border-top: 0; }
.tag {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #3a2018;
  color: #ffb4aa;
  padding: 5px 8px;
  border-radius: 8px;
}
.tag.ok { background: #143326; color: var(--ok); }
.features { display: grid; gap: 10px; padding: 8px 0 24px; }
.features article, .card, aside {
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}
.num {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: #2a130f;
  color: #ffb4aa;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}
.section { padding: 8px 0 28px; }
.price { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.05em; color: var(--ink); margin: 4px 0 8px; }
.notice {
  font-size: 13px;
  color: #d7cfc4;
  background: #211c16;
  border: 1px solid #3a3226;
  border-radius: 12px;
  padding: 12px 14px;
  margin: 12px 0;
}
details {
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 14px;
  margin: 8px 0;
}
summary { font-weight: 700; cursor: pointer; padding: 12px 0; }
details p { padding-bottom: 8px; }
.grid-2 { display: grid; gap: 10px; }
.list { margin: 0; padding-left: 18px; color: var(--muted); }
.list li { margin: 8px 0; }
.sticky {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 8;
  width: 100%;
  max-width: 430px;
  transform: translateX(-50%);
  padding: 10px 16px calc(10px + var(--safe));
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
}
.sticky-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}
.sticky .button { min-height: 48px; padding: 12px 14px; }
.sticky small { display: block; color: var(--faint); font-size: 11px; }
footer {
  padding: 24px 16px 16px;
  color: var(--faint);
  font-size: 12px;
}
footer a { color: var(--muted); }
.prose { padding-top: 8px; padding-bottom: 24px; }
.prose h1 { font-size: 1.8rem; }
.frame-grid { display: grid; gap: 12px; padding: 12px 0 32px; }
.frame {
  min-height: 72vh;
  background: #111;
  color: #f7f3eb;
  border-radius: 22px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.frame h3 { font-size: 1.7rem; color: #fff; }
.frame p { color: #d7cfc4; }
.frame .num { width: auto; height: auto; background: none; color: #ff4d3a; justify-content: flex-start; }

.shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 20px;
}
.shots figure { margin: 0; position: relative; }
.shots img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
  background: var(--raised);
  display: block;
}
.shots .badge {
  position: absolute;
  left: 8px;
  top: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  padding: 5px 8px;
  border-radius: 8px;
}
.shots figcaption {
  font-size: 12px;
  font-weight: 650;
  color: var(--muted);
  margin-top: 8px;
}
.examples { padding: 8px 0 28px; }
.shot-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--faint);
  margin: 0 0 10px;
}
.stat-row {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #241410, #18191f);
  border: 1px solid #3a2018;
}
.stat {
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
  color: #fff;
  margin: 0 0 6px;
}
.stat-row p { margin: 0; color: #cfc9be; }
.proof {
  margin: 0 0 8px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
  position: relative;
}
.proof img {
  width: 100%;
  height: auto;
  display: block;
}
.proof-bar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  padding: 12px 14px;
  background: #111;
  border-top: 1px solid var(--line);
}
.proof-bar strong { font-size: 16px; }
.proof-bar span { font-size: 12px; color: var(--faint); }
.method-row .num { margin-bottom: 0; margin-right: 10px; }
.method-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.method-row:first-child { border-top: 0; }

html:has(body.flow) { display: block; }
body.flow {
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: calc(96px + var(--safe));
}
body.flow main {
  max-width: 720px;
  margin: 0 auto;
  padding-top: 8px;
  padding-bottom: 24px;
}
body.flow nav { max-width: 720px; margin: 0 auto; }
.flow-head { margin: 0 0 16px; }
.flow-head h1 { font-size: 1.85rem; max-width: 16ch; }
.flow-head .lead { margin-bottom: 0; }
.stepper { display: flex; gap: 6px; margin: 0 0 20px; }
.stepper span {
  flex: 1;
  height: 3px;
  border-radius: 99px;
  background: #2a2b32;
}
.stepper span.on { background: var(--accent); }
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 12px;
}
.photo-grid.extra { margin-top: 10px; }
.photo-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 176px;
  margin: 0;
  padding: 0;
  border-radius: 18px;
  border: 1px dashed rgba(255,255,255,.16);
  background: #14151b;
  overflow: hidden;
  cursor: pointer;
  color: #d7cfc4;
}
.photo-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.55));
}
.photo-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffb4aa;
}
.photo-tile strong {
  display: block;
  font-size: 15px;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.photo-tile em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: var(--faint);
}
.photo-tile input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.photo-tile .preview {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.photo-tile .preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-tile.filled {
  border-style: solid;
  border-color: rgba(255,255,255,.12);
}
.photo-tile.filled .photo-copy {
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.72));
}
.photo-tile.filled strong,
.photo-tile.filled .photo-num { color: #fff; }
.text-btn {
  appearance: none;
  background: none;
  border: 0;
  color: #ffb4aa;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 0 4px;
  cursor: pointer;
}
.field-grid { display: grid; gap: 0; }
.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}
.choice { margin: 0; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #14151b;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.choice input:checked + span {
  background: #2a130f;
  border-color: #5a2a22;
  color: #ffb4aa;
}
.check-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0 0 10px;
  padding: 14px;
  border-radius: 16px;
  background: var(--raised);
  border: 1px solid var(--line);
  color: #d7cfc4;
  font-size: 15px;
  font-weight: 600;
}
.check-row input { margin-top: 3px; accent-color: var(--accent); width: 18px; height: 18px; }
.pay-card {
  background: linear-gradient(180deg, #241410, #18191f);
  border: 1px solid #3a2018;
  border-radius: 22px;
  padding: 22px 18px 16px;
  margin: 0 0 14px;
}
.flow-actions {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 8;
  width: 100%;
  max-width: 720px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 12px 16px calc(12px + var(--safe));
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
}
.flow-actions:not(:has(#back[hidden])) { grid-template-columns: 1fr 1.6fr; }
body.flow form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #cfc9be;
  margin: 0 0 12px;
}
body.flow form label.photo-tile,
body.flow form label.choice,
body.flow form label.check-row {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  margin: 0;
}
body.flow form label.photo-tile {
  display: flex;
}
body.flow form input[type="text"],
body.flow form input[type="email"],
body.flow form input[type="password"],
body.flow form select,
body.flow form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 13px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #121318;
  color: var(--ink);
  font: inherit;
}
body.flow form textarea { resize: vertical; min-height: 96px; }
body.flow form input:focus,
body.flow form select:focus,
body.flow form textarea:focus {
  outline: 2px solid #ff4d3a;
  outline-offset: 1px;
}
button.button {
  appearance: none;
  border: 0;
  cursor: pointer;
  width: 100%;
}

form label {
  display: block;
  font-size: 14px;
  font-weight: 650;
  color: #d7cfc4;
  margin: 0 0 12px;
}
form input[type="text"],
form input[type="email"],
form input[type="password"],
form select,
form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #121318;
  color: var(--ink);
  font: inherit;
}
form textarea { resize: vertical; }

@media (min-width: 640px) {
  body.flow .photo-grid { grid-template-columns: repeat(4, 1fr); }
  body.flow .photo-tile { min-height: 200px; }
  body.flow .field-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

@media (min-width: 880px) {
  body, .sticky { max-width: 980px; }
  h1 { font-size: 3.1rem; max-width: 16ch; }
  .hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
    padding: 28px 0 36px;
  }
  .buttons { grid-template-columns: 1fr 1fr; max-width: 440px; }
  .features { grid-template-columns: 1fr 1fr 1fr; }
  .grid-2, .split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
  .phone { max-width: 380px; margin-left: auto; }
  body { padding-bottom: 0; }
  body.flow { padding-bottom: calc(96px + var(--safe)); }
  .sticky { display: none; }
  .stat { font-size: 5rem; }
  .example-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: start;
  }
  body.flow,
  body.flow .flow-actions,
  body.flow nav { max-width: 840px; }
  body.flow main { max-width: 840px; }
  body.flow .flow-head h1 { font-size: 2.6rem; max-width: 18ch; }
  .photo-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .photo-tile { min-height: 220px; }
  .field-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}
