:root {
  --bg: #0a090f;
  --surface: #13111c;
  --border: rgba(255,255,255,0.08);
  --accent: #f0a500;
  --accent2: #e05c00;
  --text: #f0edf8;
  --text2: #9b95b0;
  --text3: #5a5370;
  --radius: 14px;
  --max: 760px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { opacity: 0.8; }

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,9,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
}

.nav-logo img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

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

.nav-links a {
  color: var(--text2);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}

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

/* CONTAINER */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* HERO */
.hero {
  text-align: center;
  padding: 96px 24px 80px;
}

.hero-icon {
  width: 120px;
  height: 120px;
  border-radius: 26px;
  margin: 0 auto 28px;
  display: block;
  box-shadow: 0 20px 60px rgba(240,165,0,0.25), 0 4px 16px rgba(0,0,0,0.6);
}

.hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 30%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s, opacity 0.15s;
  cursor: pointer;
}

.btn:hover { transform: translateY(-1px); opacity: 0.9; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  -webkit-text-fill-color: #fff;
  box-shadow: 0 8px 24px rgba(240,165,0,0.3);
}

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

.btn-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FEATURES GRID */
.features {
  padding: 64px 0;
}

.section-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 48px;
}

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

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

.card-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

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

.card p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
}

/* FORMATS */
.formats {
  padding: 48px 0;
  text-align: center;
}

.format-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
}

/* DIVIDER */
hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* FOOTER */
footer {
  padding: 40px 24px;
  text-align: center;
  color: var(--text3);
  font-size: 13px;
}

footer a { color: var(--text3); }
footer a:hover { color: var(--text2); opacity: 1; }

.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

/* SUPPORT PAGE */
.page-header {
  padding: 64px 24px 48px;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.page-header p {
  color: var(--text2);
  font-size: 17px;
}

.faq { padding: 0 0 80px; }

.faq-group { margin-bottom: 40px; }

.faq-group h2 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 10px;
}

.faq-item h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.65;
}

.faq-item code {
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 13px;
  font-family: "SF Mono", monospace;
}

/* LEGAL PAGES */
.legal {
  padding: 0 24px 80px;
  max-width: var(--max);
  margin: 0 auto;
}

.legal h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 36px 0 10px;
}

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

.legal ul {
  padding-left: 20px;
  margin-top: 8px;
}

.legal li { margin-bottom: 6px; }

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