

:root {
  
  --bg: #121218;
  --bg-elev: #1c1c24;
  --bg-card: #23232d;
  --border: #35353f;
  
  --border-strong: #7d7d8d;
  
  --text: #f2f2f5;
  --text-muted: #b4b4be;
  --text-dim: #8e8e99;
  --accent-gold: #d4af37;
  --accent-cyan: #4a9eff;
  --accent-warn: #ffb84d;
  --mono: "JetBrains Mono", "Fira Code", "Cascadia Mono", Consolas, monospace;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --maxw: 1080px;
  
  --fs-kicker: 0.75rem;
  --fs-fine: 0.85rem;
  --fs-small: 0.9rem;
  --fs-body: 1rem;
  --fs-h3: 1.2rem;
  --fs-tag: 1.35rem;
  --fs-h2: clamp(1.7rem, 4.2vw, 2rem);
  --measure: 62ch;
}

* { box-sizing: border-box; }


img, video { max-width: 100%; height: auto; }

html { scroll-behavior: smooth; }


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}


a { color: var(--accent-gold); text-decoration: none; }
a:hover { text-decoration: underline; }


p a, li a { text-decoration: underline; text-underline-offset: 0.15em; }


a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}



nav.top {
  position: sticky; top: 0; z-index: 10;
  
  background: rgb(18 18 24 / 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
  nav.top { background: var(--bg); }
}

nav.top .inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap;
}
nav.top .brand {
  display: flex; align-items: center; gap: 0.55rem;
  color: var(--accent-gold); font-weight: 700;
  font-family: var(--mono); font-size: 0.95rem;
  letter-spacing: 0.06em; text-decoration: none;
}

nav.top .brand img { width: 30px; height: 30px; }
nav.top .links { margin-left: auto; display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
nav.top .links a { color: var(--text-muted); font-size: 0.9rem; }
nav.top .links a:hover { color: var(--text); text-decoration: none; }

nav.top .links a[aria-current='page'] { color: var(--text); }



main { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

section { padding: 4rem 0; border-bottom: 1px solid var(--border); }
section:last-of-type { border-bottom: 0; }

section[id] { scroll-margin-top: 4rem; }

h1, h2, h3 { margin: 0 0 0.75rem; text-wrap: balance; }
h1 { font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h2 {
  font-size: var(--fs-h2, clamp(1.7rem, 4.2vw, 2rem));
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
h3 {
  font-size: var(--fs-h3, 1.2rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.005em;
}

h4 {
  margin: 0 0 0.5rem;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.4;
}
p { margin: 0 0 1rem; }
p.lead { font-size: 1.15rem; color: var(--text-muted); max-width: 62ch; }





.hero {
  text-align: left; padding: 3.5rem 0 4rem; border-bottom: 0;
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  gap: 2.5rem; align-items: center;
}
.hero-copy { min-width: 0; }


.hero-gif {
  display: block;
  width: 100%; max-width: 420px; height: auto;
  border-radius: 10px;
}


.hero .eyebrow {
  display: flex; align-items: center; gap: 0.6rem;
  margin: 0 0 1.1rem;
  font-family: var(--mono); font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-gold);
}
.hero .eyebrow img.mark { width: 38px; height: 38px; flex: none; }


.hero .cta { justify-content: flex-start; }

.hero h1 {
  font-size: clamp(1.95rem, 6.4vw, 3.35rem);
  letter-spacing: -0.03em; margin-bottom: 0.6rem;
  text-wrap: balance;
}

.hero .tag {
  font-size: var(--fs-tag, 1.35rem);
  line-height: 1.4;
  color: var(--text-muted);
  max-width: 58ch; margin: 0 0 2rem;
  text-wrap: balance;
}


.platforms {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.35rem 1.25rem;
  font-size: var(--fs-fine, 0.85rem);
  color: var(--text-muted);
}
.platforms li { display: flex; align-items: center; gap: 0.4rem; }
.platforms svg { width: 15px; height: 15px; flex: none; opacity: 0.85; }

.platforms span { color: var(--text-dim); }


.hero .pitch {
  margin: -0.6rem 0 1.6rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--accent-gold);
}


.cta-email { margin: 0 0 1rem; max-width: 26rem; }
.cta-email input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  background: rgb(0 0 0 / 35%);
  color: var(--text);
  font: inherit;
}
.cta-email input::placeholder { color: var(--text-dim); }
.cta-email input:focus-visible { outline: 2px solid var(--accent-cyan); outline-offset: 3px; }

.cta-why {
  margin: 0.45rem 0 0;
  font-size: var(--fs-fine, 0.85rem);
  line-height: 1.5;
  color: var(--text-muted);
}


.prose { max-width: 68ch; }
.prose p { margin: 0 0 1.15rem; }
.prose h2 { margin: 2.5rem 0 0.9rem; }
.prose h3 { margin: 0 0 0.5rem; }
.prose h4 { margin: 1.6rem 0 0.45rem; }
.prose .aside { margin-top: 2rem; }


.eyebrow-plain {
  margin: 0 0 0.6rem;
  font-family: var(--mono); font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-gold);
}


.story-list { list-style: none; margin: 2.25rem 0 0; padding: 0; counter-reset: gripe; }


.story-list > li {
  counter-increment: gripe;
  position: relative;
  margin: 0 0 1.4rem;
  padding: 1.15rem 1.4rem 1.15rem 4rem;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-gold);
  border-radius: 0 10px 10px 0;
  background: var(--bg-card);
}


