:root {
  color-scheme: dark;
  --navy: #08111c;
  --navy-2: #0e1a2b;
  --card: #122033;
  --line: rgba(200, 240, 74, 0.18);
  --control-line: rgba(200, 240, 74, 0.45);
  --lime: #c8f04a;
  --lime-dim: #9cc62e;
  --text: #f3f7ea;
  --muted: #a8b598;
  --danger: #ff8a7a;
  --shadow: 0 0 0 1px var(--line), 0 18px 40px rgba(0, 0, 0, 0.28);
  --wrap: min(72rem, calc(100% - 2rem));
  --prose: 40rem;
  --radius: 1.25rem;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(90% 60% at 50% -10%, #16301a 0%, var(--navy) 46%, #050910 100%);
  color: var(--text);
  font: 17px/1.55 var(--font);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

a {
  color: var(--lime);
  text-underline-offset: 0.18em;
}

a:hover { color: #ddff7a; }

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  z-index: 10;
  padding: 0.5rem 0.75rem;
  border-radius: 0.6rem;
  background: var(--lime);
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.skip:focus,
.skip:focus-visible { top: 0.75rem; }

.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;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.site-header,
.site-footer {
  flex: 0 0 auto;
}

.site-header {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 17, 28, 0.72);
  backdrop-filter: blur(12px);
}

.site-header .wrap,
.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  font-weight: 750;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.wordmark:hover { color: var(--text); }

.wordmark img {
  width: 2rem;
  height: 2rem;
  border-radius: 0.7rem;
  object-fit: cover;
  object-position: 50% 12%;
  background: var(--navy-2);
  box-shadow: var(--shadow);
}

.wordmark span { display: block; line-height: 1.15; }

.wordmark small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-header nav ul,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header nav ul {
  gap: 0.35rem 1rem;
}

.site-header nav a,
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 1.5rem;
}

.site-header nav a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
}

.site-header nav a:hover { color: var(--lime); }

.site-header nav a[aria-current="page"] {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

main { flex: 1 0 auto; }

main:focus { outline: none; }

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero:not(.toldya-hero) {
  padding: 2.75rem 0 1.5rem;
}

.hero-grid,
.feature-grid,
.split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(14rem, 0.7fr);
    align-items: center;
  }

  .toldya-hero .hero-grid {
    grid-template-columns: minmax(12rem, 0.7fr) minmax(0, 1.15fr);
  }

  .hero:not(.toldya-hero) .hero-grid {
    gap: 1.5rem;
  }

  .hero:not(.toldya-hero) .fas-hero img {
    width: min(18.5rem, 36vw);
  }
}

.kicker {
  margin: 0 0 0.7rem;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0 0 0.7rem;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 780; }
h2 { font-size: clamp(1.6rem, 3vw, 2.15rem); font-weight: 750; }
h3 { font-size: 1.15rem; font-weight: 750; }

.lede {
  max-width: 36rem;
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1.15rem;
  border-radius: 0.85rem;
  font-weight: 750;
  text-decoration: none;
}

.button {
  background: var(--lime);
  color: var(--navy);
  box-shadow: 0 0 22px rgba(200, 240, 74, 0.22);
}

.button:hover { color: var(--navy); background: #d6ff5c; }

.button-secondary {
  border: 1px solid var(--control-line);
  color: var(--text);
  background: transparent;
}

.button-secondary:hover { color: var(--lime); }

.mascot-frame {
  display: grid;
  place-items: center;
  min-height: 16rem;
}

.mascot-frame img {
  width: min(18rem, 70vw);
  filter: drop-shadow(0 0 28px rgba(200, 240, 74, 0.18));
}

.fas-hero {
  min-height: 0;
}

.fas-hero img {
  width: min(22rem, 82vw);
  height: auto;
  object-fit: contain;
}

.toldya-hero .mascot-frame img { width: min(20rem, 78vw); }

.toldya-hero .meta { margin: 1rem 0 0; }

.section {
  padding: 0 0 4.5rem;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 1.5rem;
}

.demo-section .section-head .lede {
  margin-bottom: 0;
}

.demo-compare {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 780px) {
  .demo-compare {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.demo-card {
  margin: 0;
}

.demo-compare .demo-card {
  padding: 1.25rem 1.35rem 1.4rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.demo-compare .demo-card .kicker {
  margin-bottom: 0.85rem;
}

.demo-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy-2);
  box-shadow: var(--shadow);
}

.demo-compare .demo-frame {
  aspect-ratio: 926 / 720;
  border-radius: calc(var(--radius) - 0.35rem);
  box-shadow: none;
}

.demo-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050910;
}

.demo-compare .demo-frame video {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: contain;
}

.demo-compare .demo-frame-cover video {
  object-fit: cover;
  object-position: bottom;
}

.demo-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 1.5rem;
  place-items: center;
  color: var(--muted);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(200, 240, 74, 0.08), rgba(18, 32, 51, 0.92));
}

