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

:root {
  --teal: #0D4A3D;
  --teal-light: #1A6B55;
  --amber: #E8A838;
  --amber-light: #F5C76A;
  --cream: #F5F0E8;
  --cream-dark: #EDE8DD;
  --charcoal: #1A1A1A;
  --slate: #2D2D2D;
  --gray: #6B6B6B;
  --offwhite: #FAFAF8;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--charcoal); color: var(--cream); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* === NAVBAR === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26,26,26,0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,168,56,0.15);
}
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--amber); letter-spacing: -0.02em; }
.nav-tagline { font-size: 0.8rem; color: var(--gray); letter-spacing: 0.08em; text-transform: uppercase; }

/* === HERO === */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 8rem 2rem 4rem;
  background: var(--charcoal);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%; width: 60%; height: 80%;
  background: radial-gradient(ellipse at center, rgba(13,74,61,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}
.hero-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; width: 100%; }
.hero-eyebrow { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--amber); margin-bottom: 1.5rem; font-weight: 500; }
.hero-headline { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; line-height: 1.1; color: var(--cream); letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.hero-headline br { display: block; }
.hero-sub { font-size: 1.1rem; color: var(--gray); line-height: 1.7; max-width: 480px; }

/* Demo window */
.demo-window { background: var(--slate); border: 1px solid rgba(232,168,56,0.2); border-radius: 16px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.5); }
.demo-bar { background: rgba(255,255,255,0.05); padding: 0.75rem 1rem; display: flex; gap: 6px; align-items: center; }
.demo-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.demo-input { padding: 1.5rem; }
.input-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.input-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--amber); font-weight: 600; white-space: nowrap; min-width: 80px; }
.input-fill { font-size: 0.85rem; color: var(--cream); background: rgba(255,255,255,0.06); padding: 0.25rem 0.75rem; border-radius: 20px; border: 1px solid rgba(255,255,255,0.08); }
.demo-output { background: rgba(13,74,61,0.15); border-top: 1px solid rgba(232,168,56,0.15); padding: 1.25rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.output-pill { font-size: 0.72rem; font-weight: 600; padding: 0.35rem 0.85rem; border-radius: 20px; }
.output-pill.tiktok { background: rgba(255,0,80,0.15); color: #FF5080; border: 1px solid rgba(255,0,80,0.3); }
.output-pill.instagram { background: rgba(225,48,108,0.15); color: #E1306C; border: 1px solid rgba(225,48,108,0.3); }
.output-pill.google { background: rgba(66,133,244,0.15); color: #4285F4; border: 1px solid rgba(66,133,244,0.3); }
.output-pill.flyer { background: rgba(232,168,56,0.15); color: var(--amber); border: 1px solid rgba(232,168,56,0.3); }

/* === SECTION SHARED === */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 6rem 2rem; }
.section-eyebrow { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--amber); font-weight: 600; margin-bottom: 1rem; }
.section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 700; color: var(--cream); line-height: 1.2; letter-spacing: -0.02em; }

/* === HOW IT WORKS === */
.howitworks { background: var(--charcoal); }
.howitworks .section-header { text-align: center; margin-bottom: 4rem; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 2rem; position: relative; transition: border-color 0.3s; }
.step-card:hover { border-color: rgba(232,168,56,0.3); }
.step-number { font-family: var(--font-display); font-size: 4rem; font-weight: 900; color: rgba(232,168,56,0.12); position: absolute; top: 1rem; right: 1.5rem; line-height: 1; }
.step-title { font-size: 1.15rem; font-weight: 600; color: var(--cream); margin-bottom: 0.75rem; margin-top: 1rem; }
.step-desc { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* === PLATFORMS === */
.platforms { background: var(--teal); position: relative; }
.platforms::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(232,168,56,0.08) 0%, transparent 60%); pointer-events: none; }
.platforms .section-inner { position: relative; }
.platforms-header { margin-bottom: 4rem; }
.platforms-desc { font-size: 1rem; color: rgba(245,240,232,0.75); line-height: 1.7; margin-top: 1rem; max-width: 560px; }
.platform-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.platform-card { background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 2rem; transition: transform 0.3s, background 0.3s; }
.platform-card:hover { transform: translateY(-4px); background: rgba(0,0,0,0.35); }
.platform-icon { width: 48px; height: 48px; background: rgba(232,168,56,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--amber); }
.platform-name { font-size: 1.1rem; font-weight: 600; color: var(--cream); margin-bottom: 0.5rem; }
.platform-desc { font-size: 0.85rem; color: rgba(245,240,232,0.65); line-height: 1.6; margin-bottom: 1.25rem; }
.platform-example { background: rgba(0,0,0,0.3); border-radius: 10px; padding: 1rem; border-left: 3px solid var(--amber); }
.example-text { font-size: 0.82rem; color: var(--cream); font-style: italic; line-height: 1.6; margin-bottom: 0.5rem; }
.example-tag { font-size: 0.7rem; color: var(--amber); font-family: monospace; }

/* === FLYERS === */
.flyers { background: var(--cream); color: var(--charcoal); }
.flyers .section-eyebrow { color: var(--teal); }
.flyers .section-title { color: var(--charcoal); }
.flyers-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.flyers-desc { font-size: 1rem; color: var(--slate); line-height: 1.7; margin-top: 1rem; }

/* Flyer mockup */
.flyer-mockup { perspective: 800px; }
.flyer-inner {
  background: var(--teal); color: white; border-radius: 4px; padding: 2.5rem; text-align: center;
  transform: rotateY(-6deg) rotateX(2deg); box-shadow: 12px 12px 40px rgba(0,0,0,0.3);
}
.flyer-header { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--amber); font-weight: 700; margin-bottom: 1rem; }
.flyer-big { font-family: var(--font-display); font-size: 5rem; font-weight: 900; line-height: 1; color: white; }
.flyer-sub { font-size: 1.2rem; color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; }
.flyer-barcode { display: flex; justify-content: center; gap: 3px; margin-bottom: 1rem; align-items: flex-end; height: 32px; }
.bar-line { width: 4px; background: rgba(255,255,255,0.7); border-radius: 1px; }
.bar-line.thin { width: 2px; }
.flyer-footer { font-size: 0.7rem; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }

/* === MANIFESTO === */
.manifesto { background: var(--charcoal); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.manifesto-inner { max-width: 800px; margin: 0 auto; padding: 6rem 2rem; text-align: center; }
.manifesto-quote { font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; color: var(--amber); line-height: 1.4; margin-bottom: 2rem; font-style: italic; }
.manifesto-body { font-size: 1rem; color: var(--gray); line-height: 1.8; margin-bottom: 1rem; }

/* === CLOSING === */
.closing { background: linear-gradient(135deg, var(--teal) 0%, #0A3D30 100%); }
.closing-inner { max-width: 900px; margin: 0 auto; padding: 8rem 2rem; text-align: center; }
.closing-headline { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.8rem); font-weight: 700; color: var(--cream); line-height: 1.3; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.closing-sub { font-size: 1rem; color: rgba(245,240,232,0.7); }

/* === FOOTER === */
.footer { background: #111; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 2rem; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--amber); }
.footer-copy { font-size: 0.8rem; color: var(--gray); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero { padding-top: 7rem; min-height: auto; }
  .hero-headline { font-size: 2.5rem; }
  .hero-demo { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: 1fr; }
  .flyers-layout { grid-template-columns: 1fr; gap: 2rem; }
  .flyer-inner { transform: none; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .section-inner { padding: 4rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
}