/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0f1623;
  --bg-2: #141c2d;
  --bg-3: #1a2438;
  --fg: #e8e4d9;
  --fg-muted: #8b93a7;
  --accent: #f59e0b;
  --accent-dim: #b47408;
  --accent-glow: rgba(245, 158, 11, 0.12);
  --font-head: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent-dim); border-radius: 3px; }

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(15, 22, 35, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.1);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 40px 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle at center, rgba(245,158,11,0.08) 0%, transparent 70%);
  animation: pulse-glow 6s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,158,11,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 60% 40%, black 30%, transparent 80%);
}
.hero-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.eyebrow-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 32px;
}
.headline-accent {
  color: var(--accent);
}
.hero-lede {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-value {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(245,158,11,0.2);
}

/* === PROOF BAR === */
.proof {
  background: var(--bg-2);
  border-top: 1px solid rgba(245,158,11,0.1);
  border-bottom: 1px solid rgba(245,158,11,0.1);
  padding: 48px 40px;
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.proof-stat { flex: 1; min-width: 200px; }
.proof-number {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.proof-label { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.5; }
.proof-divider {
  width: 1px;
  height: 60px;
  background: rgba(245,158,11,0.15);
}

/* === SECTION LABEL === */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* === FEATURES === */
.features {
  padding: 120px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.features-header {
  margin-bottom: 72px;
}
.features-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.feature-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.feature-item:last-child { border-bottom: none; }
.feature-item:hover { background: rgba(245,158,11,0.03); }
.feature-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(245,158,11,0.15);
  letter-spacing: -0.03em;
  line-height: 1;
  padding-top: 4px;
}
.feature-body { padding-right: 40px; }
.feature-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.feature-desc {
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.feature-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.feature-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* === STACK === */
.stack {
  background: var(--bg-2);
  padding: 120px 40px;
  border-top: 1px solid rgba(245,158,11,0.06);
}
.stack-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.stack-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.stack-body {
  color: var(--fg-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}
.stack-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stack-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  transition: border-color 0.2s, background 0.2s;
}
.stack-item:hover {
  border-color: rgba(245,158,11,0.25);
  background: rgba(245,158,11,0.04);
}
.stack-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,158,11,0.1);
  border-radius: 8px;
}
.stack-text {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
}
.stack-text strong {
  color: var(--fg);
  font-weight: 600;
}

/* === MANIFESTO === */
.manifesto {
  padding: 120px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.manifesto-inner { max-width: 820px; }
.manifesto-quote {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--fg);
  margin-bottom: 40px;
  padding-left: 32px;
  border-left: 3px solid var(--accent);
}
.manifesto-body {
  color: var(--fg-muted);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 40px;
}
.manifesto-outro {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.01em;
}

/* === CLOSING === */
.closing {
  background: var(--bg-2);
  padding: 120px 40px;
  border-top: 1px solid rgba(245,158,11,0.06);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 72px;
  line-height: 1.7;
}
.closing-vision {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
}
.vision-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
}
.vision-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,158,11,0.1);
  border-radius: 12px;
}
.vision-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
}
.vision-item p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === FOOTER === */
.footer {
  background: var(--bg);
  border-top: 1px solid rgba(245,158,11,0.08);
  padding: 48px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.footer-meta {
  font-size: 0.72rem;
  color: rgba(139,147,167,0.5);
  max-width: 500px;
  line-height: 1.6;
}

/* === SHOP === */
.shop { padding: 120px 40px; }
.shop-inner { max-width: 1100px; margin: 0 auto; }
.shop-header { text-align: center; margin-bottom: 72px; }
.shop-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.shop-subtitle { color: var(--fg-muted); font-size: 1rem; max-width: 480px; margin: 0 auto; line-height: 1.6; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 72px;
}
.product-card {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.product-card:hover {
  border-color: rgba(245,158,11,0.3);
  transform: translateY(-4px);
}
.product-image-wrap { position: relative; aspect-ratio: 1; overflow: hidden; }
.product-image { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.product-card:hover .product-image { transform: scale(1.04); }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 12px;
  background: rgba(245,158,11,0.9);
  color: #0f1623;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.product-info { padding: 24px; }
.product-tags { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.03em;
}
.tag-cat { background: rgba(245,158,11,0.12); color: var(--accent); border: 1px solid rgba(245,158,11,0.2); }
.tag-margin { background: rgba(34,197,94,0.12); color: #22c55e; border: 1px solid rgba(34,197,94,0.2); }
.product-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.product-desc { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; margin-bottom: 20px; }
.product-meta { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 16px; }
.product-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 10px; }
.price-retail { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--accent); }
.price-cost { font-size: 0.78rem; color: var(--fg-muted); }
.product-stats { display: flex; gap: 8px; flex-wrap: wrap; }
.stat-pill {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--fg-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 3px 10px;
}

/* Setup Banner */
.setup-banner {
  background: var(--bg-2);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 20px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 72px;
}
.setup-banner-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  margin: 12px 0 12px;
}
.setup-banner-desc { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.6; margin-bottom: 28px; }
.setup-checklist { display: flex; flex-direction: column; gap: 12px; }
.check-item { display: flex; align-items: center; gap: 12px; font-size: 0.875rem; color: var(--fg-muted); }
.check-icon { color: #22c55e; font-weight: 700; flex-shrink: 0; width: 20px; }
.setup-next-steps { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 28px; }
.next-steps-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--fg); margin-bottom: 16px; }
.next-steps-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; padding-left: 0; counter-reset: steps; list-style: none; }
.next-steps-list li { counter-increment: steps; display: flex; align-items: center; gap: 12px; font-size: 0.875rem; color: var(--fg-muted); }
.next-steps-list li::before { content: counter(steps); display: flex; align-items: center; justify-content: center; width: 22px; height: 22px; background: var(--accent); color: #0f1623; font-size: 0.7rem; font-weight: 800; border-radius: 50%; flex-shrink: 0; }
.setup-links { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  padding: 10px 24px;
  background: var(--accent);
  color: #0f1623;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--accent-dim); }
.btn-secondary {
  display: inline-block;
  padding: 10px 24px;
  background: transparent;
  color: var(--fg-muted);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: rgba(245,158,11,0.4); color: var(--fg); }

/* Policies */
.policies-section { margin-top: 72px; }
.policies-header { text-align: center; margin-bottom: 48px; }
.policies-title { font-family: var(--font-head); font-size: 1.75rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }
.policies-subtitle { color: var(--fg-muted); font-size: 0.95rem; max-width: 480px; margin: 0 auto; }
.policies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.policy-card {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 28px;
}
.policy-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(245,158,11,0.1); border-radius: 10px; margin-bottom: 16px; color: var(--accent); }
.policy-name { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--fg); margin-bottom: 10px; }
.policy-excerpt { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.6; margin-bottom: 16px; }
.policy-status { font-size: 0.72rem; font-weight: 600; color: #22c55e; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { padding: 120px 24px 80px; }
  .hero-headline { font-size: 2.5rem; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }
  .proof-inner { flex-direction: column; gap: 32px; }
  .proof-divider { display: none; }
  .features { padding: 80px 24px; }
  .feature-item { grid-template-columns: 1fr; gap: 16px; }
  .feature-number { font-size: 2rem; }
  .stack-inner { grid-template-columns: 1fr; gap: 48px; }
  .manifesto { padding: 80px 24px; }
  .manifesto-quote { font-size: 1.75rem; }
  .closing { padding: 80px 24px; }
  .closing-vision { grid-template-columns: 1fr; }
  .footer { padding: 40px 24px; }
  .shop { padding: 80px 24px; }
  .products-grid { grid-template-columns: 1fr; }
  .setup-banner { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .policies-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .proof-number { font-size: 2rem; }
  .closing-headline { font-size: 2.25rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .proof-number { font-size: 2rem; }
  .closing-headline { font-size: 2.25rem; }
}