:root {
  color-scheme: dark;
  --bg: #071225;
  --panel: rgba(14, 31, 55, 0.88);
  --panel-strong: rgba(18, 44, 76, 0.94);
  --border: rgba(146, 181, 230, 0.22);
  --text: #f4f8ff;
  --muted: #bfd0ea;
  --soft: #8ea3c2;
  --accent: #54d6d7;
  --accent-strong: #9ff5de;
  --warning: #ffd86b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 6%, rgba(84, 214, 215, 0.18), transparent 34rem),
    radial-gradient(circle at 88% 0%, rgba(255, 216, 107, 0.08), transparent 30rem),
    linear-gradient(180deg, #071225 0%, #08162b 46%, #061020 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(7, 18, 37, 0.78);
  border-bottom: 1px solid rgba(146, 181, 230, 0.14);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: clamp(214px, 20vw, 296px);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(2, 8, 19, 0.36));
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.nav-links a,
.footer-links a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
  text-decoration: none;
}

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

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 880px;
  margin: 0;
  color: var(--text);
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.98;
}

.lede {
  max-width: 790px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.content-card {
  margin: 28px 0 72px;
  padding: clamp(22px, 4vw, 42px);
  background: linear-gradient(145deg, var(--panel-strong), var(--panel));
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.legal-section + .legal-section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(146, 181, 230, 0.16);
}

h2 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.12;
}

h3 {
  margin: 22px 0 8px;
  color: var(--text);
  font-size: 1.05rem;
}

p {
  margin: 0 0 14px;
  color: var(--muted);
}

ul,
ol {
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

li + li {
  margin-top: 9px;
}

.notice {
  margin: 18px 0 0;
  padding: 16px 18px;
  background: rgba(255, 216, 107, 0.1);
  border: 1px solid rgba(255, 216, 107, 0.32);
  border-radius: 18px;
  color: #ffe8a8;
}

.contact-card {
  margin-top: 18px;
  padding: 18px;
  background: rgba(84, 214, 215, 0.1);
  border: 1px solid rgba(84, 214, 215, 0.28);
  border-radius: 20px;
}

.contact-card a {
  color: var(--accent-strong);
  font-weight: 850;
}

.footer {
  border-top: 1px solid rgba(146, 181, 230, 0.14);
  color: var(--soft);
}

.footer-inner {
  align-items: flex-start;
}

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

  .hero {
    padding-top: 48px;
  }

  .content-card {
    border-radius: 22px;
  }
}
