/* ============================================
   ClipMint — Custom Landing Page Styles
   ============================================ */

/* ---- Variables ---- */
:root {
  --bg: #F7F6F3;
  --bg-alt: #EDECEA;
  --fg: #1A1A2E;
  --fg-muted: #6B6B7B;
  --accent: #E8A838;
  --accent-dark: #C4851A;
  --surface: #FFFFFF;
  --border: #E0DED8;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  --max-w: 1140px;
  --radius: 12px;
  --radius-sm: 6px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

/* ---- Typography ---- */
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---- Navigation ---- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 246, 243, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--fg);
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
}

.nav-links a:hover { color: var(--fg); }

/* ---- Section Utilities ---- */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.section-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--fg);
  margin-bottom: 48px;
}

/* ---- Hero ---- */
.hero {
  padding: 80px 24px 100px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-lede {
  font-size: 1.125rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
}

/* Hero visual */
.hero-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 40px rgba(26, 26, 46, 0.06);
}

.source-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.source-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.source-info { flex: 1; }
.source-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); margin-bottom: 2px; }
.source-name { font-weight: 600; font-size: 0.95rem; }
.source-meta { font-size: 0.8rem; color: var(--fg-muted); }

.arrow-down { text-align: center; color: var(--fg-muted); margin: 8px 0; }

.clips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.clip-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
}

.clip-chip.tiktok { background: rgba(0, 0, 0, 0.06); color: #111; }
.clip-chip.instagram { background: rgba(225, 48, 108, 0.1); color: #E1306C; }
.clip-chip.youtube { background: rgba(255, 0, 0, 0.08); color: #FF0000; }
.clip-chip.linkedin { background: rgba(0, 119, 181, 0.1); color: #0077B5; }
.clip-chip.blog { background: rgba(232, 168, 56, 0.15); color: #C4851A; }
.clip-chip.email { background: rgba(26, 26, 46, 0.06); color: #1A1A2E; }

.hero-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
}

.stat-label { font-size: 0.9rem; color: var(--fg-muted); }

/* ---- Pipeline ---- */
.pipeline {
  padding: 96px 24px;
  background: var(--fg);
  color: #fff;
}

.pipeline .section-label { color: var(--accent); }
.pipeline .section-headline { color: #fff; }

.pipeline-steps {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 48px;
}

.pipeline-step {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px;
}

.step-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}

.step-icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.pipeline-step h3 {
  font-size: 1.2rem;
  font-family: var(--font-display);
  margin-bottom: 10px;
  color: #fff;
}

.pipeline-step p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.pipeline-arrow {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.3);
  padding-top: 48px;
  flex-shrink: 0;
}

.pipeline-note {
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  font-style: italic;
}

/* ---- Manifesto ---- */
.manifesto {
  padding: 100px 24px;
  background: var(--bg-alt);
}

.manifesto-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.manifesto-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.12;
}

.manifesto-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.manifesto-list {
  list-style: none;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.manifesto-list li {
  font-size: 0.95rem;
  color: var(--fg);
  font-weight: 500;
  padding-left: 20px;
  position: relative;
}

.manifesto-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 400;
}

/* ---- Target ---- */
.target {
  padding: 96px 24px;
}

.target .section-headline { text-align: center; }

.target-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.target-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.target-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26, 26, 46, 0.08);
}

.target-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  margin-bottom: 20px;
}

.target-card h3 {
  font-size: 1.1rem;
  font-family: var(--font-display);
  margin-bottom: 10px;
}

.target-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ---- Packages ---- */
.packages {
  padding: 96px 24px;
  background: var(--fg);
  color: #fff;
}

.packages .section-label { color: var(--accent); }
.packages .section-headline { color: #fff; text-align: center; }

.packages-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.package-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
}

.package-card.featured {
  border-color: var(--accent);
  background: rgba(232, 168, 56, 0.06);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.package-tier {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.package-price {
  font-family: var(--font-display);
  font-size: 2.75rem;
  color: #fff;
  margin-bottom: 8px;
}

.package-price span {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}

.package-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.package-features li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  padding-left: 20px;
  position: relative;
}

.package-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.package-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-align: center;
  font-style: italic;
}

.package-cta.primary { color: var(--accent); }

.packages-note {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ---- Closing ---- */
.closing {
  padding: 100px 24px;
  background: var(--bg-alt);
}

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

.closing-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  margin-bottom: 20px;
}

.closing-body {
  font-size: 1.1rem;
  color: var(--fg-muted);
  margin-bottom: 48px;
}

.closing-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.big-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent);
  line-height: 1;
}

.big-label {
  font-size: 1rem;
  color: var(--fg-muted);
  text-align: left;
  line-height: 1.5;
}

/* ---- Footer ---- */
.site-footer {
  padding: 64px 24px 32px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  max-width: 280px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 32px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  align-items: center;
}

.footer-links a:hover { color: var(--fg); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero-inner,
  .manifesto-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .target-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .pipeline-steps {
    flex-direction: column;
  }

  .pipeline-arrow {
    display: none;
  }

  .hero-right {
    order: -1;
  }

  .closing-stat {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
  }

  .nav-links { display: none; }
}