:root {
  --bg: #0b0b0f;
  --card: #15151c;
  --text: #f5f5f7;
  --muted: #a9a9b2;
  --accent: #ff7a00;
  --accent-2: #ffb000;
  --border: #2a2a35;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(255, 122, 0, 0.15), transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.7;
}

a { color: inherit; }

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

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 11, 15, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.25rem;
}

.logo {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #111;
  font-size: 1.4rem;
  font-weight: 900;
}

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

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

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

.hero {
  padding: 96px 0 72px;
  text-align: center;
}

.eyebrow {
  color: var(--accent-2);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .85rem;
}

h1 {
  margin: 14px auto 18px;
  max-width: 850px;
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  line-height: 1.02;
}

.hero p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.cta-row {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--border);
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #111;
  border: 0;
}

.button.secondary { background: var(--card); }

.section { padding: 40px 0 72px; }

.section h2 {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin-bottom: 28px;
}

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

.card {
  background: rgba(21, 21, 28, 0.9);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
}

.card h3 { margin-top: 0; }

.card p { color: var(--muted); margin-bottom: 0; }

.page {
  padding: 64px 0 80px;
}

.page h1 {
  font-size: clamp(2.3rem, 6vw, 4rem);
  text-align: left;
  margin-left: 0;
}

.page .lead {
  color: var(--muted);
  max-width: 780px;
}

.legal-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin: 14px 0;
  overflow: hidden;
}

.legal-section summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
}

.legal-section .content {
  padding: 0 20px 20px;
  color: var(--muted);
}

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

footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 800px) {
  nav { align-items: flex-start; padding: 14px 0; }
  .links { justify-content: flex-end; }
  .grid { grid-template-columns: 1fr; }
  .hero { padding-top: 70px; }
}