.story-list > li::before {
  content: counter(gripe);
  position: absolute;
  left: 1.25rem;
  top: 1.15rem;
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: rgb(212 175 55 / 0.13);
  border: 1px solid rgb(212 175 55 / 0.35);
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--accent-gold);
}


.story-list > li h3 { margin: 0.2rem 0 0.55rem; }
.story-list > li p:last-child { margin-bottom: 0; }


@media (max-width: 640px) {
  .story-list > li { padding: 3.1rem 1.1rem 1.15rem; }
  .story-list > li::before { top: 1.1rem; left: 1.1rem; }
}



.cta { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.4rem; border-radius: 8px;
  font-weight: 600; font-size: 0.98rem;
  border: 1px solid var(--border-strong); text-decoration: none;
  color: var(--text); background: var(--bg-card);
}
.btn:hover { text-decoration: none; border-color: var(--text); }
.btn.primary {
  background: var(--accent-gold); color: #14140d;
  border-color: var(--accent-gold);
}
.btn.primary:hover { filter: brightness(1.08); }
.btn .sub { font-weight: 400; opacity: 0.75; font-size: 0.85rem; }


.btn.disabled {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--text-dim);
  border-style: dashed;
  cursor: default;
}
.btn.disabled:hover { border-color: var(--text-dim); }
.btn.disabled .sub { opacity: 1; color: var(--text-muted); }

.note {
  font-size: var(--fs-fine, 0.85rem);
  line-height: 1.55;
  color: var(--text-muted);
  margin-top: 0.9rem;
  max-width: var(--measure, 62ch);
}


.aside {
  margin: 2rem 0 0;
  max-width: var(--measure, 62ch);
  padding: 0.9rem 1.25rem;
  border-left: 3px solid var(--accent-gold);
  border-radius: 0 8px 8px 0;
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.98rem;
}
.aside a { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }
.aside a:hover { color: var(--accent-gold); }



.slot {
  border: 2px dashed var(--border);
  border-radius: 10px;
  background: transparent;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 2rem 1.5rem;
  color: var(--text-muted);
  font-family: var(--mono); font-size: 0.85rem;
}


.slot.tall {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 16 / 9;
}



.slot .what {
  color: var(--text-muted);
  font-weight: 600;
  font-size: var(--fs-kicker, 0.75rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 0.7rem;
}

.slot .how {
  font-family: var(--sans);
  font-size: var(--fs-fine, 0.85rem);
  max-width: 46ch;
  line-height: 1.6;
}



.grid { display: grid; gap: 1.25rem; }

.grid.two { grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }
.grid.three { grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr)); }


@media (max-width: 720px) {
  .grid.three { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
}
.card h3 { color: var(--text); }
.card p { color: var(--text-muted); margin-bottom: 0; }
.card .kicker {
  font-family: var(--mono);
  font-size: var(--fs-kicker, 0.75rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.6rem;
}



ul.plain { list-style: none; padding: 0; margin: 0; }
ul.plain li {
  padding: 0.55rem 0 0.55rem 1.5rem; position: relative;
  color: var(--text-muted); border-bottom: 1px solid var(--border);
}
ul.plain li:last-child { border-bottom: 0; }
ul.plain li::before {
  content: ""; position: absolute; left: 0; top: 1.15rem;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-gold);
}
ul.plain li strong { color: var(--text); font-weight: 600; }



.price-wrap { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); }
.price {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 1.75rem; text-align: center;
}
.price.hero-price { border-color: var(--accent-gold); }
.price .amount {
  font-size: 2.6rem; font-weight: 700; letter-spacing: -0.02em;
  display: block; line-height: 1.1;
}
.price .per { color: var(--text-dim); font-size: 0.9rem; display: block; margin-bottom: 1rem; }
.price ul.plain { text-align: left; margin: 1.25rem 0; }



