/* Fonts */
:root {
  --bg: #0d1117;
  --surface: #161b22;
  --surface2: #21262d;
  --fg: #e6edf3;
  --fg-muted: #7d8590;
  --accent: #a3e635;
  --accent-dim: rgba(163, 228, 53, 0.1);
  --border: #30363d;
  --red: #ff6b6b;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3 {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* === MANIFESTO === */
.manifesto {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 8rem 6rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
}

.manifesto-inner {}

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

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.subhead {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.manifesto-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.manifesto-meta span {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
}

.dot { color: var(--accent); }

/* Manifesto visual */
.manifesto-visual { display: flex; flex-direction: column; gap: 2rem; align-items: flex-end; }

.phone-mockup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 2rem 1.5rem 1.5rem;
  width: 280px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(163, 228, 53, 0.1);
}

.phone-notch {
  width: 80px;
  height: 24px;
  background: var(--bg);
  border-radius: 0 0 12px 12px;
  margin: 0 auto 1.5rem;
}

.video-card {
  background: var(--surface2);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.video-thumb {
  aspect-ratio: 9/16;
  background: linear-gradient(135deg, #1a3a1a 0%, #0d1117 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.play-btn {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d1117;
}

.video-label {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 0.65rem;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 2px 8px;
  border-radius: 4px;
}

.video-info {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
}

.video-title {
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Syne', sans-serif;
}

.video-meta {
  font-size: 0.7rem;
  color: var(--fg-muted);
  margin-top: 2px;
}

.comment-bubble {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  align-items: flex-start;
}

.avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.comment-text { display: flex; flex-direction: column; gap: 4px; }

.comment-line {
  height: 6px;
  background: var(--surface2);
  border-radius: 3px;
}

.comment-line.short { width: 60px; }
.comment-line.medium { width: 90px; }
.comment-line.long { width: 110px; }

/* Stat row */
.stat-row {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem 2rem;
  width: 100%;
}

.stat { text-align: center; }

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-label {
  font-size: 0.7rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* === WHAT YOU GET === */
.what-you-get {
  padding: 8rem 6rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.section-header {
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 480px;
}

.section-header.centered {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header.centered p { margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  transition: border-color 0.2s;
}

.feature-card:hover { border-color: var(--accent); }

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Syne', sans-serif;
}

.feature-card p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* === NICHE === */
.niche {
  padding: 8rem 6rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.niche-content { max-width: 600px; }

.niche-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.niche-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.niche-content > p {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.niche-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.niche-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.niche-item svg { color: var(--accent); }

/* Quote card */
.niche-visual { display: flex; justify-content: flex-end; }

.quote-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  max-width: 400px;
  border-left: 3px solid var(--accent);
}

.quote-mark {
  font-size: 4rem;
  font-family: 'Syne', sans-serif;
  color: var(--accent);
  line-height: 0.5;
  margin-bottom: 1rem;
}

.quote-card p {
  font-size: 1rem;
  color: var(--fg);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
}

.author-name {
  font-weight: 600;
  font-size: 0.85rem;
  font-family: 'Syne', sans-serif;
}

.author-biz {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* === PROCESS === */
.process {
  padding: 8rem 6rem;
  border-top: 1px solid var(--border);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-family: 'Syne', sans-serif;
}

.step p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* === CLOSING === */
.closing {
  padding: 8rem 6rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
  text-align: center;
}

.closing-content { max-width: 700px; margin: 0 auto; }

.closing h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.closing-stat {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid rgba(163, 228, 53, 0.2);
  border-radius: 20px;
  padding: 2rem 3rem;
}

.closing-num {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.closing-desc {
  color: var(--fg-muted);
  font-size: 0.9rem;
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.6;
}

/* === FOOTER === */
footer {
  padding: 3rem 6rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--fg);
}

.footer-tagline {
  color: var(--fg-muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--fg-muted);
  font-size: 0.8rem;
  margin-left: auto;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .manifesto {
    grid-template-columns: 1fr;
    padding: 6rem 2rem 4rem;
    gap: 3rem;
  }
  
  .manifesto-visual { align-items: center; }
  
  .what-you-get { padding: 5rem 2rem; }
  
  .features-grid { grid-template-columns: 1fr; }
  
  .niche {
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  
  .niche-visual { justify-content: flex-start; }
  
  .quote-card { max-width: 100%; }
  
  .process { padding: 5rem 2rem; }
  
  .steps { grid-template-columns: 1fr; }
  
  .closing { padding: 5rem 2rem; }
  
  footer { padding: 2rem; }
  
  .footer-links { margin-left: 0; }
}

@media (max-width: 480px) {
  .stat-row { flex-direction: column; gap: 1rem; }
  .stat-divider { width: 40px; height: 1px; }
  .phone-mockup { width: 240px; }
}