:root {
  color-scheme: dark;
  --bg: #0d0f13;
  --bg-soft: #161a21;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-border: rgba(255, 255, 255, 0.08);
  --text: #f2f4f8;
  --muted: #a6adb9;
  --accent-top: #4f5969;
  --accent-bottom: #12161d;
  --accent-line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "SF Pro Display", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, rgba(90, 102, 123, 0.24), transparent 38%),
    linear-gradient(180deg, #11141a 0%, var(--bg) 100%);
  color: var(--text);
}

a {
  color: #dce6ff;
}

.page-shell {
  width: min(1100px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 40px 0 56px;
}

.hero {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.8fr);
  align-items: stretch;
}

.brand-lockup {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.brand-mark {
  position: relative;
  width: 112px;
  height: 112px;
  flex: 0 0 auto;
  border-radius: 30px;
  background: linear-gradient(180deg, var(--accent-top), var(--accent-bottom));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 16px 40px rgba(0, 0, 0, 0.32);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 6px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  opacity: 0.9;
  -webkit-mask:
    linear-gradient(#000 0 0) top left / 22px 22px no-repeat,
    linear-gradient(#000 0 0) top right / 22px 22px no-repeat,
    linear-gradient(#000 0 0) bottom left / 22px 22px no-repeat,
    linear-gradient(#000 0 0) bottom right / 22px 22px no-repeat;
}

.brand-dots {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.brand-dots span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #f4f6fb;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: #b4bcc9;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.lede {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 22px;
  line-height: 1.4;
  color: var(--muted);
}

.hero-card,
.panel {
  border: 1px solid var(--panel-border);
  background: var(--panel);
  border-radius: 28px;
  padding: 24px;
  backdrop-filter: blur(18px);
}

.card-label {
  margin: 0 0 12px;
  color: #c6d0df;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-card h2,
.panel h3 {
  margin: 0 0 12px;
  font-size: 28px;
}

.hero-card p,
.panel p,
.panel li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.grid {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

ul {
  margin: 0;
  padding-left: 20px;
}

.status-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--accent-line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 600;
}

.muted {
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
  padding-top: 8px;
  color: var(--muted);
}

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

.legal-shell {
  width: min(860px, calc(100vw - 32px));
}

.legal-header {
  margin-bottom: 20px;
}

.legal-content .panel p {
  margin: 0 0 16px;
}

@media (max-width: 820px) {
  .page-shell {
    padding-top: 24px;
  }

  .hero,
  .two-up {
    grid-template-columns: 1fr;
  }

  .brand-lockup {
    flex-direction: column;
    gap: 18px;
  }

  h1 {
    font-size: 48px;
  }

  .lede {
    font-size: 18px;
  }

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