:root {
  --bg: #e8eef6;
  --card: #ffffff;
  --text: #0a1628;
  --muted: #5a7394;
  --line: #c5d3e6;
  --accent: #3a85d6;
  --accent-renew: #3a47d6;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  font-family: Inter, Segoe UI, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  padding-top: 64px;
}
a { color: var(--accent); }
.wrap { width: min(760px, calc(100% - 40px)); margin: 0 auto; }
.top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}
.brand-name {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}
.brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  object-fit: contain;
  display: block;
}
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-height: 44px;
  margin-left: auto;
  border: 0;
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
}
.nav-burger,
.nav-burger::before,
.nav-burger::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}
.nav-burger {
  position: relative;
}
.nav-burger::before,
.nav-burger::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-burger::before { top: -6px; }
.nav-burger::after { top: 6px; }
#site-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 21;
  flex-direction: column;
  gap: 0;
  padding: 8px 20px 16px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 24px -12px rgba(15, 23, 42, 0.18);
}
#site-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}
#site-nav a[aria-current="page"] { color: var(--text); }
body.nav-open #site-nav { display: flex; }
@media (min-width: 800px) {
  .nav-toggle { display: none; }
  #site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px 18px;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
  }
  #site-nav a { min-height: 0; }
}
.hero { padding: 64px 0 28px; }
.eyebrow {
  margin: 0 0 8px;
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
}
h1 { margin: 0 0 14px; font-size: 40px; line-height: 1.12; letter-spacing: -0.02em; }
h2 { margin: 0 0 12px; font-size: 20px; }
.lead { margin: 0; max-width: 38rem; color: var(--muted); font-size: 18px; }
.hero-cta { margin: 24px 0 0; }
.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  max-width: 40rem;
}
.facts li {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.facts span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 2px;
}
.btn {
  display: inline-block;
  text-decoration: none;
  font: inherit;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border: 0;
  border-radius: 10px;
  padding: 9px 14px;
  cursor: pointer;
}
.btn.is-off {
  opacity: 0.45;
  pointer-events: auto;
  cursor: not-allowed;
}
.story {
  padding: 8px 0 40px;
}
.story p {
  margin: 0 0 14px;
  color: var(--muted);
  max-width: 40rem;
}
.shots { margin-top: 24px; }
.shots h3 {
  margin: 22px 0 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.shots h3:first-child { margin-top: 0; }
.shot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}
.shot-grid figure {
  margin: 0;
  background: var(--card);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 8px 16px -6px rgba(15, 23, 42, 0.08);
}
.shot-open {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
  padding: 0;
  border: 0;
  background: #d7e0ee;
  cursor: zoom-in;
  border-radius: 8px;
  overflow: hidden;
}
.shot-grid img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox {
  padding: 12px;
  border: 0;
  margin: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  overflow: hidden;
  container-type: size;
  background: rgba(10, 22, 40, 0.88);
  cursor: zoom-out;
}
.lightbox:focus {
  outline: none;
}
.lightbox[open] {
  display: grid;
  place-items: center;
}
.lightbox::backdrop {
  background: rgba(10, 22, 40, 0.88);
}
.lightbox img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100cqi, var(--nw, 100cqi));
  max-height: min(100cqb, var(--nh, 100cqb));
  cursor: zoom-out;
}
.clip {
  position: relative;
  margin: 0 0 12px;
  background: var(--card);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 8px 16px -6px rgba(15, 23, 42, 0.08);
}
.clip video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: #0a1628;
}
.clip-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-size: 0;
  cursor: pointer;
}
.clip-play::before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
}
.clip.is-on .clip-play { display: none; }
.how { padding: 8px 0 28px; }
.how-crypto {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin: 12px 0 0;
  color: var(--muted);
}
.how-crypto strong {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  padding: 4px 10px;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0 12px;
}
.how-grid article {
  background: var(--card);
  border-radius: 14px;
  padding: 20px 18px 18px;
  box-shadow: 0 8px 16px -6px rgba(15, 23, 42, 0.08);
}
.how-grid h3 { margin: 0 0 8px; font-size: 16px; }
.how-grid ol {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.how-grid li { margin: 8px 0; }
.handle {
  font: inherit;
  font-weight: 700;
  color: var(--accent);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.how-status { margin: 8px 0 0; font-size: 13px; color: var(--muted); }
.copied { color: #22ad5c; font-weight: 600; }
.how-foot { margin: 8px 0 0; font-size: 14px; color: var(--muted); max-width: 40rem; }
.pay { padding: 0 0 32px; }
.extra { padding: 8px 0 32px; }
.extra p {
  margin: 0 0 14px;
  color: var(--muted);
  max-width: 40rem;
}
.extra strong { color: var(--text); }
.notes {
  margin: 0 0 14px;
  padding-left: 18px;
  color: var(--muted);
  max-width: 40rem;
}
.notes li { margin: 8px 0; }
.alert {
  margin: 0 0 14px;
  padding: 14px 16px;
  max-width: 40rem;
  background: #fdecec;
  color: #8a1f1f;
  border-radius: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.renew-box .btn {
  margin-top: 12px;
}
.dl-out {
  display: inline-block;
  margin-left: 10px;
  padding: 9px 0;
  border: 0;
  background: none;
  font: inherit;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
}
.extra .how-status.is-bad { color: #8a1f1f; }
.extra .how-status.is-ok { color: #22ad5c; }
.pay-intro {
  margin: 0 0 16px;
  color: var(--muted);
  max-width: 40rem;
}
.mode {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--card);
  border-radius: 12px;
  box-shadow: 0 8px 16px -6px rgba(15, 23, 42, 0.08);
  margin-bottom: 14px;
}
.mode-btn {
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  border: 0;
  border-radius: 10px;
  padding: 8px 14px;
  background: transparent;
  color: var(--muted);
}
.mode-btn.is-on {
  background: var(--accent);
  color: #fff;
}
body.is-renew .mode-btn.is-on {
  background: var(--accent-renew);
}
.renew-box {
  background: var(--card);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 8px 16px -6px rgba(15, 23, 42, 0.08);
  margin-bottom: 14px;
}
.dl-box {
  max-width: 360px;
}
.renew-box[hidden] { display: none !important; }
.renew-box label {
  display: block;
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.renew-box label[for="dl-pass"] { margin-top: 12px; }
.renew-box input {
  font: inherit;
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.plan {
  background: var(--card);
  border-radius: 14px;
  padding: 20px 18px 18px;
  box-shadow: 0 8px 16px -6px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.plan-mid {
  box-shadow:
    0 8px 16px -6px rgba(15, 23, 42, 0.08),
    0 12px 28px -10px color-mix(in srgb, var(--accent) 45%, transparent);
}
body.is-renew .plan-mid {
  box-shadow:
    0 8px 16px -6px rgba(15, 23, 42, 0.08),
    0 12px 28px -10px color-mix(in srgb, var(--accent-renew) 45%, transparent);
}
.plan-tag {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}
.plan.is-renew .plan-tag {
  color: var(--accent-renew);
}
.plan h3 { margin: 0; font-size: 15px; color: var(--muted); font-weight: 600; }
.price { margin: 4px 0 0; font-size: 28px; font-weight: 700; letter-spacing: -0.03em; }
.per { margin: 0 0 14px; color: var(--muted); font-size: 13px; }
.plan .btn { margin-top: auto; text-align: center; }
body.is-renew .plan .btn { background: var(--accent-renew); }
.foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
  padding: 0 0 48px;
  color: var(--muted);
  font-size: 13px;
}
.foot p { margin: 0; }
.foot a { font-weight: 600; }
.log {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 40rem;
}
.log li {
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--line);
}
.log li:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}
.log time {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.log p { margin: 0; }

@media (max-width: 640px) {
  h1 { font-size: 32px; }
  .plans, .how-grid, .shot-grid, .facts { grid-template-columns: 1fr; }
  .hero { padding-top: 40px; }
  .mode { width: 100%; }
  .mode-btn { flex: 1; }
}
