:root {
  --bg: #08111d;
  --bg-soft: #111b2a;
  --panel: rgba(15, 23, 36, 0.86);
  --panel-strong: #182232;
  --border: rgba(148, 163, 184, 0.16);
  --text: #f8fafc;
  --muted: #b9c6d8;
  --muted-strong: #d7e0ed;
  --accent: #d43b3b;
  --accent-strong: #ad1f2d;
  --accent-soft: rgba(212, 59, 59, 0.18);
  --accent-glow: rgba(212, 59, 59, 0.34);
  --success: #34d399;
  --error: #fda4af;
  --shadow: 0 24px 60px rgba(2, 6, 23, 0.45);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(212, 59, 59, 0.24), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(212, 59, 59, 0.12), transparent 18%),
    linear-gradient(180deg, #0a1322 0%, var(--bg) 42%, #050b15 100%);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.site-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 32px 0 48px;
}

.utility-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  margin-bottom: 18px;
}

.utility-nav a {
  color: #b7c5d9;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.utility-nav a:hover,
.utility-nav a:focus-visible {
  color: var(--text);
}

.hero {
  position: relative;
  display: grid;
  gap: 32px;
  align-items: center;
  padding: 48px 0 28px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -3rem auto auto -2rem;
  width: clamp(220px, 32vw, 360px);
  height: clamp(220px, 32vw, 360px);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(212, 59, 59, 0.18) 0%, rgba(212, 59, 59, 0.05) 45%, transparent 72%);
  filter: blur(10px);
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.brand-lockup {
  margin-bottom: 24px;
}

.brand-lockup__logo {
  width: clamp(150px, 24vw, 220px);
  height: auto;
}

.eyebrow,
.section-label,
.card-label {
  margin: 0 0 14px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffb4b4;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  line-height: 0.97;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.2;
}

p,
li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero__lede {
  max-width: 58ch;
  margin-bottom: 28px;
  font-size: 1.1rem;
  color: var(--muted-strong);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__note {
  margin: 16px 0 0;
  font-size: 0.98rem;
  color: #9fb0c7;
}

.hero__highlights {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.hero__highlights li {
  position: relative;
  padding: 14px 18px 14px 48px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius-md);
  background: rgba(9, 16, 28, 0.46);
  color: var(--muted-strong);
}

.hero__highlights li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 18px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd1d1 0%, var(--accent) 100%);
  box-shadow: 0 0 0 6px rgba(212, 59, 59, 0.12);
  transform: translateY(-50%);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff5f5;
  box-shadow: 0 14px 30px rgba(173, 31, 45, 0.34);
}

.button--secondary {
  border-color: rgba(212, 59, 59, 0.24);
  background: rgba(18, 26, 38, 0.7);
  color: var(--text);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: rgba(255, 180, 180, 0.48);
  background: rgba(22, 31, 45, 0.9);
}

.waitlist-card,
.info-card,
.trust-list {
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.waitlist-card {
  position: relative;
  z-index: 1;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.waitlist-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 180, 180, 0.24), rgba(212, 59, 59, 0.04));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.card-copy {
  margin-bottom: 22px;
}

.waitlist-form {
  display: grid;
  gap: 12px;
}

.waitlist-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.82);
  color: var(--text);
  font: inherit;
}

.waitlist-form input::placeholder {
  color: #8da1bd;
}

.waitlist-form input:focus-visible {
  outline: 2px solid var(--accent-glow);
  outline-offset: 2px;
  border-color: var(--accent-glow);
}

.form-status {
  min-height: 1.6rem;
  margin: 14px 0 0;
  font-size: 0.95rem;
}

.form-status[data-state="success"] {
  color: var(--success);
}

.form-status[data-state="error"] {
  color: var(--error);
}

.form-status[data-state="pending"] {
  color: #fda4a4;
}

.section {
  padding: 36px 0;
}

