/* ReelCraft — Editorial-cinematic, dark with amber accent */

:root {
  --bg: #0d0d0f;
  --surface: #141417;
  --surface-2: #1c1c21;
  --amber: #f59e0b;
  --amber-dim: rgba(245, 158, 11, 0.15);
  --fg: #f5f5f3;
  --fg-muted: #8a8a8e;
  --fg-subtle: #555559;
  --border: rgba(255,255,255,0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; }

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

/* Page border */
.page-border {
  position: fixed;
  inset: 0;
  border: 1px solid var(--border);
  pointer-events: none;
  z-index: 999;
}

/* Nav */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-tag {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 0 48px;
  overflow: hidden;
}

.hero-accent-strip {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--amber);
}

.hero-content {
  max-width: 860px;
  padding: 80px 0;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-highlight {
  color: var(--amber);
}

.hero-lede {
  font-size: 20px;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.6;
}

/* Section label */
.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

/* Manifesto */
.manifesto {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 48px;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 32px;
  font-style: normal;
}

.manifesto-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.manifesto-body em { color: var(--fg); font-style: normal; }

/* Services */
.services {
  padding: 96px 48px;
}

.services-header {
  margin-bottom: 56px;
}

.services-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 560px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
}

.service-icon {
  color: var(--amber);
  margin-bottom: 20px;
}

.service-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Proof */
.proof {
  padding: 80px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
}

.proof-item {
  padding: 40px;
  border-right: 1px solid var(--border);
}

.proof-item:last-child { border-right: none; }

.proof-stat {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--amber);
  margin-bottom: 4px;
}

.proof-unit {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 10px;
}

.proof-note {
  font-size: 14px;
  color: var(--fg-subtle);
  line-height: 1.5;
}

/* Process */
.process {
  padding: 96px 48px;
}

.process-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  max-width: 500px;
}

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

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

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--amber);
  line-height: 1;
}

.step-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 520px;
}

/* Closing */
.closing {
  background: var(--amber-dim);
  border-top: 1px solid rgba(245, 158, 11, 0.2);
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 96px 48px;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}

.closing-body {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-subtle);
}

.footer-copy {
  font-size: 13px;
  color: var(--fg-subtle);
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 0 24px; min-height: 80vh; }
  .hero-content { padding: 56px 0; }
  .manifesto-inner, .services, .proof, .process, .closing-inner { padding-left: 24px; padding-right: 24px; }
  .services { padding-top: 64px; padding-bottom: 64px; }
  .services-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 0; }
  .proof-item:last-child { border-bottom: none; }
  .process { padding-top: 64px; padding-bottom: 64px; }
  .closing-inner { padding-top: 64px; padding-bottom: 64px; }
  .footer { padding: 32px 24px; flex-direction: column; gap: 12px; text-align: center; }
  .nav-tag { display: none; }
}