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

:root {
  --bg: #F4EFE6;
  --bg-alt: #EAE3D5;
  --fg: #1A1714;
  --fg-muted: #6B6359;
  --accent: #E84C1E;
  --accent-warm: #F0A070;
  --border: #D6CCBD;
  --card-bg: #FFFFFF;
  --frame-bg: #1A1714;
  --frame-text: #F4EFE6;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; font-weight: 700; line-height: 1.05; }

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

.nav-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}

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

/* ===== HERO ===== */
.hero {
  padding: 80px 48px 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-headline .line { display: block; }
.hero-headline .indent { padding-left: 1.5rem; }
.hero-headline .accent { color: var(--accent); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  padding-top: 8px;
}

.hero-meta {
  display: flex;
  gap: 40px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--fg);
}

.meta-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== FRAME STACK ===== */
.hero-visual { margin-top: 0; }

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

.frame {
  background: var(--frame-bg);
  border-radius: 16px;
  padding: 24px;
  position: relative;
}

.frame-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  background: rgba(232,76,30,0.15);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
}

.frame-content { padding-top: 8px; }

.vid-skeleton {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vid-line {
  height: 10px;
  background: rgba(244,239,230,0.12);
  border-radius: 4px;
}

.vid-line.long { width: 90%; }
.vid-line.medium { width: 70%; }
.vid-line.short { width: 50%; }

.frame-1 .vid-line:nth-child(1) { background: rgba(232,76,30,0.4); }
.frame-2 .vid-line:nth-child(2) { background: rgba(232,76,30,0.4); }
.frame-3 .vid-line:nth-child(3) { background: rgba(232,76,30,0.4); }

/* ===== MARQUEE ===== */
.marquee-strip {
  background: var(--fg);
  color: var(--bg);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 8px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== WHAT ===== */
.what {
  padding: 100px 48px;
  background: var(--bg-alt);
}

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.what-statement {
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--fg);
  max-width: 680px;
  margin-bottom: 64px;
}

.what-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
}

.what-col h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}

.what-col p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== PROCESS ===== */
.process {
  padding: 100px 48px;
}

.process-header { margin-bottom: 64px; }

.process-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.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:last-child { border-bottom: 1px solid var(--border); }

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  padding-top: 4px;
}

.step-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

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

/* ===== PRICING ===== */
.pricing {
  padding: 100px 48px;
  background: var(--bg-alt);
}

.pricing-header { margin-bottom: 48px; }

.pricing-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

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

.pricing-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--accent);
  background: #FFF8F5;
}

.card-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.card-tier {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.card-price {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 28px;
  line-height: 1;
}

.card-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg-muted);
}

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

.card-features li {
  font-size: 0.88rem;
  color: var(--fg);
  line-height: 1.4;
  padding-left: 20px;
  position: relative;
}

.card-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 100px 48px;
}

.manifesto-inner { max-width: 720px; }

.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 48px;
  font-style: normal;
}

.manifesto-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.manifesto-body p:last-child { margin-bottom: 0; }

/* ===== CLOSING ===== */
.closing {
  padding: 100px 48px 80px;
  background: var(--fg);
  color: var(--bg);
}

.closing-inner { text-align: center; max-width: 640px; margin: 0 auto; }

.closing-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--bg);
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 1rem;
  color: rgba(244,239,230,0.65);
  line-height: 1.7;
  margin-bottom: 48px;
}

.closing-vibe {
  display: flex;
  align-items: center;
  gap: 20px;
}

.vibe-line {
  flex: 1;
  height: 1px;
  background: rgba(244,239,230,0.2);
}

.vibe-text {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.4);
  white-space: nowrap;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 48px;
  border-top: 1px solid rgba(244,239,230,0.12);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer .footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--bg);
}

.footer .footer-tagline {
  font-size: 0.8rem;
  color: rgba(244,239,230,0.4);
}

.footer .footer-copy {
  margin-left: auto;
  font-size: 0.75rem;
  color: rgba(244,239,230,0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .frame-stack { grid-template-columns: 1fr; }
  .what-columns { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 24px; }
  .nav { padding: 20px 24px; }
  .hero { padding: 48px 24px 40px; }
  .what, .process, .pricing, .manifesto, .closing { padding: 60px 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 3rem; }
  .meta-item { gap: 2px; }
  .meta-num { font-size: 1.1rem; }
  .footer { flex-direction: column; gap: 8px; }
  .footer .footer-copy { margin-left: 0; }
}