:root {
  --bg: #f7f8ff;
  --ink: #101522;
  --muted: #3d475f;
  --brand: #e50914;
  --brand-2: #ffd41f;
  --brand-3: #125dff;
  --card: #ffffff;
  --line: #d8deef;
  --band: #eef2ff;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at top right, #d9e3ff 0, #f7f8ff 42%);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.45;
}

.wrap { width: min(1100px, 92vw); margin: 0 auto; }

.sticky-cta {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #0d1320;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.sticky-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}
.sticky-row p { margin: 0; }
.sticky-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sticky-logo {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.hero {
  background: linear-gradient(130deg, #e50914 0%, #ff5d00 35%, #125dff 100%);
  color: #fff;
  padding: 56px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.kicker { text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; opacity: 0.9; font-size: 0.78rem; }
h1 { margin: 0.2rem 0 0.7rem; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; }
.sub { font-size: 1.05rem; max-width: 760px; }
.micro { color: var(--muted); font-size: 0.9rem; }
.hero .micro { color: rgba(255, 255, 255, 0.82); }
.hero-logo-wrap {
  display: inline-block;
  margin-bottom: 8px;
}
.hero-logo {
  width: min(560px, 100%);
  display: block;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.35));
}

.mascot-card {
  background: rgba(10, 15, 28, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(3px);
}
.mascot-face {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #ffe7d8;
  border: 2px solid #251a13;
  display: grid;
  place-items: center;
  color: #251a13;
  font-weight: 800;
  font-size: 1.35rem;
}
.mascot-logo {
  width: 100%;
  max-width: 260px;
  display: block;
  margin: 0 0 8px;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.25));
}
.mascot-title { margin-bottom: 8px; }

.section { padding: 44px 0; }
.band { background: var(--band); }
.alert-band {
  background: linear-gradient(90deg, #101522, #1b2d5a);
  color: #fff;
}
.alert-band p {
  margin: 0;
  font-size: 1.05rem;
}
h2 { font-size: 1.6rem; margin: 0 0 16px; }

.cards { display: grid; gap: 14px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 14px;
  padding: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(16, 21, 34, 0.1);
}
.card h3 { margin-top: 0; }
.card.featured {
  border-color: var(--brand-2);
  box-shadow: 0 8px 26px rgba(229, 9, 20, 0.2);
  transform: translateY(-2px);
}
.pill {
  display: inline-block;
  margin: 0 0 8px;
  background: #101522;
  color: #fff;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 0.78rem;
}

.mini .stat {
  margin: 0;
  color: #125dff;
  font-weight: 800;
  font-size: 1.1rem;
}

.feature-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.feature-grid li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
}

.price { font-size: 1.8rem; margin: 0.4rem 0; font-weight: 800; }
.pricing ul { margin: 0 0 16px; padding-left: 18px; }
.pricing li { margin: 6px 0; }

details {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  margin: 10px 0;
}
summary { cursor: pointer; font-weight: 600; }

a { color: var(--brand); }
.btn {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--brand-2);
  color: #101522;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.18);
}
.btn-secondary { background: transparent; border-color: rgba(255, 255, 255, 0.55); color: #fff; }
.btn-plan {
  width: 100%;
  background: var(--brand-3);
  border-color: var(--brand-3);
  color: #fff;
}
.btn-plan:hover {
  box-shadow: 0 6px 16px rgba(18, 93, 255, 0.28);
}
.btn-submit {
  background: #101522;
  color: #fff;
}
.btn-submit:hover {
  box-shadow: 0 6px 16px rgba(16, 21, 34, 0.25);
}
.band .btn-secondary,
#share .btn-secondary {
  color: var(--brand);
  border-color: var(--brand);
  background: #fff;
}

.pain-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.pain-chips span {
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.84rem;
  font-weight: 700;
  background: rgba(16, 21, 34, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.hero-actions, .share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.waitlist-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  display: grid;
  gap: 8px;
}
.waitlist-form label {
  font-size: 0.9rem;
  font-weight: 700;
}
.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
  border: 1px solid #d4bca9;
  border-radius: 10px;
  padding: 10px;
  font: inherit;
  color: var(--ink);
}
.waitlist-form textarea { resize: vertical; }
.hidden { display: none; }

.footer { padding: 24px 0 38px; border-top: 1px solid var(--line); }
.footer-logo {
  width: min(320px, 100%);
  display: block;
  margin-bottom: 10px;
}

@media (max-width: 860px) {
  .hero-grid,
  .cards.three,
  .feature-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .sticky-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
