:root {
  --bg: #0b0b0f;
  --surface: #13131a;
  --surface-2: #1c1c26;
  --fg: #f0ede8;
  --fg-muted: #8a8a9a;
  --accent: #ff4d00;
  --accent-dim: rgba(255, 77, 0, 0.12);
  --border: rgba(240, 237, 232, 0.08);
  --radius: 14px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* NAV */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.nav-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 10px;
  border-radius: 20px;
}

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 64px;
  border-bottom: 1px solid var(--border);
}
.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 40px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 40px;
}

/* PROOF */
.proof {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 24px;
  border-bottom: 1px solid var(--border);
}
.proof-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.proof-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}
.proof-tag {
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 14px;
  color: var(--fg-muted);
}
.proof-quote {
  max-width: 640px;
}
.proof-quote blockquote {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.55;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--fg);
}
.proof-quote cite {
  font-size: 14px;
  color: var(--fg-muted);
  font-style: normal;
}

/* HOW */
.how {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px;
  border-bottom: 1px solid var(--border);
}
.how-header {
  margin-bottom: 56px;
}
.section-eyebrow {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}
.how h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -1px;
  max-width: 500px;
  line-height: 1.2;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  display: block;
  margin-bottom: 16px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* NICHES */
.niches {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px;
  border-bottom: 1px solid var(--border);
}
.niches-header {
  margin-bottom: 48px;
}
.niches h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
}
.niches h2 em {
  font-style: normal;
  color: var(--fg-muted);
  font-weight: 400;
}
.niche-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.niche {
  background: var(--surface);
  padding: 36px 32px;
}
.niche h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.niche p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* CTA BLOCK */
.cta-block {
  background: var(--surface);
}
.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -1px;
  max-width: 540px;
  line-height: 1.2;
  margin-bottom: 12px;
}
.cta-sub {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 48px;
}
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pricing-tier {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}
.pricing-tier.featured {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 20px;
}
.pricing-tier h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg-muted);
}
.pricing-tier .price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  display: block;
  margin-bottom: 16px;
}
.pricing-tier .price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--fg-muted);
}
.pricing-tier p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px 80px;
  border-bottom: 1px solid var(--border);
}
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  line-height: 1.55;
  max-width: 680px;
  color: var(--fg-muted);
}

/* FOOTER */
.footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  flex: 1;
}
.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
}

/* SAMPLES — "See it in action" showcase grid */
.samples {
  border-bottom: 1px solid var(--border);
}
.samples-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}
.samples-header {
  margin-bottom: 56px;
}
.samples-header h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 12px;
}
.samples-header h2 em {
  font-style: normal;
  color: var(--accent);
}
.samples-sub {
  font-size: 16px;
  color: var(--fg-muted);
  margin-top: 8px;
}
.samples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.sample-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}
.sample-card:hover {
  border-color: rgba(255, 77, 0, 0.35);
  transform: translateY(-2px);
}
.sample-video-wrap {
  position: relative;
  aspect-ratio: 9 / 16;
  background: var(--surface-2);
  overflow: hidden;
}
.sample-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
/* Dark overlay behind poster image — always present */
.sample-video-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--surface-2);
  z-index: 0;
  pointer-events: none;
}
.sample-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0) 35%,
    rgba(0,0,0,0) 55%,
    rgba(0,0,0,0.7) 100%
  );
}
.sample-hook-text {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  max-width: 90%;
}
.sample-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.sample-card:hover .sample-play-btn {
  opacity: 0;
}
.sample-mute-btn {
  align-self: flex-end;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 3;
}
.sample-mute-btn:hover { background: rgba(255,77,0,0.6); }
.sample-captions {
  position: absolute;
  bottom: 56px;
  left: 0;
  right: 0;
  padding: 0 12px;
  z-index: 2;
  text-align: center;
}
.caption-line {
  display: inline-block;
  background: rgba(0,0,0,0.72);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 3px 8px;
  margin: 2px 0;
  line-height: 1.35;
  border-radius: 4px;
  text-shadow: none;
}
.caption-highlight {
  background: var(--accent);
  color: #fff;
}
.sample-meta {
  padding: 16px;
}
.sample-meta-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.platform-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 20px;
}
.platform-badge--tiktok {
  background: rgba(105, 201, 208, 0.15);
  color: #69c9d0;
  border: 1px solid rgba(105, 201, 208, 0.25);
}
.platform-badge--reels {
  background: rgba(214, 84, 169, 0.15);
  color: #d654a9;
  border: 1px solid rgba(214, 84, 169, 0.25);
}
.platform-badge--shorts {
  background: rgba(255, 0, 0, 0.12);
  color: #ff4444;
  border: 1px solid rgba(255, 0, 0, 0.2);
}
.sample-source {
  font-size: 12px;
  color: var(--fg-muted);
}
.sample-caption-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
  font-style: italic;
}
.samples-cta {
  text-align: center;
}
.samples-cta-btn {
  display: inline-block;
  padding: 16px 36px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.samples-cta-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 56px 20px 48px; }
  .hero-stats { gap: 0; }
  .stat { padding-right: 24px; }
  .stat-divider { margin-right: 24px; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .niche-grid { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; gap: 12px; }
  .footer { flex-direction: column; align-items: flex-start; gap: 8px; }
  .samples-grid { grid-template-columns: 1fr; gap: 16px; }
  .samples-inner { padding: 56px 20px; }
}

/* FORMS — clip submission */
.clip-form { max-width: 700px; }
.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.form-row input {
  flex: 1;
  min-width: 180px;
  padding: 14px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.form-row input:focus { border-color: var(--accent); }
.form-row input::placeholder { color: var(--fg-muted); }
.form-row button {
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.form-row button:hover { opacity: 0.85; }
.form-row button:disabled { opacity: 0.5; cursor: not-allowed; }
.form-status { font-size: 14px; margin: 0 0 8px; }
.form-note { font-size: 13px; color: var(--fg-muted); }

/* Status checker */
.status-checker { margin-top: 24px; }
.text-link { color: var(--fg-muted); font-size: 14px; text-decoration: underline; }
.status-form { margin-top: 12px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.status-form input {
  padding: 10px 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  flex: 1;
  min-width: 200px;
}
.status-form input::placeholder { color: var(--fg-muted); }
.btn-small {
  padding: 10px 20px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s;
}
.btn-small:hover { border-color: var(--accent); }
.status-results { margin-top: 12px; width: 100%; }

/* CONTACT FORM */
.contact-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.contact-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 72px 24px;
}
.contact-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 32px;
}
.contact-form { }
.contact-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--fg-muted); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--accent); }
.contact-form textarea { resize: vertical; margin-bottom: 12px; }
.contact-form button {
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}
.contact-form button:hover { opacity: 0.85; }
.contact-form button:disabled { opacity: 0.5; cursor: not-allowed; }

@media (max-width: 600px) {
  .form-row { flex-direction: column; }
  .form-row button { width: 100%; }
  .contact-row { flex-direction: column; }
}