:root {
  --bg: #0c0c0e;
  --bg-secondary: #111114;
  --bg-card: #18181c;
  --fg: #f4f4f2;
  --fg-muted: #8a8a96;
  --accent: #f59e0b;
  --accent-warm: #e8892a;
  --border: #2a2a32;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 8vw 60px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 60% 40%, rgba(245,158,11,0.06) 0%, transparent 60%),
    var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 460px;
  line-height: 1.65;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.clip-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.clip-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.clip-card::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 60%;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,0.03));
  pointer-events: none;
}

.clip-tiktok { border-left: 3px solid #ff0050; }
.clip-reels { border-left: 3px solid #e1306c; }
.clip-shorts { border-left: 3px solid #ff0000; }

.clip-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--fg);
  min-width: 60px;
}

.clip-duration {
  font-size: 13px;
  color: var(--fg-muted);
  font-family: var(--font-body);
}

.clip-play {
  margin-left: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.15;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.clip-play::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid var(--accent);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  left: 4px;
}

.hero-connector {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 4px;
}

.connector-label {
  font-size: 13px;
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 500;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}

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

/* SHARED SECTION STYLES */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 500px;
  line-height: 1.6;
}

/* ENGINE SECTION */
.engine {
  padding: 120px 8vw;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.engine-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 64px;
  margin-bottom: 48px;
}

.step {
  flex: 1;
  padding: 0 40px 0 0;
}

.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 28px;
  flex-shrink: 0;
}

.step-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}

.step-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.engine-note {
  font-size: 16px;
  color: var(--fg-muted);
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  font-style: italic;
  max-width: 500px;
}

/* PLATFORMS SECTION */
.platforms {
  padding: 120px 8vw;
  background: var(--bg);
}

.platforms-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.platform-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  position: relative;
  transition: border-color 0.2s;
}

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

.platform-icon {
  color: var(--fg);
  margin-bottom: 20px;
}

.platform-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}

.platform-tip {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.platform-spec {
  font-size: 12px;
  font-family: var(--font-body);
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* RESULTS SECTION */
.results {
  padding: 120px 8vw;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.results-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.results-headline-wrap {
  margin-bottom: 72px;
}

.results-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}

.results-body {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
}

.results-comparison {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.comparison-col {
  flex: 1;
  padding: 40px 36px;
}

.comparison-old {
  background: #0f0f12;
  border-radius: 16px 0 0 16px;
  border: 1px solid var(--border);
  border-right: none;
}

.comparison-new {
  background: #111114;
  border-radius: 0 16px 16px 0;
  border: 1px solid var(--border);
}

.comparison-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-list li {
  font-size: 15px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
}

.comparison-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fg-muted);
  flex-shrink: 0;
}

.comparison-new .comparison-list li::before { background: var(--accent); }

.comparison-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

/* PRICING SECTION */
.pricing {
  padding: 120px 8vw;
  background: var(--bg);
}

.pricing-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
  margin-bottom: 48px;
}

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

.pricing-card-featured {
  border-color: var(--accent);
  background: #141208;
}

.pricing-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 0 0 8px 8px;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 16px;
}

.pricing-period {
  font-size: 18px;
  font-weight: 400;
  color: var(--fg-muted);
}

.pricing-for {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}

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

.pricing-features li {
  font-size: 14px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(245,158,11,0.15);
  flex-shrink: 0;
  position: relative;
}

.pricing-features li::before {
  background: none;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' fill='none' stroke='%23f59e0b' stroke-width='1.5'/%3E%3Cpath d='M6.5 10.5l2.5 2.5 4.5-5' stroke='%23f59e0b' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.pricing-note {
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
}

/* MANIFESTO SECTION */
.manifesto {
  padding: 120px 8vw;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.35;
  margin-bottom: 48px;
  border-left: 4px solid var(--accent);
  padding-left: 32px;
  font-style: normal;
}

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

.manifesto-closing {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 32px;
}

/* FOOTER */
.site-footer {
  padding: 48px 8vw;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--fg);
}

.footer-slug {
  font-size: 12px;
  color: var(--fg-muted);
  font-family: var(--font-body);
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-stats { flex-direction: column; gap: 24px; align-items: flex-start; }
  .stat-divider { display: none; }
  .steps { flex-direction: column; gap: 0; }
  .step { padding: 0 0 40px; }
  .step-arrow { display: none; }
  .platform-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .results-comparison { flex-direction: column; }
  .comparison-old { border-radius: 16px 16px 0 0; border-right: 1px solid var(--border); }
  .comparison-new { border-radius: 0 0 16px 16px; }
  .comparison-divider { display: none; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero { padding: 60px 6vw 40px; }
  .engine, .platforms, .results, .pricing, .manifesto { padding: 80px 6vw; }
  .section-title { font-size: 30px; }
  .results-headline { font-size: 36px; }
  .manifesto-quote { font-size: 22px; }
}