:root {
  --bg: #000000;
  --surface: #1c1c1e;
  --surface2: #2c2c2e;
  --hairline: rgba(84, 84, 88, 0.6);
  --text: #ffffff;
  --text2: rgba(235, 235, 245, 0.6);
  --text3: rgba(235, 235, 245, 0.3);
  --orange: #ff7a1a;
  --orange-dim: #b85410;
  --violet: #a05aff;
  --green: #3cd988;
  --max-width: 720px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

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

a {
  color: var(--orange);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */

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

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 700;
  font-size: 19px;
  color: var(--text);
}

.brand .dot {
  color: var(--orange);
}

.brand .by {
  font-weight: 400;
  font-size: 13px;
  color: var(--text2);
}

nav.site-nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-weight: 600;
}

nav.site-nav a {
  color: var(--text2);
}

nav.site-nav a:hover {
  color: var(--orange);
}

/* Hero */

.hero {
  padding: 64px 0 40px;
  text-align: center;
}

.hero h1 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}

.hero p.tagline {
  font-size: 18px;
  color: var(--text2);
  max-width: 520px;
  margin: 0 auto 28px;
}

.badge {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--hairline);
  color: var(--text2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.button {
  display: inline-block;
  background: var(--orange);
  color: #000;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 28px;
  text-decoration: none;
}

.button:hover {
  background: #ff9142;
  text-decoration: none;
}

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

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

/* Feature grid */

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 40px 0;
}

@media (max-width: 480px) {
  .features {
    grid-template-columns: 1fr;
  }
}

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

.card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
}

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

.card .icon {
  font-size: 22px;
  margin-bottom: 10px;
  display: block;
}

/* Article / legal pages */

article.legal {
  padding: 48px 0 80px;
}

article.legal h1 {
  font-size: 30px;
  margin-bottom: 4px;
}

article.legal .updated {
  color: var(--text3);
  font-size: 13px;
  margin-bottom: 32px;
}

article.legal h2 {
  font-size: 19px;
  margin: 32px 0 10px;
  color: var(--orange);
}

article.legal h3 {
  font-size: 16px;
  margin: 20px 0 8px;
}

article.legal p,
article.legal li {
  color: var(--text2);
  font-size: 15px;
}

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

article.legal strong {
  color: var(--text);
}

.callout {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--orange);
  border-radius: 12px;
  padding: 14px 18px;
  margin: 20px 0;
  font-size: 14px;
}

.callout p {
  margin: 0;
}

/* Support page */

.faq-item {
  margin-bottom: 24px;
}

.faq-item h3 {
  color: var(--text);
}

/* Footer */

footer.site {
  border-top: 1px solid var(--hairline);
  padding: 28px 0 48px;
  text-align: center;
  color: var(--text3);
  font-size: 13px;
}

footer.site nav {
  margin-bottom: 10px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

footer.site nav a {
  color: var(--text2);
  font-size: 13px;
  font-weight: 600;
}