footer {
  border-top: 1px solid var(--border);
  margin-top: 2rem; padding: 2.5rem 1.5rem;
  color: var(--text-muted); font-size: 0.85rem;
}
footer .inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
footer .links { margin-left: auto; display: flex; gap: 1.1rem; flex-wrap: wrap; }

footer a { color: var(--text); }

footer .links a { padding: 0.35rem 0; }

@media (max-width: 640px) {
  section { padding: 3rem 0; }
  
  .hero { padding: 3rem 0; }
  
  #price { padding: 2.5rem 1.25rem; margin: 2rem 0; border-radius: 12px; }
  footer .links { margin-left: 0; }

  
  nav.top .inner { padding: 0.6rem 1rem; gap: 0.3rem 0.75rem; }
  nav.top .links { margin-left: 0; width: 100%; gap: 1rem; }
  
  nav.top .links a { font-size: 0.86rem; padding: 0.3rem 0; }

  
  .hero .cta .btn { flex: 1 1 100%; justify-content: center; }

  
  .hero { grid-template-columns: 1fr; gap: 2rem; }
  .hero-gif { max-width: 100%; }
}



#gate {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-elev);
  color: inherit;
  padding: 0;
  max-width: 30rem;
  width: calc(100% - 2rem);
}

#gate::backdrop { background: rgb(0 0 0 / 62%); }

.gate-form { padding: 1.5rem; display: grid; gap: 0.75rem; }
.gate-form h2 { margin: 0; font-size: var(--fs-h3, 1.2rem); line-height: 1.3; }
.gate-lead { margin: 0; opacity: 0.78; font-size: var(--fs-small, 0.9rem); line-height: 1.5; }

.gate-label { font-size: var(--fs-fine, 0.85rem); font-weight: 600; opacity: 0.9; }

#gate-email {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  
  background: var(--bg);
  color: inherit;
  font: inherit;
}


#gate-email:focus-visible { outline: 2px solid var(--accent-cyan); outline-offset: 3px; }


.gate-error {
  margin: 0;
  font-size: var(--fs-fine, 0.85rem);
  line-height: 1.5;
  color: var(--accent-warn);
}


.gate-fix {
  border: 0;
  background: none;
  padding: 0.3rem 0.25rem;
  margin: 0 -0.25rem;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}


.gate-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: flex-end; margin-top: 0.25rem; }
.gate-actions .btn { cursor: pointer; }
.gate-actions .btn[disabled] { opacity: 0.6; cursor: default; }


button.btn { font: inherit; cursor: pointer; }


.keybox {
  margin: 1.25rem 0;
  padding: 1rem 1.1rem;
  border: 1px solid var(--accent-gold);
  border-radius: 10px;
  
  background: color-mix(in srgb, var(--accent-gold) 7%, transparent);
}

.keybox-label { display: block; font-size: var(--fs-fine, 0.85rem); opacity: 0.8; margin-bottom: 0.5rem; }

.keybox-row { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }


.keybox-row code {
  font-size: var(--fs-body, 1rem);
  letter-spacing: 0.02em;
  user-select: all;
  word-break: break-all;
  flex: 1 1 16rem;
}

.steps { line-height: 1.7; padding-left: 1.2rem; }
.steps li { margin-bottom: 0.4rem; }


.shot {
  margin: clamp(1.75rem, 3vw, 2.5rem) 0 0;
  
  margin-inline: calc(-1 * clamp(0px, (100vw - var(--maxw) - 24px) / 2, 96px));
  
  
  border: 2px solid var(--border-strong);
  border-radius: 12px;
  overflow: hidden;
  
  background: #151621;
}


.shot img { display: block; width: 100%; height: auto; }



.reseller,
.addr {
  margin-top: 0.4rem;
  font-size: var(--fs-fine, 0.85rem);
  line-height: 1.5;
  color: var(--text-muted);
}

.reseller a { color: inherit; text-decoration: underline; text-underline-offset: 0.15em; }




.tablewrap { overflow-x: auto; }


table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.15rem;
}
th, td {
  text-align: left;
  vertical-align: top;
  
  padding: 0.6rem 1.25rem 0.6rem 0;
  border-bottom: 1px solid var(--border);
}

th { font-weight: 600; }


code {
  font-family: var(--mono);
  font-size: 0.92em;
  overflow-wrap: anywhere;
}


#ai { border-bottom: 0; }

#price {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 4rem 2.5rem;
  margin: 2.5rem 0;
  text-align: center;
}


#price > .lead { max-width: 54ch; margin-left: auto; margin-right: auto; }


.price ul.plain li::before { background: var(--text-muted); }
