:root {
  --bg: #0d0c0a;
  --surface: #151412;
  --border: #2a2722;
  --amber: #e8a838;
  --amber-dim: #c08b28;
  --text: #f0ede8;
  --text-muted: #6b6560;
  --text-dim: #9a948e;
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Figtree', system-ui, sans-serif;
  --max: 1100px;
}

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

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

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* Nav */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  max-width: var(--max);
  margin: 0 auto;
}
.wordmark {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.nav-cta {
  background: var(--amber);
  color: #0d0c0a;
  border-radius: 8px;
  padding: 8px 18px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  letter-spacing: 0.02em;
}
.nav-cta:hover { background: #f0b84a; transform: translateY(-1px); }

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

/* Hero */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.lede {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 32px;
}
.hero-cta {
  display: inline-block;
  background: var(--amber);
  color: #0d0c0a;
  border-radius: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 8px 24px rgba(232,168,56,0.28);
  letter-spacing: 0.01em;
}
.hero-cta:hover { background: #f0b84a; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(232,168,56,0.38); }
.hero-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Features */
.features {
  background: var(--surface);
  padding: 80px 48px;
}
.features .section-label { margin-bottom: 40px; }
.feature-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature {
  padding: 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.feature:nth-child(2n) { border-right: none; }
.feature:nth-child(n+3) { border-bottom: none; }
.feature-icon {
  color: var(--amber);
  margin-bottom: 20px;
}
.feature h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}
.feature p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* How */
.how {
  padding: 96px 48px;
  max-width: var(--max);
  margin: 0 auto;
}
.how-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.how-text h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}
.steps {
  list-style: none;
}
.steps li {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.steps li:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.08em;
  padding-top: 4px;
  flex-shrink: 0;
  width: 28px;
}
.steps strong {
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.steps p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* How visual */
.how-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 60px;
}
.folder-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.folder-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.folder-files {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.file-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.raw { background: #1c1a18; color: #d4a96a; border: 1px solid #2e2518; }
.jpg { background: #1c1a18; color: #8ab87a; border: 1px solid #1e2a18; }
.tiff { background: #1c1a18; color: #7ab0d4; border: 1px solid #182030; }
.png { background: #1c1a18; color: #b07ad4; border: 1px solid #281828; }
.dng { background: #1c1a18; color: #d47a7a; border: 1px solid #2a1818; }
.arw { background: #1c1a18; color: #d4b06a; border: 1px solid #2a2510; }
.raf { background: #1c1a18; color: #6ad4c8; border: 1px solid #102a28; }
.rw2 { background: #1c1a18; color: #b8d46a; border: 1px solid #222a10; }

.arrow-block {
  display: flex;
  justify-content: center;
}
.reel-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.reel-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.reel-frames {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.reel-thumb {
  width: 72px;
  height: 48px;
  border-radius: 6px;
  background: linear-gradient(135deg, #2a2722 0%, #1a1815 100%);
  border: 1px solid var(--border);
}
.reel-thumb:nth-child(1) { background: linear-gradient(135deg, #3a3020, #2a2010); }
.reel-thumb:nth-child(2) { background: linear-gradient(135deg, #202030, #101020); }
.reel-thumb:nth-child(3) { background: linear-gradient(135deg, #302030, #201020); }
.reel-counter {
  font-size: 13px;
  color: var(--text-muted);
}

/* Outputs */
.outputs {
  background: var(--surface);
  padding: 80px 48px;
}
.outputs-header { max-width: var(--max); margin: 0 auto 48px; }
.outputs h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.output-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.output-card {
  padding: 36px 32px;
  background: var(--bg);
}
.output-type {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 12px;
}
.output-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Closing */
.closing {
  padding: 96px 48px;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.closing p {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.5;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text);
}
.footer-sep { color: var(--text-muted); }
.footer-copy { font-size: 13px; color: var(--text-muted); }

/* Responsive */
@media (max-width: 900px) {
  nav { padding: 24px 24px; }
  .hero { grid-template-columns: 1fr; padding: 48px 24px 64px; gap: 48px; }
  .hero-text h1 { font-size: 48px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { border-right: none; border-bottom: 1px solid var(--border); }
  .feature:last-child { border-bottom: none; }
  .how-content { grid-template-columns: 1fr; gap: 48px; }
  .how-visual { padding-top: 0; }
  .output-grid { grid-template-columns: 1fr; }
  .how { padding: 64px 24px; }
  .features { padding: 64px 24px; }
  .outputs { padding: 64px 24px; }
  .closing { padding: 64px 24px; }
  footer { padding: 24px; }
  .tagline { display: none; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 40px; }
  .lede { font-size: 16px; }
  .feature { padding: 28px 20px; }
  .output-card { padding: 28px 20px; }
  .steps li { gap: 16px; }
  .folder-files { gap: 6px; }
  .file-tag { font-size: 10px; padding: 3px 8px; }
}
