/* CreatorStack — electric lime on deep black */
:root {
  --bg: #0D0D0D;
  --bg2: #111111;
  --fg: #F0EFE9;
  --fg-muted: #9A9A8E;
  --accent: #C8FF00;
  --accent-dim: rgba(200,255,0,0.08);
  --border: rgba(240,239,233,0.07);
  --font-head: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}
*, *::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: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 24px;
  height: 56px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-weight: 700; font-size: 1.05rem;
  color: var(--fg);
  text-decoration: none;
}
.nav-tagline {
  font-size: 0.78rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-head);
  font-weight: 600;
}

/* ── HERO ── */
.hero {
  position: relative;
  padding: 100px 24px 96px;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,255,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,255,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 40%, transparent 100%);
}
.hero-bg-glow {
  position: absolute;
  top: -120px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(200,255,0,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 820px; margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 32px;
  padding: 8px 18px;
  border: 1px solid rgba(200,255,0,0.15);
  border-radius: 100px;
  background: var(--accent-dim);
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto 36px;
  font-weight: 300;
  line-height: 1.7;
}
.hero-chip-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
}
.chip {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid rgba(200,255,0,0.15);
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

/* ── SECTION SHARED ── */
.section-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

/* ── HOW IT WORKS ── */
.howitworks {
  padding: 96px 24px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.howitworks .section-title { max-width: 540px; }
.steps-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.step {
  background: var(--bg);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.step-num {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  background: var(--accent-dim);
  border: 1px solid rgba(200,255,0,0.1);
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
}
.step-body h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}
.step-body p {
  font-size: 0.93rem;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ── STATS ── */
.stats-section {
  padding: 80px 24px;
}
.stats-grid {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center;
  gap: 0;
}
.stat {
  flex: 1;
  padding: 0 40px;
  text-align: center;
}
.stat:first-child { padding-left: 0; }
.stat:last-child { padding-right: 0; }
.stat-value {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.4;
}
.stat-divider {
  width: 1px; height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 96px 24px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonial-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.quote-mark {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 0.8;
  margin-bottom: 20px;
  display: block;
  opacity: 0.4;
}
.testimonial p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ── MANUFACTURING ── */
.manufacturing {
  padding: 96px 24px;
}
.manufacturing-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.manufacturing-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.manufacturing-text p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 16px;
}
.mfg-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 28px;
}
.mfg-chip {
  font-size: 0.78rem;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 400;
}

/* Pipeline visual */
.manufacturing-visual { display: flex; align-items: center; justify-content: center; }
.pipeline-visual {
  display: flex; align-items: center; gap: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
}
.pipe-node {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.pipe-icon {
  width: 56px; height: 56px;
  background: var(--accent-dim);
  border: 1px solid rgba(200,255,0,0.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.pipe-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pipe-arrow {
  padding: 0 12px;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* ── CLOSING ── */
.closing {
  padding: 96px 24px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(200,255,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner { position: relative; }
.closing-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 680px;
  margin: 0 auto 24px;
}
.closing-sub {
  font-size: 0.97rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
}
.footer-copy {
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .manufacturing-inner { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid { flex-direction: column; gap: 32px; }
  .stat { padding: 0; text-align: left; }
  .stat-divider { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .hero { padding: 72px 20px 64px; }
  .howitworks, .testimonials, .manufacturing, .closing { padding: 64px 20px; }
  .stats-section { padding: 48px 20px; }
}