:root {
  --bg: #0a0a0b;
  --bg-2: #111113;
  --bg-3: #1a1a1d;
  --fg: #f5f5f4;
  --fg-2: #a8a8a3;
  --fg-3: #6b6b67;
  --accent: #ff6b2c;
  --accent-dim: rgba(255, 107, 44, 0.15);
  --border: rgba(255, 255, 255, 0.07);
  --card: #111113;
  --card-border: rgba(255, 255, 255, 0.06);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Figtree', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Navigation ───────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8125rem;
  color: var(--fg-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Hero ────────────────────────────── */
.hero {
  position: relative;
  padding: 7rem 0 6rem;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,107,44,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,44,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 100%);
}
.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.0625rem;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 460px;
}

/* ── Store Card (hero visual) ─────────── */
.hero-visual { display: flex; justify-content: center; }
.store-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  width: 100%;
  max-width: 360px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,107,44,0.08);
}
.store-card-header {
  background: var(--bg-3);
  padding: 0.75rem 1rem;
  display: flex;
  gap: 6px;
  align-items: center;
}
.store-dot { width: 12px; height: 12px; border-radius: 50%; }
.store-dot.red { background: #ff5f57; }
.store-dot.yellow { background: #ffbd2e; }
.store-dot.green { background: #28ca41; }
.store-card-body { padding: 1.25rem; }
.store-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 1rem;
}
.store-product {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0;
  border-top: 1px solid var(--border);
}
.store-product-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(255,107,44,0.2);
  flex-shrink: 0;
}
.store-product-info { flex: 1; }
.store-product-name {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--fg);
}
.store-product-price {
  font-size: 0.75rem;
  color: var(--fg-3);
  margin-top: 1px;
}
.store-badge {
  background: var(--accent);
  color: #0a0a0b;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 99px;
}
.store-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
}
.store-stat { text-align: center; padding: 0.75rem 0; }
.store-stat:not(:last-child) { border-right: 1px solid var(--border); }
.store-stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fg);
}
.store-stat-label { font-size: 0.6875rem; color: var(--fg-3); margin-top: 1px; }

/* ── Proof Strip ──────────────────────── */
.proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  gap: 0;
}
.proof-item { flex: 1; text-align: center; }
.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}
.proof-val {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}
.proof-label {
  font-size: 0.8125rem;
  color: var(--fg-3);
  margin-top: 0.5rem;
}

/* ── Features ─────────────────────────── */
.features { padding: 7rem 0; }
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.features-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1rem;
}
.features-sub {
  font-size: 1.0625rem;
  color: var(--fg-2);
  margin-bottom: 3.5rem;
  max-width: 500px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--card);
  padding: 2.5rem;
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent-dim);
  border: 1px solid rgba(255,107,44,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.feature-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 0.9375rem;
  color: var(--fg-2);
  line-height: 1.65;
}

/* ── Manifesto ────────────────────────── */
.manifesto {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 7rem 0;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.manifesto-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
}
.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.manifesto-body {
  font-size: 1rem;
  color: var(--fg-2);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}

/* ── Closing ──────────────────────────── */
.closing {
  padding: 7rem 0;
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.closing-sub {
  font-size: 1.0625rem;
  color: var(--fg-2);
  margin-bottom: 3rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.closing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.closing-tag {
  padding: 0.5rem 1.125rem;
  border: 1px solid var(--card-border);
  border-radius: 99px;
  font-size: 0.875rem;
  color: var(--fg-2);
  background: var(--card);
}

/* ── Footer ───────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.875rem;
  color: var(--fg-3);
  margin-bottom: 1rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-3);
}

/* ── Mobile ───────────────────────────── */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual { order: -1; }
  .store-card { max-width: 320px; }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .proof-inner {
    flex-direction: column;
    gap: 2.5rem;
  }
  .proof-divider {
    width: 48px; height: 1px;
  }
  .proof-item { text-align: left; }
}

@media (max-width: 480px) {
  .hero { padding: 5rem 0 4rem; }
  .features { padding: 5rem 0; }
  .manifesto { padding: 5rem 0; }
  .closing { padding: 5rem 0; }
  .closing-tags { gap: 0.5rem; }
  .closing-tag { font-size: 0.8125rem; padding: 0.4rem 0.875rem; }
}
/* ── Hero CTA buttons ─────────────────── */
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: #0a0a0b;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.15s;
}
.hero-btn-primary:hover { opacity: 0.9; }
.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border);
  color: var(--fg-2);
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.hero-btn-ghost:hover { border-color: rgba(255,255,255,0.15); color: var(--fg); }

/* ── Nav CTA ──────────────────────────── */
.nav-cta {
  padding: 0.4rem 1rem;
  background: var(--accent);
  color: #0a0a0b;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.9; }
