:root {
  color-scheme: dark;
  --background: #07111f;
  --background-deep: #050b14;
  --card: #111c2e;
  --card-soft: #17243a;
  --border: #263854;
  --text: #ffffff;
  --muted: #aab6c5;
  --green: #19c37d;
  --green-soft: rgba(25, 195, 125, 0.13);
  --gold: #ffc857;
  --danger: #ff5c6c;
  --shadow: rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background-deep);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(25, 195, 125, 0.12), transparent 32rem),
    linear-gradient(180deg, var(--background), var(--background-deep));
}

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(7, 17, 31, 0.88);
  border-bottom: 1px solid rgba(38, 56, 84, 0.78);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid rgba(25, 195, 125, 0.35);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  color: var(--muted);
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: var(--green);
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 28px;
  align-items: center;
  padding: 78px 0 48px;
}

.hero-content,
.hero-panel,
.card,
.legal-section,
.notice {
  border: 1px solid rgba(38, 56, 84, 0.88);
  border-radius: 22px;
  background: rgba(17, 28, 46, 0.82);
  box-shadow: 0 20px 45px var(--shadow);
}

.hero-content {
  padding: clamp(28px, 6vw, 58px);
}

.hero-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(38px, 8vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.hero-claim {
  max-width: 720px;
  margin-bottom: 12px;
  color: var(--text);
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 900;
  line-height: 1.16;
}

.hero-copy,
.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  color: var(--text);
  background: var(--card-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 900;
}

.button:hover {
  color: var(--text);
  border-color: rgba(25, 195, 125, 0.55);
  text-decoration: none;
}

.button.primary {
  color: var(--background-deep);
  background: var(--green);
  border-color: var(--green);
}

.metric-card {
  padding: 18px;
  background: rgba(23, 36, 58, 0.88);
  border: 1px solid rgba(38, 56, 84, 0.8);
  border-radius: 18px;
}

.metric-label {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 8px 0 30px;
}

.card {
  padding: 22px;
}

.card p,
.legal-section p,
.notice p,
li {
  color: var(--muted);
}

.page {
  padding: 58px 0 44px;
}

.compact-page {
  min-height: 60vh;
}

.legal-section,
.notice {
  margin-top: 18px;
  padding: 22px;
}

.notice {
  margin-bottom: 42px;
  border-color: rgba(255, 200, 87, 0.32);
  background: rgba(255, 200, 87, 0.08);
}

ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid rgba(38, 56, 84, 0.78);
  background: rgba(5, 11, 20, 0.78);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

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

.footer-links a {
  color: var(--muted);
}

@media (max-width: 820px) {
  .nav,
  .footer-content {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero {
    grid-template-columns: 1fr;
    padding: 34px 0 28px;
  }

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

  .container {
    width: min(100% - 28px, 1120px);
  }
}

@media (max-width: 520px) {
  .hero-content,
  .card,
  .legal-section,
  .notice {
    border-radius: 18px;
    padding: 18px;
  }

  .actions,
  .button {
    width: 100%;
  }

  h1 {
    font-size: 40px;
  }
}