.demo-frame.is-missing video {
  visibility: hidden;
}

.demo-compare .demo-frame.is-missing {
  aspect-ratio: 926 / 720;
}

.demo-frame.is-missing .demo-placeholder {
  display: grid;
}

.demo-card figcaption {
  margin: 0.85rem 0 0;
  text-align: center;
}

.demo-compare .demo-card figcaption {
  text-align: left;
}

.demo-note {
  max-width: 40rem;
  margin: 1.5rem 0 0;
}

.muted { color: var(--muted); }

.card,
.feature,
.note {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card,
.feature,
.note,
.prose-card {
  padding: 1.25rem 1.35rem 1.4rem;
}

.product-card {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .product-card {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
}

.product-card img {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 1.2rem;
  background: var(--navy-2);
  box-shadow: var(--shadow);
}

.product-card h2 { margin-bottom: 0.35rem; }

.product-card p { margin: 0; color: var(--muted); }

.feature-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 780px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}

.feature h2,
.feature h3 { color: var(--text); }

.feature p:last-child { margin-bottom: 0; }

.pbt-preview .feature ul:last-child { margin-bottom: 0; }

.pbt-preview .feature ul {
  margin: 0.85rem 0 0;
  padding-left: 1.2rem;
}

.pbt-preview .feature li + li { margin-top: 0.35rem; }

.toldya-audiences .feature ul:last-child { margin-bottom: 0; }

.toldya-audiences .feature ul {
  margin: 0.85rem 0 0;
  padding-left: 1.2rem;
}

.toldya-audiences .feature li + li { margin-top: 0.35rem; }

.wide { grid-column: 1 / -1; }

.prose {
  width: min(var(--prose), 100%);
  padding: 3.5rem 0 4.5rem;
}

.prose > * { margin-top: 0; }

.prose p,
.prose li { color: var(--text); }

.prose p,
.prose ul,
.prose ol { margin-bottom: 1rem; }

.prose ul,
.prose ol { padding-left: 1.2rem; }

.prose li + li { margin-top: 0.35rem; }

.prose h2 { margin-top: 2.2rem; }

.prose h3 { margin-top: 1.5rem; }

.prose .lede { margin-bottom: 1.25rem; }

.prose .actions { margin: 2rem 0 1rem; }

.compare {
  width: 100%;
  margin: 0 0 1.5rem;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.compare th,
.compare td {
  padding: 0.55rem 0.65rem;
  border-bottom: 1px solid var(--control-line);
  text-align: left;
  vertical-align: top;
}

.compare thead th {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.compare tbody th {
  font-weight: 650;
  color: var(--text);
}

.meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.note {
  margin: 1.25rem 0;
}

.support-form {
  margin: 1.25rem 0 0;
  padding: 1.25rem 1.35rem 1.4rem;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.support-form p { margin: 0 0 1rem; }

.support-form p:last-child { margin-bottom: 0; }

.support-form label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.support-form input,
.support-form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--control-line);
  border-radius: 0.75rem;
  background: var(--navy-2);
  color: var(--text);
  font: inherit;
}

.support-form textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.support-form input:focus-visible,
.support-form textarea:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

button.button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.site-footer {
  padding: 1.4rem 0 1.7rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--lime); }

.footer-links {
  gap: 0.75rem 1rem;
}

.band {
  margin: 0 0 4.5rem;
  padding: 1.6rem 1.5rem;
  border-radius: calc(var(--radius) + 0.2rem);
  background:
    linear-gradient(180deg, rgba(200, 240, 74, 0.08), rgba(18, 32, 51, 0.6));
  box-shadow: var(--shadow);
}

.band p { margin: 0.4rem 0 1rem; color: var(--muted); }

.lost {
  padding: 5rem 0 6rem;
  text-align: center;
}

.lost .mascot-frame { min-height: auto; margin-bottom: 1rem; }
.lost .mascot-frame img { width: 9.5rem; }
.lost .fas-hero img { width: min(12rem, 58vw); }

.activated {
  padding: 3.5rem 0 4.5rem;
}

.activated-wrap {
  width: min(36rem, var(--wrap));
}

.activated .mascot-frame {
  min-height: auto;
  margin-bottom: 1rem;
  justify-items: start;
}

.activated .mascot-frame img {
  width: 7.5rem;
}

.license-reveal {
  margin: 0 0 2rem;
}

.license-key {
  margin: 0 0 0.85rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--control-line);
  border-radius: 0.85rem;
  background: var(--navy-2);
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 1.02rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  word-break: break-all;
}

.email-note { margin: 0.85rem 0 0; }

.activate-steps {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.activate-steps li + li { margin-top: 0.45rem; }

@media (max-width: 640px) {
  .site-header .wrap,
  .site-footer .wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  body { font-size: 16px; }
  .hero { padding-top: 3rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mascot-frame img { filter: none; }
}