.section--compact {
  padding-top: 18px;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 20px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.audience-grid {
  display: grid;
  gap: 18px;
}

.info-card {
  padding: 24px;
  border-radius: var(--radius-md);
}

.info-card h3,
.trust-list li::marker {
  color: #ffd1d1;
}

.trust-list {
  margin: 0;
  padding: 24px 24px 24px 48px;
  border-radius: var(--radius-lg);
}

.trust-list li + li {
  margin-top: 12px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.footer a,
.footer p {
  margin: 0;
  color: #a9b7cb;
  text-decoration: none;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--text);
}

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

@media (min-width: 760px) {
  .site-shell {
    width: min(calc(100% - 3rem), var(--max-width));
    padding-top: 40px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 40px;
    min-height: 70vh;
    padding: 56px 0 34px;
  }

  .waitlist-card {
    padding: 32px;
  }

  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 759px) {
  .site-shell {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  .hero {
    padding-top: 28px;
  }

  .utility-nav {
    justify-content: flex-start;
    margin-bottom: 8px;
  }

  h1 {
    line-height: 1.02;
  }

  .button,
  .waitlist-form button {
    width: 100%;
  }

  .footer {
    justify-content: flex-start;
  }
}

.reset-page {
  background:
    radial-gradient(circle at 16% 14%, rgba(212, 59, 59, 0.22), transparent 20%),
    radial-gradient(circle at 84% 8%, rgba(212, 59, 59, 0.16), transparent 18%),
    linear-gradient(180deg, #09111d 0%, #08111d 52%, #040912 100%);
}

.support-page {
  background:
    radial-gradient(circle at 14% 12%, rgba(212, 59, 59, 0.2), transparent 18%),
    radial-gradient(circle at 86% 10%, rgba(212, 59, 59, 0.14), transparent 16%),
    linear-gradient(180deg, #09111d 0%, #08111d 52%, #040912 100%);
}

.support-shell {
  display: grid;
  min-height: 100vh;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
}

.support-layout {
  display: flex;
  justify-content: center;
}

.support-card {
  position: relative;
  width: min(100%, 640px);
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(10, 16, 28, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.support-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 180, 180, 0.3), rgba(212, 59, 59, 0.06));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.support-card__brand,
.support-card__content {
  position: relative;
  z-index: 1;
}

.support-card__brand {
  margin-bottom: 20px;
}

.support-card h1 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 5.8vw, 3.2rem);
  line-height: 0.98;
}

.support-copy {
  margin-bottom: 24px;
  color: var(--muted-strong);
}

.support-date {
  margin: 0 0 24px;
  color: #9fb0c7;
  font-size: 0.96rem;
  font-weight: 700;
}

.support-meta {
  margin: 0 0 24px;
}

.support-meta strong {
  color: var(--text);
}

.support-list {
  margin: 0 0 24px;
  padding: 24px 24px 24px 48px;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.support-list li::marker {
  color: #ffd1d1;
}

.support-list li + li {
  margin-top: 10px;
}

.policy-sections {
  display: grid;
  gap: 16px;
}

.policy-section {
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.policy-section h2 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.policy-section p {
  margin: 0;
  color: var(--muted-strong);
}

.policy-section p + p {
  margin-top: 12px;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.reset-shell {
  display: grid;
  min-height: 100vh;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
}

.reset-layout {
  display: flex;
  justify-content: center;
}

.reset-card {
  position: relative;
  width: min(100%, 560px);
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(10, 16, 28, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.reset-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 180, 180, 0.3), rgba(212, 59, 59, 0.06));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.reset-card__brand {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.12);
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 700;
}

.status-pill[data-tone="pending"] {
  background: rgba(212, 59, 59, 0.14);
  color: #ffcccc;
}

.status-pill[data-tone="success"] {
  background: rgba(52, 211, 153, 0.14);
  color: #b7f7da;
}

.status-pill[data-tone="error"] {
  background: rgba(253, 164, 175, 0.14);
  color: #fecdd3;
}

.reset-state h1 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 5.8vw, 3.2rem);
  line-height: 0.98;
}

.reset-copy {
  margin-bottom: 24px;
  color: var(--muted-strong);
}

.reset-form {
  display: grid;
  gap: 16px;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group label {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text);
}

.field-group input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.82);
  color: var(--text);
  font: inherit;
}

.field-group input:focus-visible {
  outline: 2px solid var(--accent-glow);
  outline-offset: 2px;
  border-color: var(--accent-glow);
}

.inline-note {
  margin: -4px 0 0;
  font-size: 0.95rem;
  color: #9fb0c7;
}

.reset-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 6px;
}

.text-link {
  color: var(--muted-strong);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--text);
}

.progress-indicator {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 18px;
}

.progress-indicator span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 180, 180, 0.82);
  animation: pulse 1.1s infinite ease-in-out;
}

.progress-indicator span:nth-child(2) {
  animation-delay: 0.12s;
}

.progress-indicator span:nth-child(3) {
  animation-delay: 0.24s;
}

.delete-card {
  width: min(100%, 720px);
}

.delete-state h1 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 5.8vw, 3.2rem);
  line-height: 0.98;
}

.delete-policy-grid {
  margin-bottom: 24px;
}

.confirmation-box {
  margin-bottom: 20px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 59, 59, 0.18);
  background: rgba(212, 59, 59, 0.08);
}

.confirmation-box p {
  margin: 0;
  color: var(--muted-strong);
}

.confirmation-box p + p {
  margin-top: 12px;
}

.checkbox-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.66);
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin: 4px 0 0;
  accent-color: var(--accent);
}

.checkbox-row span {
  color: var(--muted-strong);
  line-height: 1.6;
}

.button--danger {
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  box-shadow: 0 16px 34px rgba(185, 28, 28, 0.32);
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

@keyframes pulse {
  0%,
  80%,
  100% {
    transform: scale(0.75);
    opacity: 0.45;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 759px) {
  .support-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .support-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .reset-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .reset-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .text-link {
    text-align: center;
  }

  .checkbox-row {
    grid-template-columns: 1fr;
  }

  .checkbox-row input {
    margin-top: 0;
  }
}
