:root {
  --bg: #100e0c;
  --bg-2: #181410;
  --card: #211c18;
  --line: rgba(246, 237, 212, 0.12);
  --text: #f6edd4;
  --muted: #b7a894;
  --warm: #e8c27a;
  --red: #e50914;
  --red-hover: #f40612;
  --ok: #c4b48a;
  --radius: 16px;
  --font: "Outfit", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; background: #0b0908; color: var(--text); font-family: var(--font); }
button, input, textarea { font-family: inherit; }
button { cursor: pointer; }
a { color: inherit; }

.shell {
  min-height: 100%;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 340px);
  gap: 32px;
  padding: 28px 32px;
  align-items: center;
  justify-content: center;
}

.stage {
  display: flex;
  justify-content: center;
}

.phone {
  width: 390px;
  height: min(844px, calc(100vh - 56px));
  background: var(--bg);
  border-radius: 36px;
  border: 8px solid #2a2420;
  box-shadow: 0 30px 80px rgba(0,0,0,.55), inset 0 0 0 1px rgba(246,237,212,.06);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 118px;
  height: 22px;
  background: #0b0908;
  border-radius: 16px;
  z-index: 5;
}

#app {
  flex: 1;
  overflow: auto;
  padding: 44px 20px 24px;
  display: flex;
  flex-direction: column;
  scrollbar-width: none;
}
#app::-webkit-scrollbar { display: none; }

.screen { display: flex; flex-direction: column; min-height: 100%; animation: in .28s ease; }
@keyframes in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.top {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}
.top .logo {
  grid-column: 2;
  text-align: center;
  font-size: 11px;
  letter-spacing: .28em;
  font-weight: 600;
  color: var(--warm);
}
.back, .ghost {
  width: 36px; height: 36px;
  border: 0; background: transparent; color: var(--muted);
  font-size: 22px; line-height: 1;
}
.back[hidden], .ghost[hidden] { visibility: hidden; }

.progress {
  height: 3px;
  background: var(--line);
  border-radius: 99px;
  margin: -12px 0 20px;
  overflow: hidden;
}
.progress > i {
  display: block; height: 100%; width: 0;
  background: var(--warm);
  transition: width .25s ease;
}

.kicker {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 12px;
  font-weight: 600;
}

h1 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 12px;
}
h1.small { font-size: 22px; }
.lede, .hint, .body {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.hint { margin-bottom: 18px; }
.body { white-space: pre-line; margin-bottom: 16px; }
.body strong { color: var(--text); font-weight: 600; }

.opts { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.opt, .cta, .cta-2 {
  width: 100%;
  border: 0;
  text-align: left;
  border-radius: 14px;
  padding: 16px 16px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
}
.opt {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--line);
}
.opt:hover, .opt:focus { border-color: var(--warm); outline: none; }
.opt:active { transform: scale(.99); }

.cta, .cta-2 { text-align: center; font-weight: 650; letter-spacing: .01em; padding: 16px; }
.cta {
  background: var(--text);
  color: #1a120c;
}
.cta.red { background: var(--red); color: #fff; }
.cta:hover { filter: brightness(1.05); }
.cta-2 {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
}
.cta-row { margin-top: auto; display: flex; flex-direction: column; gap: 8px; padding-top: 24px; }

.trust { margin-top: 20px; display: flex; flex-direction: column; gap: 6px; }
.trust span { color: var(--muted); font-size: 13px; }
.trust span::before { content: "· "; color: var(--warm); }

.legal { margin-top: 16px; font-size: 11px; color: #8a7d6b; line-height: 1.4; }

.center {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.center h1 { font-size: 24px; }
.pulse {
  width: 100%;
  height: 3px;
  background: var(--line);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 20px;
}
.pulse > i {
  display: block; height: 100%; width: 30%;
  background: var(--warm);
  animation: slide 1.2s ease infinite;
}
@keyframes slide {
  from { transform: translateX(-100%); }
  to { transform: translateX(400%); }
}

.rot { color: var(--muted); min-height: 2.4em; margin-top: 12px; font-size: 14px; }

.vsl-beat {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vsl-beat p {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 500;
  white-space: pre-line;
}
.vsl-nav { display: flex; justify-content: space-between; color: var(--muted); font-size: 12px; margin-bottom: 8px; }

.field { margin-bottom: 12px; }
.field label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  outline: none;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--warm); }

.cards { display: flex; flex-direction: column; gap: 10px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
}
.card .who { font-size: 12px; color: var(--warm); margin-bottom: 6px; }
.card p { font-size: 14px; line-height: 1.45; color: var(--text); }
.pray {
  margin-top: 10px;
  border: 0;
  background: transparent;
  color: var(--warm);
  font-size: 13px;
  font-weight: 600;
  padding: 0;
}

.lessons { display: flex; flex-direction: column; gap: 8px; }
.lesson {
  display: grid;
  grid-template-columns: 64px 1fr 18px;
  gap: 10px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
}
.thumb {
  width: 64px; height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, #3a2a1c, #1a120e);
}
.lesson b { font-size: 13px; font-weight: 600; }
.lesson span { display: block; font-size: 11px; color: var(--muted); }
.lock { color: var(--muted); font-size: 14px; }

.price {
  font-size: 32px;
  font-weight: 650;
  letter-spacing: -.03em;
  margin: 8px 0 4px;
}
.price small { font-size: 14px; color: var(--muted); font-weight: 500; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 12px 0;
}
.split .card b { display: block; font-size: 12px; color: var(--warm); margin-bottom: 4px; }
.split .card p { font-size: 12px; color: var(--muted); }

.warn {
  border: 1px solid rgba(232, 194, 122, .25);
  background: rgba(232, 194, 122, .06);
  border-radius: 12px;
  padding: 12px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
  margin: 12px 0;
}
.next-box {
  border: 1px solid rgba(232, 194, 122, .35);
  background: rgba(232, 194, 122, .08);
  border-radius: 16px;
  padding: 16px;
  margin: 8px 0 16px;
}
.next-box .kicker { margin-bottom: 8px; }
.next-box p { font-size: 15px; line-height: 1.45; }
.lumen-list { display: flex; flex-direction: column; gap: 8px; margin: 8px 0 4px; }
.lumen-list .card b { display: block; font-size: 13px; color: var(--warm); margin-bottom: 4px; }
.lumen-list .card p { font-size: 13px; color: var(--muted); }

.cover-hero { margin-top: 12px; flex: 1; display: flex; flex-direction: column; }
.cover-hero h1 { font-size: 32px; margin-bottom: 16px; }

.map {
  background: #14110f;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 16px;
  height: min(844px, calc(100vh - 56px));
  overflow: auto;
  color: var(--muted);
  font-size: 13px;
}
.map h2 {
  color: var(--text);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.map ol { list-style: none; display: flex; flex-direction: column; gap: 2px; margin-bottom: 18px; }
.map li {
  padding: 6px 8px;
  border-radius: 8px;
  cursor: pointer;
}
.map li:hover { background: #1c1814; color: var(--text); }
.map li.on { background: #2a2118; color: var(--warm); }
.map .meta { white-space: pre-line; line-height: 1.45; margin: 10px 0 14px; color: var(--text); font-size: 12px; }
.map select, .map .fill {
  width: 100%;
  margin-bottom: 8px;
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  font-size: 13px;
}
.map .fill { text-align: center; font-weight: 600; }

@media (max-width: 860px) {
  .shell { display: block; padding: 0; background: var(--bg); }
  .map { display: none; }
  .phone {
    width: 100%;
    height: 100dvh;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .notch { display: none; }
  #app { padding: 20px 20px 28px; }
}
