:root {
  --bg: #07101f;
  --bg-alt: #101a34;
  --bg-soft: rgba(255, 255, 255, 0.03);
  --card: rgba(255, 255, 255, 0.06);
  --card-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.14);
  --text: #eef2ff;
  --muted: #bfc6dd;
  --accent: #6e7cff;
  --accent-2: #31d0aa;
  --accent-3: #7f8cff;
  --danger: #ff5f73;
  --success: #38d39f;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(110, 124, 255, 0.22) 0%, transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(49, 208, 170, 0.12) 0%, transparent 24%),
    linear-gradient(180deg, #111b3b 0%, var(--bg) 38%, #050a14 100%);
  line-height: 1.55;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow { width: min(780px, calc(100% - 32px)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7, 16, 31, 0.76);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
}

.nav nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav nav a {
  color: rgba(238, 242, 255, 0.9);
  font-size: 0.95rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand:hover { text-decoration: none; }

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 7px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 10px 26px rgba(49, 208, 170, 0.18), 0 10px 26px rgba(110, 124, 255, 0.2);
}

.brand-dot {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
}

.brand-dot:nth-child(3) {
  grid-column: 1 / span 2;
  width: 48%;
  justify-self: center;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1;
}

.brand-subtext {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1;
}

.hero {
  padding: 80px 0 44px;
}

.hero-grid,
.two-col,
.footer-wrap,
.field-row,
.grid-3 {
  display: grid;
  gap: 24px;
}

.hero-grid,
.two-col {
  grid-template-columns: 1.2fr 0.95fr;
  align-items: start;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  font-size: 0.78rem;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(49, 208, 170, 0.2);
  border-radius: 999px;
  background: rgba(49, 208, 170, 0.08);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-2);
  box-shadow: 0 0 0 6px rgba(49, 208, 170, 0.08);
}

h1, h2, h3 {
  line-height: 1.1;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.4rem);
  max-width: 9ch;
}
h2 { font-size: clamp(1.65rem, 3vw, 2.3rem); }
h3 { font-size: 1.15rem; }

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-badge,
.hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid var(--border);
}

.hero-badge {
  background: linear-gradient(90deg, rgba(110, 124, 255, 0.22), rgba(49, 208, 170, 0.22));
}

.hero-link {
  background: rgba(255, 255, 255, 0.03);
}

.hero-link:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
}

.section {
  padding: 36px 0 60px;
}

.alt {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.card {
  background: linear-gradient(180deg, var(--card-strong) 0%, var(--card) 100%);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.card h2,
.card h3 {
  margin-bottom: 12px;
}

.checklist,
.stats-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.checklist li,
.stats-card li,
.content-page li {
  margin-bottom: 8px;
}

.form-card {
  padding: 30px;
  background: linear-gradient(180deg, rgba(20, 29, 59, 0.92) 0%, rgba(10, 16, 32, 0.96) 100%);
}

.form-card > p {
  color: var(--muted);
}

.note { align-self: start; }

.section-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 18px;
}

.section-title-wrap p {
  color: var(--muted);
  max-width: 55ch;
  margin: 0;
}

.field { display: flex; flex-direction: column; gap: 8px; }
label { font-weight: 700; }
input {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(7, 10, 22, 0.58);
  color: var(--text);
  border-radius: 14px;
  padding: 15px 16px;
  font-size: 1rem;
}
input::placeholder { color: #9ca6c6; }
input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(110, 124, 255, 0.18);
}

.consent-box {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
  margin: 18px 0 0;
  padding: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  font-weight: 400;
}

.consent-box input {
  margin-top: 2px;
  width: 22px;
  height: 22px;
  padding: 0;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 22px 0;
}

.smallprint {
  color: var(--muted);
  font-size: 0.94rem;
}

button {
  appearance: none;
  border: 0;
  border-radius: 16px;
  padding: 16px 22px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #08111f;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  cursor: pointer;
  width: 100%;
  margin-top: 8px;
  box-shadow: 0 14px 26px rgba(49, 208, 170, 0.18);
}

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

.message {
  display: none;
  margin: 0 0 18px;
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 700;
}

.message.error {
  display: block;
  background: rgba(255, 95, 115, 0.15);
  border: 1px solid rgba(255, 95, 115, 0.45);
  color: #ffd2d8;
}

.message.success {
  display: block;
  background: rgba(56, 211, 159, 0.15);
  border: 1px solid rgba(56, 211, 159, 0.45);
  color: #dbfff2;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 24px 0 40px;
}

.footer-wrap {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.footer-wrap p {
  color: rgba(238, 242, 255, 0.78);
}

.footer-wrap nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.content-page {
  padding: 60px 0 80px;
}

.content-page .card p,
.content-page .card li {
  color: var(--muted);
}

.content-page .card h1 {
  max-width: none;
}

@media (max-width: 860px) {
  .hero-grid,
  .two-col,
  .grid-3,
  .footer-wrap,
  .section-title-wrap {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-top: 54px;
  }

  h1 {
    max-width: none;
  }
}
