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

:root {
  --bg: #0D0D0D;
  --bg-alt: #111111;
  --bg-card: #141414;
  --fg: #FFFFFF;
  --fg-muted: #888888;
  --lime: #C8F135;
  --lime-dim: rgba(200, 241, 53, 0.15);
  --border: #1F1F1F;
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

.nav-tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lime { color: var(--lime); }

/* === SECTION UTILITIES === */
.section-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 48px;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 80px;
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 241, 53, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 24px;
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.7;
}

/* Clip Card */
.hero-visual { display: flex; flex-direction: column; gap: 20px; }

.clip-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.clip-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lime);
}

.clip-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.clip-metrics {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}

.metric { display: flex; flex-direction: column; }

.metric-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
}

.metric-key {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.clip-bar-wrap { margin-bottom: 16px; }
.clip-bar-label { font-size: 0.7rem; color: var(--fg-muted); margin-bottom: 8px; }
.clip-bar-track { background: var(--bg); border-radius: 100px; height: 6px; overflow: hidden; }
.clip-bar-fill { background: var(--lime); height: 100%; border-radius: 100px; }

.clip-platforms { display: flex; gap: 8px; flex-wrap: wrap; }
.platform-tag {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--lime-dim);
  color: var(--lime);
  text-transform: uppercase;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.stat-item {
  flex: 1;
  padding: 18px 24px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-desc {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* === SERVICES === */
.services { padding: 100px 48px; background: var(--bg-alt); }
.services-inner { max-width: 1200px; margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: border-color 0.2s;
}

.pricing-card.featured {
  border-color: var(--lime);
  background: linear-gradient(180deg, rgba(200,241,53,0.05) 0%, var(--bg-card) 100%);
}

.tier-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.tier-badge.lime {
  background: var(--lime-dim);
  color: var(--lime);
}

.tier-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.tier-price {
  margin-bottom: 16px;
}

.price-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
}

.price-per {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-left: 4px;
}

.tier-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tier-features li {
  font-size: 0.875rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}

.tier-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

/* === PROCESS === */
.process { padding: 100px 48px; }
.process-inner { max-width: 1200px; margin: 0 auto; }

.process-steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--lime);
  line-height: 1;
  padding-top: 4px;
}

.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 600px;
}

/* === CLIENTS === */
.clients { padding: 100px 48px; background: var(--bg-alt); }
.clients-inner { max-width: 1200px; margin: 0 auto; }

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.client-card {
  background: var(--bg-card);
  padding: 36px 32px;
  transition: background 0.2s;
}

.client-card:hover { background: #181818; }

.client-icon {
  width: 40px;
  height: 40px;
  color: var(--lime);
  margin-bottom: 20px;
}

.client-icon svg { width: 100%; height: 100%; }

.client-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.client-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === MANIFESTO === */
.manifesto { padding: 100px 48px; }
.manifesto-inner { max-width: 1200px; margin: 0 auto; }

.manifesto-quote {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 40px;
  color: var(--fg);
}

.manifesto-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 680px;
}

/* === FOOTER === */
.footer { padding: 60px 48px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.footer-copy {
  font-size: 0.75rem;
  color: #444;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .step { grid-template-columns: 60px 1fr; gap: 24px; }
  .navbar { padding: 16px 24px; }
  .hero { padding: 100px 24px 60px; }
  .services, .process, .clients, .manifesto { padding: 60px 24px; }
}

@media (max-width: 600px) {
  .client-grid { grid-template-columns: 1fr; }
  .clip-metrics { gap: 16px; }
  .metric-val { font-size: 1.2rem; }
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
