/* BASE */
:root {
  --bg: #0d0d12;
  --surface: #14141b;
  --surface2: #1e1e27;
  --amber: #f5a623;
  --amber-dim: rgba(245, 166, 35, 0.15);
  --text: #f0ede8;
  --text-muted: #8a8a96;
  --border: rgba(240, 237, 232, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', 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(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.navbar {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 16px; }
.nav-logo { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; letter-spacing: -0.02em; color: var(--amber); }
.nav-tagline { font-size: 0.8rem; color: var(--text-muted); }
.nav-link {
  margin-left: auto;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--amber);
  text-decoration: none;
  padding: 7px 18px;
  border: 1px solid var(--amber);
  border-radius: 4px;
  transition: background 0.15s;
}
.nav-link:hover { background: var(--amber-dim); }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 96px 48px 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: var(--amber-dim);
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.amber { color: var(--amber); }
.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--amber); }
.stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.stat-divider { width: 1px; height: 32px; background: var(--border); }

/* HERO VISUAL */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.video-stack { display: flex; flex-direction: column; gap: 10px; }
.video-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 280px;
}
.video-card-2 { margin-left: 24px; }
.video-card-3 { margin-left: 48px; }
.vc-icon { font-size: 0.9rem; color: var(--amber); width: 20px; }
.vc-lines { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.vc-line { height: 6px; border-radius: 3px; background: var(--surface2); }
.vc-line-1 { width: 85%; }
.vc-line-2 { width: 60%; }
.vc-line-3 { width: 45%; }
.vc-label { font-size: 0.7rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }

/* PILLARS */
.pillars { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pillars-inner { max-width: 1200px; margin: 0 auto; padding: 64px 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.pillar-icon { color: var(--amber); font-size: 1rem; margin-bottom: 16px; }
.pillar h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; margin-bottom: 10px; }
.pillar p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; }

/* PROCESS */
.process { padding: 80px 48px; max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 48px; }
.section-eyebrow { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); display: block; margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.6rem, 2.5vw, 2.2rem); letter-spacing: -0.02em; line-height: 1.15; }
.section-sub { color: var(--text-muted); font-size: 0.95rem; max-width: 560px; margin-top: 12px; }
.steps { display: flex; align-items: flex-start; gap: 0; }
.step { flex: 1; padding: 32px; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; }
.step-arrow { font-size: 1.4rem; color: var(--amber); padding: 32px 20px 0; }
.step-num { font-family: var(--font-display); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.08em; color: var(--amber); display: block; margin-bottom: 12px; }
.step h4 { font-family: var(--font-display); font-weight: 600; font-size: 1rem; margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; }

/* CLIENTS */
.clients { background: var(--surface); padding: 80px 48px; }
.clients-inner { max-width: 1200px; margin: 0 auto; }
.client-list { margin-top: 48px; display: flex; flex-direction: column; gap: 2px; }
.client-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.client-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px 28px;
}
.client-icon { color: var(--amber); font-size: 1rem; display: block; margin-bottom: 12px; }
.client-name { font-family: var(--font-display); font-weight: 600; font-size: 1rem; display: block; margin-bottom: 6px; }
.client-desc { color: var(--text-muted); font-size: 0.82rem; line-height: 1.5; }

/* PRICING */
.pricing { padding: 80px 48px; max-width: 1200px; margin: 0 auto; }
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px 48px;
  max-width: 560px;
  margin-top: 40px;
}
.pricing-badge { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--amber); margin-bottom: 20px; }
.pricing-tier { display: flex; align-items: baseline; gap: 12px; margin-bottom: 12px; }
.tier-name { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; }
.tier-price { font-family: var(--font-display); font-weight: 800; font-size: 2.8rem; color: var(--amber); }
.tier-period { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.pricing-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.92rem; }
.pf-check { color: var(--amber); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-note { color: var(--text-muted); font-size: 0.82rem; margin-top: 20px; }

/* MANIFESTO */
.manifesto { background: var(--bg); padding: 96px 48px; }
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--text);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.manifesto-sub { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-top: 20px; }

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 28px 48px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 24px; }
.footer-brand { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--amber); }
.footer-copy { font-size: 0.78rem; color: var(--text-muted); }

/* PORTFOLIO */
.portfolio { padding: 80px 48px; max-width: 1200px; margin: 0 auto; }
.portfolio-header { margin-bottom: 48px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.portfolio-card:hover { border-color: var(--amber); transform: translateY(-2px); }
.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  background: #000;
  overflow: hidden;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(245, 166, 35, 0.9);
  color: #0d0d12;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  z-index: 2;
}
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,13,18,0.3);
  transition: background 0.2s;
}
.video-overlay:hover { background: rgba(13,13,18,0.1); }
.play-icon { width: 52px; height: 52px; background: var(--amber); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: #0d0d12; opacity: 0.9; }
.card-body { padding: 20px 24px 24px; }
.card-industry { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 8px; }
.card-title { font-family: var(--font-display); font-weight: 600; font-size: 1rem; margin-bottom: 8px; line-height: 1.3; }
.card-desc { color: var(--text-muted); font-size: 0.85rem; line-height: 1.55; }
.card-meta { margin-top: 14px; display: flex; align-items: center; gap: 14px; }
.card-tag { font-size: 0.72rem; color: var(--text-muted); background: var(--surface2); padding: 4px 10px; border-radius: 4px; }
.card-duration { font-size: 0.72rem; color: var(--text-muted); margin-left: auto; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 60px 24px 48px; }
  .hero-visual { display: none; }
  .pillars-inner { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .client-row { grid-template-columns: 1fr; }
  .navbar, .process, .pricing, .footer { padding-left: 24px; padding-right: 24px; }
  .clients-inner { padding: 80px 24px; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.3rem; }
  .pricing-card { padding: 28px 24px; }
  .tier-price { font-size: 2.2rem; }
}