@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg: #08111f;
  --bg-soft: #0f172a;
  --surface: rgba(15, 23, 42, 0.88);
  --surface-strong: rgba(8, 15, 30, 0.96);
  --border: rgba(148, 163, 184, 0.2);
  --accent: #10b981;
  --accent-soft: rgba(16, 185, 129, 0.12);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --heading: #f8fafc;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(16, 185, 129, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.12), transparent 28%),
    linear-gradient(180deg, var(--bg), #050b14 70%);
}

a {
  color: inherit;
}

.shell {
  min-height: 100vh;
  padding: 48px 20px 80px;
}

.container {
  max-width: 960px;
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.home-link,
.nav-link {
  text-decoration: none;
  transition: color 0.2s ease;
}

.home-link:hover,
.nav-link:hover {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.panel {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(8, 15, 30, 0.96));
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero {
  padding: 36px 32px 28px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(59, 130, 246, 0.08));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  margin: 18px 0 12px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.04;
  color: var(--heading);
}

.hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.content {
  padding: 32px;
  display: grid;
  gap: 22px;
}

.section {
  padding: 22px 24px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
}

.section h2 {
  margin: 0 0 10px;
  color: var(--heading);
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
}

.section p,
.section li {
  color: var(--text);
  line-height: 1.75;
}

.section p:last-child,
.section ul:last-child {
  margin-bottom: 0;
}

.section ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.meta {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.notice {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(16, 185, 129, 0.18);
  background: rgba(16, 185, 129, 0.08);
  color: #d1fae5;
}

.notice strong {
  color: #ecfdf5;
}

@media (max-width: 720px) {
  .shell {
    padding: 24px 14px 56px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero,
  .content {
    padding: 22px;
  }

  .section {
    padding: 18px;
  }
}