:root {
  color-scheme: dark;
  --bg: #121019;
  --bg-soft: #17131f;
  --card: #1d1927;
  --card-strong: #251f33;
  --text: #f7f2ff;
  --muted: rgba(247, 242, 255, 0.72);
  --subtle: rgba(247, 242, 255, 0.56);
  --line: rgba(255, 255, 255, 0.1);
  --purple: #9d6cff;
  --pink: #ff5f9e;
  --gold: #e8c36a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.75;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 0%, rgba(157, 108, 255, 0.18), transparent 34rem),
    radial-gradient(circle at 95% 12%, rgba(255, 95, 158, 0.1), transparent 28rem),
    var(--bg);
}

a {
  color: inherit;
}

.site-shell {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 28px 20px 44px;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(157, 108, 255, 0.24), rgba(255, 95, 158, 0.14));
  color: var(--gold);
  font-size: 22px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.brand-name {
  font-size: 18px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

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

.nav a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.nav a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.03);
}

.nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.hero {
  margin: 56px 0 30px;
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    var(--card);
  box-shadow: var(--shadow);
}

.eyebrow {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

h1 {
  margin: 14px 0 12px;
  font-size: clamp(36px, 9vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 3.6vw, 22px);
}

.status-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  border: 1px solid rgba(232, 195, 106, 0.34);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--gold);
  background: rgba(232, 195, 106, 0.08);
  font-weight: 700;
}

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

.card,
.content-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(29, 25, 39, 0.9);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.card {
  padding: 22px;
}

.card h2,
.card h3 {
  margin-top: 0;
}

.card p,
.content-card p,
.content-card li {
  color: var(--muted);
}

.content-card {
  margin-top: 34px;
  padding: clamp(24px, 5vw, 42px);
}

.content-card h1 {
  font-size: clamp(30px, 7vw, 48px);
}

.content-card h2 {
  margin-top: 2.1em;
  border-top: 1px solid var(--line);
  padding-top: 1.25em;
  font-size: 22px;
}

.content-card h2:first-of-type {
  margin-top: 1.2em;
}

.content-card ul,
.content-card ol {
  padding-left: 1.3em;
}

.notice {
  border: 1px solid rgba(255, 95, 158, 0.28);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255, 95, 158, 0.08);
  color: var(--muted);
}

.meta {
  color: var(--subtle);
  font-size: 14px;
}

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

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--text);
  background: var(--card-strong);
  text-decoration: none;
  font-weight: 700;
}

.button-link.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--purple), var(--pink));
}

.site-footer {
  margin-top: 44px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--subtle);
  font-size: 14px;
}

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

@media (max-width: 720px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .nav {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .nav a {
    min-width: 0;
    text-align: center;
    font-size: 14px;
  }
}
