:root {
  --bg: #0a0b0d;
  --surface: #131519;
  --border: #23262d;
  --text: #e8eaed;
  --muted: #9aa0a8;
  --accent: #f5b14c;
  --accent-soft: rgba(245, 177, 76, 0.12);
  --green: #34c38f;
  --blue: #4c8dff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */

header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(10, 11, 13, 0.85);
  backdrop-filter: blur(12px);
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.brand .logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 800;
}

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

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}

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

/* ---------- Hero ---------- */

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

.hero .badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero p.lede {
  color: var(--muted);
  font-size: 19px;
  max-width: 560px;
  margin: 20px auto 36px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s, background 0.15s;
}

.btn-primary {
  background: var(--accent);
  color: #14100a;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: #1a1d23;
}

/* ---------- Features ---------- */

.section {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.section h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.section p.sub {
  color: var(--muted);
  margin-bottom: 36px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.card .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 19px;
  margin-bottom: 14px;
  background: var(--accent-soft);
}

.card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.card p {
  color: var(--muted);
  font-size: 14px;
}

/* ---------- Support ---------- */

.support-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.support-box a.email {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

/* ---------- Legal pages ---------- */

.legal {
  padding: 56px 0 80px;
}

.legal h1 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.legal .updated {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 40px;
}

.legal h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 36px 0 12px;
}

.legal p,
.legal li {
  color: #c4c8ce;
  font-size: 15.5px;
  margin-bottom: 12px;
}

.legal ul {
  padding-left: 22px;
  margin-bottom: 16px;
}

.legal a {
  color: var(--accent);
}

/* ---------- Footer ---------- */

footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 13.5px;
}

.footer-inner a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 18px;
}

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

@media (max-width: 560px) {
  .hero {
    padding: 64px 0 48px;
  }
  .nav-links {
    gap: 16px;
  }
}
