:root {
  --bg: #faf8f5;
  --fg: #1a1a1a;
  --muted: #7a7570;
  --accent: #c95d3a;
  --accent-light: #f5ebe8;
  --surface: #ffffff;
  --border: #e8e4df;
  --phone-bg: #1a1a1a;
  --phone-screen-bg: #0f0f0f;
}

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

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

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.1;
}

/* Nav */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

/* Hero */
.hero {
  padding: 80px 40px 60px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-headline {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--fg);
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  margin-top: 28px;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 420px;
}
.hero-rule {
  max-width: 1100px;
  margin: 60px auto 0;
  border-top: 1px solid var(--border);
}

/* Phone mockup */
.phone-frame {
  width: 240px;
  height: 480px;
  background: var(--phone-bg);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15), 0 8px 24px rgba(0,0,0,0.1);
  margin-left: auto;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--phone-screen-bg);
  border-radius: 30px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.clip-timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.clip-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-family: 'DM Sans', sans-serif;
}
.clip-recording {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}
.rec-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.clip-stack {
  display: flex;
  gap: 4px;
}
.mini-clip {
  flex: 1;
  height: 60px;
  border-radius: 8px;
}
.timeline-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-family: 'DM Sans', sans-serif;
  margin-top: 4px;
}

/* How it works */
.how {
  padding: 80px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  margin-bottom: 48px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 600;
}
.step p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* Features */
.features {
  padding: 80px 40px;
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  margin-bottom: 64px;
}
.feature-row:last-child {
  margin-bottom: 0;
}
.feature-text h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}
.feature-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* Closing */
.closing {
  padding: 100px 40px;
  background: var(--accent-light);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-style: italic;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 32px;
}
.closing-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.closing-cta {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.5;
}

/* Footer */
.footer {
  padding: 32px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}
.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .phone-frame { width: 180px; height: 360px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 60px 24px 40px; }
  .how, .features, .closing { padding: 60px 24px; }
  .nav { padding: 16px 24px; }
  .footer-inner { flex-direction: column; gap: 8px; }
  .hero-rule { margin: 40px 24px 0; }
}