/* ClassifiedLevel static landing page.
   No external fonts, scripts, trackers or third-party assets. */

:root {
  color-scheme: dark;
  --bg: #08090d;
  --panel: #11131b;
  --panel-2: #171a24;
  --text: #f5f7fb;
  --muted: #aeb6c7;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #e8eefc;
  --max: 1040px;
}

* {
  box-sizing: border-box;
}

html {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(130, 150, 255, 0.18), transparent 32rem),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06), transparent 28rem),
    var(--bg);
  color: var(--text);
}

body {
  margin: 0;
  min-height: 100vh;
}

a {
  color: var(--accent);
  text-underline-offset: 0.18em;
}

.page {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 64px 0 32px;
}

.hero {
  min-height: 58vh;
  display: grid;
  align-content: center;
  padding: 64px 0;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 11vw, 8.8rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.lead {
  max-width: 720px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  text-decoration: none;
  font-weight: 700;
}

.button.secondary {
  background: transparent;
  color: var(--text);
}

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

.card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
}

.card h2 {
  margin: 0 0 14px;
  font-size: 1.2rem;
}

.card p {
  color: var(--muted);
  line-height: 1.6;
}

.legal {
  max-width: 840px;
  padding: 40px 0 80px;
}

.legal h1 {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1;
}

.legal h2 {
  margin-top: 36px;
}

.legal p,
.legal li {
  color: var(--muted);
  line-height: 1.7;
}

.notice {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

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

@media (max-width: 820px) {
  .page {
    width: min(100% - 24px, var(--max));
    padding-top: 36px;
  }

  .hero {
    min-height: auto;
    padding: 52px 0;
  }

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