* {
  box-sizing: border-box;
}

:root {
  --bg: #09111c;
  --bg-soft: #101a29;
  --card: rgba(16, 26, 41, 0.82);
  --card-border: rgba(128, 170, 255, 0.14);
  --text: #eef4ff;
  --muted: #9fb0c8;
  --primary: #65a7ff;
  --primary-strong: #4e90ff;
  --accent: #3be0c4;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(78, 144, 255, 0.14), transparent 26%),
    radial-gradient(circle at bottom right, rgba(59, 224, 196, 0.10), transparent 24%),
    linear-gradient(180deg, #0a1320 0%, #09111c 100%);
  color: var(--text);
  position: relative;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(9, 17, 28, 0.62);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-link {
  color: inherit;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, var(--primary-strong), var(--accent));
  box-shadow: 0 10px 22px rgba(78, 144, 255, 0.25);
}

.brand-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-subtitle {
  font-size: 0.84rem;
  color: var(--muted);
}

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

.nav-links a {
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 12px;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

main {
  padding: 42px 0 64px;
}

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero,
.page-hero {
  margin-bottom: 22px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(101, 167, 255, 0.12);
  color: #cfe1ff;
  border: 1px solid rgba(101, 167, 255, 0.18);
  font-size: 0.86rem;
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.02;
  margin: 16px 0 14px;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 14px;
}

p {
  margin: 0 0 14px;
  line-height: 1.7;
  color: #d9e5f6;
}

.hero-copy,
.muted {
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #07111d;
}

.button-secondary {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--text);
}

.grid {
  display: grid;
  gap: 22px;
}

.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.text-link,
.email-link {
  color: #9fd5ff;
  font-weight: 600;
}

.clean-list {
  margin: 0;
  padding-left: 18px;
  color: #d9e5f6;
  line-height: 1.8;
}

.legal-card h2:not(:first-child) {
  margin-top: 28px;
}

.bg-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
}

.bg-glow-1 {
  top: -60px;
  left: -60px;
  background: var(--primary);
}

.bg-glow-2 {
  right: -80px;
  bottom: -60px;
  background: var(--accent);
}

@media (max-width: 760px) {
  .two-up {
    grid-template-columns: 1fr;
  }

  .nav {
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .card {
    padding: 22px;
    border-radius: 20px;
  }

  main {
    padding-top: 28px;
  }
}
