/* ClipDrop — Dark mode creative agency aesthetic */
:root {
  --bg: #0D0D0D;
  --surface: #141414;
  --surface2: #1E1E1E;
  --accent: #FF4D2B;
  --accent2: #00E5A0;
  --text: #FFFFFF;
  --text-muted: #888888;
  --text-dim: #555555;
  --border: #222222;
}

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

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

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 80px 48px 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 32px;
}
.hero-clip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.clip-chip {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
}

/* Clip cards (right side) */
.clip-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.clip-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s;
}
.clip-card:hover { transform: translateX(4px); }
.clip-card-1 { border-left: 3px solid var(--accent); }
.clip-card-2 { border-left: 3px solid var(--accent2); }
.clip-card-3 { border-left: 3px solid #8B5CF6; }
.clip-icon {
  width: 36px;
  height: 36px;
  background: var(--surface2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.clip-meta { display: flex; flex-direction: column; }
.clip-label { font-size: 14px; font-weight: 500; color: var(--text); }
.clip-duration { font-size: 12px; color: var(--text-dim); margin-top: 2px; }

/* MANIFESTO */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 48px;
}
.manifesto-inner { max-width: 900px; margin: 0 auto; }
.manifesto-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.manifesto-text {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 20px;
}
.manifesto-text em {
  color: var(--text-muted);
  font-style: normal;
}
.manifesto-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
}

/* FEATURES */
.features {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.features-header { margin-bottom: 48px; }
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
}
.feature-card {
  background: var(--bg);
  padding: 40px 36px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--surface); }
.feature-icon { font-size: 20px; color: var(--accent); margin-bottom: 16px; }
.feature-name {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.features-pricing {
  text-align: center;
  padding: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.pricing-tag {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.pricing-amount {
  font-family: 'Syne', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -2px;
}
.pricing-amount span {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}
.pricing-note {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 10px;
}

/* STATS */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.stat-item { text-align: center; flex: 1; }
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 13px; color: var(--text-muted); line-height: 1.4; }
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  margin: 0 48px;
  flex-shrink: 0;
}

/* CLOSING */
.closing {
  padding: 96px 48px 80px;
  text-align: center;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  max-width: 700px;
  margin: 0 auto 20px;
}
.closing-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 40px;
}
.closing-tagline {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  text-align: center;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.footer-desc { font-size: 13px; color: var(--text-dim); max-width: 400px; margin: 0 auto 20px; }
.footer-contact { margin-bottom: 16px; }
.footer-contact a { font-size: 14px; color: var(--accent); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: var(--text-muted);
}
.footer-sep { color: var(--text-dim); margin: 0 8px; }
.footer-copy { font-size: 12px; color: var(--text-dim); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar { padding: 20px 24px; }
  .hero { padding: 48px 24px 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .manifesto { padding: 48px 24px; }
  .features { padding: 48px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .stats { padding: 32px 24px; }
  .stats-grid { flex-direction: column; gap: 32px; }
  .stat-divider { display: none; }
  .closing { padding: 64px 24px 48px; }
  .footer { padding: 32px 24px; }
}