:root {
  color-scheme: dark;
  --bg: #07070b;
  --panel: rgba(17, 17, 23, 0.84);
  --panel-strong: rgba(23, 11, 15, 0.92);
  --line: rgba(209, 26, 58, 0.34);
  --line-soft: rgba(255, 255, 255, 0.08);
  --red: #d11a3a;
  --red-soft: #ff5c75;
  --red-dark: #7a0015;
  --text: #f7f7f8;
  --muted: #b7b7c2;
  --dim: #858593;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(209, 26, 58, 0.16), transparent 34rem),
    linear-gradient(135deg, #07070b 0%, #12070b 62%, #07070b 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 76%);
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 56px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 0 44px rgba(209, 26, 58, 0.34);
  font-size: 24px;
  font-weight: 950;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.nav-links a,
.pill {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 10px 13px;
  color: #dddde4;
  background: rgba(255, 255, 255, 0.055);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-links a:hover,
.pill:hover {
  border-color: var(--line);
  background: rgba(209, 26, 58, 0.14);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 22px;
  align-items: stretch;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.44), inset 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
}

.hero-copy {
  padding: 40px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: 58px;
  letter-spacing: 0;
}

h2 {
  font-size: 38px;
  letter-spacing: 0;
}

h3 {
  font-size: 19px;
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 17px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 16px 42px rgba(209, 26, 58, 0.32);
}

.button.secondary {
  border-color: var(--line-soft);
  background: rgba(255, 255, 255, 0.06);
}

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

.status-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(209, 26, 58, 0.14), transparent 42%),
    var(--panel-strong);
}

.stat-row {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.stat {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.055);
}

.stat span {
  display: block;
  color: var(--dim);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.stat strong {
  display: block;
  margin-top: 5px;
  font-size: 24px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.steps {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.card {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.052);
}

.step {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 8px 14px;
  align-items: start;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.step span {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  background: rgba(209, 26, 58, 0.16);
  font-weight: 950;
}

.step h2 {
  font-size: 20px;
}

.step p {
  margin: 0;
}

.notice {
  display: grid;
  gap: 4px;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(209, 26, 58, 0.12);
}

.notice strong {
  color: #fff;
}

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

.notice.success {
  border-color: rgba(34, 197, 94, 0.46);
  background: rgba(34, 197, 94, 0.1);
}

.notice.warn {
  border-color: rgba(255, 176, 32, 0.5);
  background: rgba(255, 176, 32, 0.1);
}

.notice.error {
  border-color: rgba(255, 92, 117, 0.5);
  background: rgba(209, 26, 58, 0.14);
}

.section {
  margin-top: 28px;
  padding: 28px;
}

.content {
  max-width: 820px;
  margin: 0 auto;
}

.content h1 {
  font-size: 46px;
}

.content h2 {
  margin-top: 28px;
  font-size: 26px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
  color: var(--dim);
  font-size: 14px;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 34px;
  }

  .nav-links {
    justify-content: flex-start;
  }

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

  .step {
    grid-template-columns: 1fr;
  }

  .step span {
    grid-row: auto;
  }

  .hero-copy {
    padding: 26px;
  }

  h1 {
    font-size: 38px;
  }

  h2,
  .content h1 {
    font-size: 30px;
  }
}
