:root {
  --bg: #0a1220;
  --bg-alt: #0e1828;
  --panel: #122033;
  --border: #21344c;
  --text: #f5f7fb;
  --text-dim: #9bc3ff;
  --text-muted: #6b7f99;
  --accent: #f7c95b;
  --accent-dim: #c9a13e;
  --radius: 14px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

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

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

a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s;
}

a:hover {
  color: var(--accent);
}

h1,
h2,
h3,
h4 {
  color: var(--text);
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
  text-align: center;
}

h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

p {
  margin: 0 0 12px 0;
}

/* NAV */
.nav {
  border-bottom: 1px solid var(--border);
  background: rgba(10, 18, 32, 0.85);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.logo {
  color: var(--text);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.nav nav {
  display: flex;
  gap: 28px;
}

.nav nav a {
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 680px) {
  .nav nav {
    display: none;
  }
}

/* HERO */
.hero {
  padding: 96px 0 72px;
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(247, 201, 91, 0.08) 0%, transparent 60%);
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.lede {
  color: var(--text-dim);
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 620px;
  margin: 24px auto 32px;
  line-height: 1.6;
}

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

.cta-row-secondary {
  margin-top: 16px;
}

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

.store-row-center {
  margin-top: 4px;
}

.store-badge {
  align-items: center;
  background: #05070b;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  color: #ffffff;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-height: 58px;
  min-width: 190px;
  padding: 10px 18px;
  text-align: left;
  transition: border-color 0.15s, transform 0.15s, background 0.15s;
}

.store-badge:hover {
  background: #0d1118;
  border-color: var(--accent);
  color: #ffffff;
  transform: translateY(-1px);
}

.store-badge-kicker {
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
  opacity: 0.86;
}

.store-badge-name {
  display: block;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.12;
}

.small-note {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 24px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.15s;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--accent-dim);
  color: var(--bg);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-large {
  padding: 18px 36px;
  font-size: 16px;
}

/* SECTIONS */
.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-cta {
  text-align: center;
  padding: 104px 0;
}

.section-cta h2 {
  margin-bottom: 12px;
}

.section-cta p {
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 32px;
}

/* GRID CARDS */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

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

.card-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.card p {
  color: var(--text-dim);
  font-size: 15px;
  margin: 0;
}

/* STEPS */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.steps li {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 14px;
}

.steps p {
  color: var(--text-dim);
  font-size: 15px;
  margin: 0;
}

/* PRICING */
.pricing-subtitle {
  color: var(--text-dim);
  text-align: center;
  max-width: 520px;
  margin: -20px auto 40px;
}

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

.pricing-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}

.pricing-card-highlight {
  border-color: var(--accent);
  border-width: 2px;
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  margin-bottom: 4px;
  text-align: center;
}

.price {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  margin: 8px 0 0;
}

.price-period {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  margin: 0 0 20px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.pricing-card li {
  color: var(--text-dim);
  font-size: 14px;
  padding: 6px 0;
  position: relative;
  padding-left: 20px;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-footer {
  color: var(--text-muted);
  text-align: center;
  font-size: 12px;
  margin-top: 28px;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
  background: var(--bg-alt);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-grid a {
  display: block;
  padding: 4px 0;
  font-size: 14px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 10px;
}

.footer hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0 16px;
}

.copyright {
  color: var(--text-muted);
  font-size: 12px;
  margin: 0;
}

/* LEGAL PAGES */
.legal-page {
  padding: 60px 0 100px;
  max-width: 780px;
}

.legal-page h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

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

.legal-page h2 {
  text-align: left;
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-page h3 {
  font-size: 17px;
  margin-top: 24px;
}

.legal-page p,
.legal-page li {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
}

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

.legal-page li {
  margin-bottom: 8px;
}

.back-link {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 14px;
}
