:root {
  color-scheme: dark;
  --bg: #05080a;
  --bg-card: rgba(13, 20, 28, 0.65);
  --text: #f8fafc;
  --text-muted: rgba(248, 250, 252, 0.7);
  --text-dim: rgba(248, 250, 252, 0.45);
  --accent: #00f2fe;
  --accent-glow: rgba(0, 242, 254, 0.35);
  --accent-soft: rgba(0, 242, 254, 0.12);
  --gold: #e8c892;
  --gold-glow: rgba(232, 200, 146, 0.25);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --glass: rgba(10, 15, 20, 0.75);
  --shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  --shadow-sm: 0 10px 20px rgba(0, 0, 0, 0.3);
  --radius-xl: 42px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --content: min(1200px, calc(100% - 48px));
  --body-font: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", sans-serif;
}

@keyframes pulse-glow {
  0% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.1); opacity: 0.6; }
  100% { transform: scale(1); opacity: 0.4; }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--body-font);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.65;
}

/* Background Ambient Visuals */
.bg-glow-1 {
  position: fixed;
  top: -15%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(31, 111, 147, 0.25), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}

.bg-glow-2 {
  position: fixed;
  bottom: -15%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(232, 200, 146, 0.1), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-shell {
  max-width: var(--content);
  margin: 0 auto;
  padding: 40px 0 100px;
}

/* Nav */
.site-nav {
  position: sticky;
  top: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  background: var(--glass);
  backdrop-filter: blur(32px) saturate(180%);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 0 20px var(--accent-glow);
}

.brand-name {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-meta {
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

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

.locale-switch {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
  border-radius: 999px;
}

.locale-switch a {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  color: var(--text-dim);
}

.locale-switch a.active {
  background: #fff;
  color: #000;
}

/* Hero */
.hero {
  padding: 140px 0 100px;
  text-align: center;
}

.hero-preface {
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 24px;
  display: block;
}

.hero-title {
  font-size: clamp(54px, 12vw, 104px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-bottom: 36px;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: clamp(20px, 3vw, 24px);
  color: var(--text-muted);
  max-width: 840px;
  margin: 0 auto 54px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.button {
  padding: 18px 42px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 17px;
}

.button.primary {
  background: #fff;
  color: #000;
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.15);
}

.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px rgba(255, 255, 255, 0.25);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Hero Stage */
.hero-stage {
  margin-top: 100px;
  position: relative;
}

.logo-anchor {
  padding: 64px;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(40px);
  display: inline-block;
  margin-bottom: 48px;
  animation: float 6s ease-in-out infinite;
}

.logo-anchor img {
  width: 140px;
  filter: drop-shadow(0 0 40px var(--accent-glow));
}

.logo-caption {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 500;
}

.hero-aside {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.aside-metric, .aside-note {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(32px);
  text-align: left;
}

.aside-kicker {
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.aside-metric strong {
  font-size: 64px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.05em;
  display: block;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}

/* Sections */
.section {
  padding: 140px 0;
  border-top: 1px solid var(--line);
}

.section-overline {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.section-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}

.section-copy {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 860px;
  font-weight: 400;
}

/* Grids */
.three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 80px;
}

.feature {
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 0.4s ease;
}

.feature:hover {
  border-color: var(--accent);
  background: rgba(0, 242, 254, 0.03);
  transform: translateY(-8px);
}

.feature h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.feature p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* Story Grid */
.story-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  margin-top: 80px;
}

.story-panel, .quote-panel {
  padding: 60px;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(40px);
}

.ledger-lines {
  margin-top: 40px;
  display: grid;
  gap: 12px;
}

.ledger-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  border: 1px solid var(--line);
}

.ledger-title {
  font-weight: 700;
  font-size: 17px;
  display: block;
}

.ledger-note {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 4px;
}

.ledger-value {
  font-weight: 900;
  font-size: 18px;
  color: var(--gold);
}

.quote-panel blockquote {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 40px;
  letter-spacing: -0.03em;
  color: #fff;
}

/* CTA */
.cta-panel {
  margin-top: 140px;
  padding: 100px 40px;
  background: linear-gradient(135deg, #0f1c2a 0%, #05080a 100%);
  border: 1px solid var(--accent-soft);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 100px rgba(0, 242, 254, 0.05);
}

.cta-panel h2 {
  font-size: clamp(32px, 8vw, 64px);
  font-weight: 900;
  margin-bottom: 32px;
}

/* Footer */
.site-footer {
  margin-top: 140px;
  padding-top: 80px;
  padding-bottom: 100px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand strong {
  font-size: 22px;
  font-weight: 900;
  display: block;
  margin-bottom: 16px;
}

.footer-brand div {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 440px;
}

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

.footer-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: #fff;
}

/* Legal & Support */
.legal-shell {
  padding: 60px;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(40px);
}

.legal-section {
  margin-top: 60px;
}

.legal-section h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
}

.support-card {
  padding: 48px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

/* Mobile */
@media (max-width: 768px) {
  .site-nav { top: 12px; padding: 10px 20px; }
  .nav-links { display: none; }
  .hero-title { font-size: 52px; }
  .hero-aside { grid-template-columns: 1fr; }
  .three-up { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .legal-shell { padding: 32px 24px; }
  .site-footer { flex-direction: column; gap: 60px; }
  .cta-actions { flex-direction: column; }
}

/* Legal & Support Specifics */
.legal-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.summary-chip {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

.legal-stack {
  display: grid;
  gap: 40px;
}

.back-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
  display: inline-block;
}

.email-link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 700;
}

.legal-shell ul {
  padding-left: 20px;
}

.legal-shell li {
  margin-bottom: 12px;
  color: var(--text-muted);
}
