:root {
  --bg: #091018;
  --bg-2: #101822;
  --panel: rgba(18, 24, 33, 0.92);
  --panel-2: rgba(10, 16, 23, 0.94);
  --text: #eef5fb;
  --muted: #a7b8ca;
  --accent: #39c6ff;
  --accent-2: #2f80ed;
  --border: #2a3644;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(57, 198, 255, 0.12), transparent 25%),
    radial-gradient(circle at top right, rgba(47, 128, 237, 0.08), transparent 20%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.page-shell {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px;
}

.hero,
.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero {
  padding: 22px;
  margin-bottom: 18px;
}

.panel {
  padding: 22px;
  margin-bottom: 18px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 74px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.28));
}

.brand-lockup strong {
  display: block;
  font-size: 20px;
  color: var(--text);
}

.eyebrow {
  margin: 0 0 8px 0;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.topbar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.ghost-link,
.member-signin,
.primary-cta,
.secondary-cta {
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  transition: transform 120ms ease, border-color 120ms ease, background 120ms ease, color 120ms ease;
}

.ghost-link {
  color: #9edcff;
  padding: 10px 2px;
}

.member-signin,
.secondary-cta {
  border: 1px solid rgba(63, 118, 162, 0.55);
  background: linear-gradient(180deg, rgba(15, 33, 48, 0.98) 0%, rgba(10, 20, 30, 0.96) 100%);
  color: #dff3ff;
  padding: 11px 16px;
}

.primary-cta {
  border: 1px solid rgba(82, 177, 237, 0.72);
  background: linear-gradient(180deg, #1c6ea3 0%, #134d73 100%);
  color: #f2f9ff;
  padding: 12px 18px;
}

.member-signin:hover,
.secondary-cta:hover,
.primary-cta:hover,
.ghost-link:hover {
  transform: translateY(-1px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
  gap: 18px;
}

.hero-copy h1,
.section-head h2 {
  margin: 0;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.hero-copy h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  max-width: 900px;
}

.hero-text,
.waitlist-copy,
.copy-block p,
.info-card p {
  color: #d7e4ef;
  line-height: 1.75;
}

.hero-text {
  margin: 18px 0 0 0;
  font-size: 18px;
  max-width: 760px;
}

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

.hero-note,
.waitlist-note {
  margin: 16px 0 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.hero-card,
.info-card {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.hero-card {
  padding: 20px;
}

.card-kicker {
  margin: 0 0 14px 0;
  color: #8fdcff;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.feature-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
  color: #dff0fb;
  line-height: 1.6;
}

.section-head {
  margin-bottom: 16px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}

.info-card {
  padding: 18px;
}

.info-card h3 {
  margin: 0 0 10px 0;
  color: #8fdcff;
  font-size: 20px;
}

.info-card p {
  margin: 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.copy-block p {
  margin: 0 0 14px 0;
}

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

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(10, 16, 23, 0.96);
  border: 1px solid var(--border);
  color: #dff3ff;
  font-weight: 700;
}

.waitlist-panel {
  background:
    radial-gradient(circle at top right, rgba(57, 198, 255, 0.09), transparent 26%),
    rgba(18, 24, 33, 0.92);
}

a[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.7;
}


.site-footer {
  margin-bottom: 18px;
  padding: 22px;
  background: rgba(18, 24, 33, 0.92);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
  gap: 18px;
  margin-bottom: 18px;
}

.footer-brand-block h2,
.footer-contact-block h3 {
  margin: 0;
  color: var(--accent);
}

.footer-brand-block h2 {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.2;
}

.footer-contact-block p,
.footer-disclaimer p {
  margin: 0;
  color: #d7e4ef;
  line-height: 1.7;
}

.footer-contact-block a {
  color: #dff3ff;
  font-weight: 700;
  text-decoration: none;
}

.footer-contact-block a:hover {
  color: var(--accent);
}

.footer-disclaimer {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 10px;
}

.footer-meta {
  color: var(--muted) !important;
}

@media (max-width: 980px) {
  .hero-grid,
  .two-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-shell {
    padding: 14px;
  }

  .hero,
  .panel {
    padding: 18px;
    border-radius: 18px;
  }

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

  .topbar-actions {
    justify-content: flex-start;
  }

  .brand-logo {
    width: 62px;
  }
}
