:root {
  --bg: #070a12;
  --bg-soft: #0d1322;
  --text: #f5f7fb;
  --muted: #9aa6b8;
  --line: rgba(255, 255, 255, 0.12);
  --panel: rgba(255, 255, 255, 0.055);
  --panel-hover: rgba(255, 255, 255, 0.085);
  --accent: #d7ff72;
  --accent-soft: rgba(215, 255, 114, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background:
    radial-gradient(circle at 18% 14%, rgba(215, 255, 114, 0.10), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(92, 132, 255, 0.11), transparent 30%),
    linear-gradient(135deg, #05070d 0%, #0a1020 48%, #05070d 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    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: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.page {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.header {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.03em;
}

nav {
  display: flex;
  gap: 22px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--text);
}

.hero {
  flex: 1;
  max-width: 840px;
  padding: 110px 0 80px;
}

.status {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #dce3ee;
  background: rgba(255,255,255,0.045);
  font-size: 14px;
}

.status span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(215, 255, 114, 0.55);
}

h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(54px, 7.4vw, 102px);
  line-height: 0.95;
  letter-spacing: -0.075em;
  font-weight: 760;
}

.hero p {
  max-width: 680px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

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

.actions a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 650;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.actions a:hover {
  transform: translateY(-2px);
}

.primary {
  color: #0b1008;
  background: var(--accent);
}

.secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.045);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 0 84px;
}

article {
  min-height: 172px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  backdrop-filter: blur(18px);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

article:hover {
  transform: translateY(-3px);
  background: var(--panel-hover);
  border-color: rgba(255,255,255,0.18);
}

article h2 {
  margin: 0 0 14px;
  font-size: 18px;
  letter-spacing: -0.035em;
}

article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 34px;
  color: rgba(255,255,255,0.45);
  font-size: 14px;
}

@media (max-width: 760px) {
  .page {
    width: min(100% - 28px, 1120px);
  }

  .header {
    height: auto;
    padding: 26px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  nav {
    gap: 16px;
  }

  .hero {
    padding: 72px 0 54px;
  }

  .cards {
    grid-template-columns: 1fr;
    padding-bottom: 54px;
  }

  footer {
    flex-direction: column;
  }
}
