:root {
  --bg: #0a0c10;
  --bg-elevated: #12151c;
  --text: #e8eaef;
  --text-muted: #9aa3b2;
  --border: rgba(255, 255, 255, 0.08);
  --accent: #5ee0a3;
  --accent-dim: rgba(94, 224, 163, 0.12);
  --accent-strong: #3bc583;
  --danger: #ff6b6b;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --font-sans: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto,
    sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --container: min(1120px, calc(100% - 2.5rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #042014;
  font-weight: 600;
  border-radius: var(--radius-sm);
  z-index: 100;
}

.skip-link:focus {
  left: 0.5rem;
}

.bg-grid {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 70%);
  z-index: 0;
}

.bg-glow {
  pointer-events: none;
  position: fixed;
  inset: -20% -10% auto -10%;
  height: 60vh;
  background: radial-gradient(
    closest-side,
    rgba(94, 224, 163, 0.14),
    transparent
  );
  filter: blur(40px);
  z-index: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10, 12, 16, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand__mark {
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--accent-strong),
    var(--accent) 55%,
    #7ef0c1
  );
  box-shadow: 0 6px 24px rgba(94, 224, 163, 0.35);
}

.brand__name {
  font-size: 1.05rem;
}

.nav {
  display: flex;
  gap: 1.25rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-block: 0.2rem;
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--text);
  border-color: var(--accent);
  outline: none;
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  padding-block: clamp(3rem, 8vw, 6rem);
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--accent-strong);
  margin: 0 0 1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.hero__lead {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 42rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.trust-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.trust-list li {
  padding-left: 1.5rem;
  position: relative;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-dim);
}

.hero__panel {
  display: grid;
  gap: 1rem;
}

.stat-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow);
}

.stat-card--muted {
  opacity: 0.92;
}

.stat-card__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.stat-card__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.stat-card__hint {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.section {
  padding-block: clamp(3rem, 7vw, 5rem);
  border-top: 1px solid var(--border);
}

.section--alt {
  background: rgba(18, 21, 28, 0.55);
}

.section__inner {
  display: grid;
  gap: 2rem;
}

.section__inner--split {
  gap: 2.25rem;
}

@media (min-width: 800px) {
  .section__inner--split {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
}

.section__text {
  margin: 0;
  color: var(--text-muted);
  max-width: 34rem;
}

.waitlist {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 4vw, 2rem);
  box-shadow: var(--shadow);
  max-width: 36rem;
}

.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  opacity: 0;
}

.field {
  margin-bottom: 1.25rem;
}

.field--inline {
  margin-bottom: 1.5rem;
}

.field__label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}

.field__input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(10, 12, 16, 0.6);
  color: var(--text);
  font: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field__input::placeholder {
  color: rgba(154, 163, 178, 0.7);
}

.field__input:hover {
  border-color: rgba(255, 255, 255, 0.14);
}

.field__input:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.field__hint {
  margin: 0.45rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.field__error {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--danger);
}

.checkbox {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
}

.checkbox input {
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--accent-strong);
}

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

.form-note {
  margin: 0;
  flex: 1;
  min-width: 12rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    background 0.12s ease, border-color 0.12s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: linear-gradient(
    135deg,
    var(--accent-strong),
    var(--accent)
  );
  color: #042014;
  box-shadow: 0 10px 36px rgba(94, 224, 163, 0.28);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  box-shadow: 0 12px 44px rgba(94, 224, 163, 0.4);
  outline: none;
}

.btn--primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

.btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.22);
  outline: none;
}

.contact-actions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-card {
  display: grid;
  gap: 0.25rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(10, 12, 16, 0.35);
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease,
    transform 0.12s ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  border-color: rgba(94, 224, 163, 0.45);
  background: rgba(94, 224, 163, 0.06);
  outline: none;
  transform: translateY(-1px);
}

.contact-card__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.contact-card__value {
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-card__meta {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding-block: 2.5rem;
  margin-top: 2rem;
}

.site-footer__inner {
  display: grid;
  gap: 0.75rem;
}

.footer-brand {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-copy,
.footer-legal {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-legal {
  max-width: 46rem;
  line-height: 1.55;
}

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

  .btn,
  .contact-card {
    transition: none;
  }
}
