/* === TOKENS === */
:root {
  --bg: #0f0f14;
  --surface: #111118;
  --surface-raised: #18181f;
  --border: #1e1e2a;
  --fg: #e8e8f0;
  --fg-muted: #8888a0;
  --fg-dim: #444460;
  --accent: #00e5ff;
  --accent-dim: rgba(0, 229, 255, 0.12);
  --accent-glow: rgba(0, 229, 255, 0.35);
  --gold: #f5c542;
  --gold-dim: rgba(245, 197, 66, 0.15);
  --red: #ff4560;
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* === RESET & BASE === */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg); font-family: var(--font-body); font-size: 1rem; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: var(--accent); text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; }

/* === MANIFESTO === */
.manifesto {
  position: relative;
  padding: 100px 24px 120px;
  text-align: center;
  overflow: hidden;
}
.manifesto-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(0,229,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.manifesto-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.manifesto-eyebrow { margin-bottom: 28px; }
.badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,255,0.25);
  padding: 6px 16px;
  border-radius: 100px;
}
h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}
.manifesto-lede {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}
.manifesto-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 40px;
  max-width: 640px;
  margin: 0 auto;
}
.stat { text-align: center; flex: 1; }
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.stat-label { font-size: 0.75rem; color: var(--fg-muted); }
.stat-divider { width: 1px; height: 40px; background: var(--border); flex: 0 0 auto; }

/* === SHOWCASE === */
.showcase { padding: 80px 24px; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.showcase-inner { max-width: 960px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-header p { font-size: 1rem; color: var(--fg-muted); max-width: 480px; margin: 0 auto; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 700px) {
  .product-grid { grid-template-columns: 1fr; gap: 16px; }
}
.product-card {
  position: relative;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.product-card:hover { border-color: rgba(0,229,255,0.3); }
.card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, hsl(var(--card-hue), 80%, 60%, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.card-set-badge {
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 20px;
}
.card-visual {
  width: 80px;
  height: 110px;
  background: linear-gradient(135deg, hsl(var(--card-hue), 60%, 18%) 0%, hsl(calc(var(--card-hue) + 40), 50%, 22%) 100%);
  border: 1px solid hsl(var(--card-hue), 50%, 30%);
  border-radius: 8px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-chip {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  color: hsl(var(--card-hue), 70%, 65%);
  opacity: 0.5;
}
.card-shimmer {
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer { 0% { left: -100%; } 100% { left: 200%; } }
.card-info h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.card-info p { font-size: 0.85rem; color: var(--fg-muted); margin-bottom: 16px; line-height: 1.5; }
.card-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.price-indicator { font-family: var(--font-display); font-size: 0.8rem; font-weight: 600; color: var(--accent); }
.in-stock {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #00c853;
  background: rgba(0, 200, 83, 0.12);
  border: 1px solid rgba(0, 200, 83, 0.25);
  padding: 3px 8px;
  border-radius: 4px;
}
.showcase-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--fg-dim);
}
.trust-sep { color: var(--border); }

/* === PRICING === */
.pricing { padding: 100px 24px; }
.pricing-inner { max-width: 700px; margin: 0 auto; }
.pricing .section-header { text-align: left; margin-bottom: 48px; }
.pricing-breakdown {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
}
.breakdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.breakdown-row:last-child { border-bottom: none; }
.breakdown-row.highlight-row { margin-top: 8px; padding-top: 24px; }
.breakdown-label { display: flex; align-items: center; gap: 14px; font-size: 0.95rem; color: var(--fg-muted); }
.label-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
}
.source { background: var(--accent-dim); border: 1px solid rgba(0,229,255,0.2); }
.fee { background: var(--gold-dim); border: 1px solid rgba(245,197,66,0.2); }
.total { background: rgba(0, 200, 83, 0.12); border: 1px solid rgba(0, 200, 83, 0.2); }
.breakdown-value { font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; color: var(--fg-muted); }
.breakdown-value.accent { color: var(--gold); }
.breakdown-value.total { color: #00c853; font-size: 1rem; }

.comparison {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 600px) { .comparison { flex-direction: column; } .comparison-arrow { transform: rotate(90deg); } }
.comparison-block {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.undercut { border-color: rgba(255,69,96,0.2); }
.comparison-block.poke { border-color: rgba(0,229,255,0.25); background: var(--accent-dim); }
.comp-label { display: block; font-size: 0.7rem; font-weight: 700; font-family: var(--font-display); letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-dim); margin-bottom: 8px; }
.comp-stores { display: block; font-size: 0.9rem; font-weight: 600; color: var(--fg); margin-bottom: 4px; }
.comp-note { display: block; font-size: 0.75rem; color: var(--fg-muted); }
.undercut .comp-note { color: var(--red); }
.poke .comp-note { color: var(--accent); }
.comparison-arrow { font-size: 1.4rem; color: var(--fg-dim); flex-shrink: 0; }

/* === PROCESS === */
.process { padding: 80px 24px; background: var(--surface); border-top: 1px solid var(--border); }
.process-inner { max-width: 760px; margin: 0 auto; }
.process .section-header { text-align: left; margin-bottom: 56px; }
.process-steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,255,0.2);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.step-content p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.6; }

/* === CLOSING === */
.closing {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
}
.closing-glow {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(0,229,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.closing h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.closing p {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === FOOTER === */
.footer { padding: 48px 24px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 960px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
.footer-logo {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.footer-brand p { font-size: 0.85rem; color: var(--fg-dim); line-height: 1.6; }
.footer-meta { display: flex; flex-direction: column; gap: 6px; text-align: right; }
.footer-meta span { font-size: 0.75rem; color: var(--fg-dim); }
@media (max-width: 600px) { .footer-meta { text-align: left; } }
