:root {
  --bg: #0C0C0C;
  --bg-2: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1A1A1A;
  --border: #242424;
  --border-light: #1E1E1E;
  --fg: #F0EDE6;
  --fg-muted: #888888;
  --fg-dim: #555555;
  --red: #FF3D00;
  --red-dim: rgba(255,61,0,0.12);
  --amber: #FFB800;
  --amber-dim: rgba(255,184,0,0.1);
  --green: #00D26A;
  --green-dim: rgba(0,210,106,0.1);
  --white: #FFFFFF;
  --black: #000000;
  --radius: 8px;
  --radius-lg: 12px;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #333; }

/* ── Typography ── */
.wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--fg);
}

h1, h2, h3, h4 { line-height: 1.15; }

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  border-bottom: 1px solid var(--border-light);
  background: rgba(12,12,12,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

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

.nav-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: clamp(5rem, 12vw, 9rem) clamp(1.5rem, 5vw, 5rem) clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -5%;
  width: 60%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(255,61,0,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255,61,0,0.3);
  background: rgba(255,61,0,0.06);
  padding: 4px 10px;
  border-radius: 4px;
}

.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.hero-sub {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--red);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}

.btn-primary:hover { background: #e63600; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  background: transparent;
  color: var(--fg-muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.15s, color 0.15s;
}

.btn-ghost:hover { border-color: #444; color: var(--fg); }

.btn-outline {
  display: block;
  text-align: center;
  padding: 13px 24px;
  background: transparent;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.15s, background 0.15s;
}

.btn-outline:hover { border-color: #444; background: var(--bg-card); }

/* Screen stack */
.screen-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.screen {
  background: #0E0E0E;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}

.screen-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: #141414;
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #FF5F57; }
.dot.yellow { background: #FEBC2E; }
.dot.green { background: #28C840; }

.screen-header span {
  font-size: 0.72rem;
  color: #555;
  margin-left: auto;
  font-family: 'DM Sans', sans-serif;
}

/* Main screen */
.screen-main { padding: 14px; }

.screen-timeline {
  background: #0A0A0A;
  border-radius: 6px;
  padding: 10px 12px 12px;
  margin-bottom: 12px;
}

.tl-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 8px;
}

.tl-tracks { display: flex; flex-direction: column; gap: 5px; }

.tl-track {
  height: 20px;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.tl-video { background: rgba(255,61,0,0.15); }
.tl-audio { background: rgba(0,210,106,0.1); height: 14px; }
.tl-music { background: rgba(255,184,0,0.08); height: 14px; }

.tl-clip {
  position: absolute;
  top: 2px;
  left: 2px;
  height: calc(100% - 4px);
  background: var(--red);
  border-radius: 2px;
  opacity: 0.85;
}

.tl-audio .tl-clip { background: var(--green); opacity: 0.7; }
.tl-music .tl-clip { background: var(--amber); opacity: 0.5; }

.music-wave { width: 30%; }

.screen-preview { margin-bottom: 12px; }

.preview-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 6px;
}

.preview-frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
}

.pf-scene {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom right, transparent 40%, rgba(0,0,0,0.3) 100%),
    linear-gradient(180deg, #1e3a5f 0%, #0d2137 60%, #061520 100%);
}

.pf-texture {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 21px);
}

.pf-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.pf-title {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  font-family: 'DM Sans', sans-serif;
}

.screen-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.panel {
  background: #0A0A0A;
  border-radius: 6px;
  padding: 10px;
}

.panel-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 8px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.bar-row span { font-size: 0.65rem; color: #555; width: 60px; }

.bar {
  flex: 1;
  height: 4px;
  background: #1e1e1e;
  border-radius: 2px;
}

.bar-fill {
  height: 100%;
  background: var(--red);
  border-radius: 2px;
  opacity: 0.8;
}

.effect-chips { display: flex; flex-direction: column; gap: 4px; }

.chip {
  font-size: 0.65rem;
  color: #555;
  padding: 3px 8px;
  background: #141414;
  border-radius: 3px;
  display: inline-block;
}

/* Delivered screen */
.screen-delivered { padding: 14px; }

.delivered-list { display: flex; flex-direction: column; gap: 8px; }

.dl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: #111;
  border-radius: 6px;
  border: 1px solid #1a1a1a;
}

.dl-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dl-icon.youtube { background: rgba(255,0,0,0.12); color: #FF0000; }
.dl-icon.reels { background: rgba(131,58,180,0.15); color: #833AB4; }
.dl-icon.twitter { background: rgba(255,255,255,0.05); color: var(--fg-muted); }

.dl-info { flex: 1; }
.dl-name { display: block; font-size: 0.72rem; color: #ccc; font-family: 'DM Sans', monospace; }
.dl-meta { display: block; font-size: 0.62rem; color: #555; margin-top: 1px; }

.dl-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(0,210,106,0.12);
  color: var(--green);
  white-space: nowrap;
}

.done-alt { background: rgba(255,184,0,0.1); color: var(--amber); }

/* Stats row */
.hero-stats {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-light);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.stat { text-align: center; }

.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

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

/* ── Sections shared ── */
.section-header {
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.1;
}

.section-sub {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 560px;
}

/* ── Features ── */
.features {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 5rem);
  background: var(--bg-2);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  max-width: 1280px;
  margin: 0 auto;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  background: var(--bg-2);
  padding: clamp(2rem, 4vw, 3.5rem);
  transition: background 0.2s;
}

.feature-card:hover { background: var(--bg-card); }

.feat-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 1.5rem;
  font-family: 'DM Sans', monospace;
}

.feat-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.feat-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feat-stat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--red);
  background: var(--red-dim);
  border: 1px solid rgba(255,61,0,0.2);
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* ── Process ── */
.process {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 5rem);
  background: var(--bg);
}

.process .section-header { max-width: 1280px; margin: 0 auto 4rem; }

.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--red-dim);
  border: 1px solid rgba(255,61,0,0.2);
  border-radius: 14px;
  margin: 0 auto 1.25rem;
  color: var(--red);
}

.step-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--fg-dim);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

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

.step-connector {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* ── Pricing ── */
.pricing {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 5rem);
  background: var(--bg-2);
  border-top: 1px solid var(--border-light);
}

.pricing .section-header { max-width: 1280px; margin: 0 auto 4rem; }

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

.plan {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan-scale {
  border-color: rgba(255,61,0,0.4);
  background: linear-gradient(180deg, rgba(255,61,0,0.05) 0%, var(--bg-card) 40%);
}

.plan-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--red);
  color: white;
  padding: 4px 12px;
  border-radius: 0 0 6px 6px;
}

.plan-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}

.plan-price {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.plan-price span {
  font-size: 1.2rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--fg-muted);
  font-weight: 400;
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  min-height: 3.2em;
}

.plan-features {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.plan-features li {
  font-size: 0.88rem;
  color: var(--fg-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.pricing-note {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Closing ── */
.closing {
  padding: clamp(6rem, 12vw, 10rem) clamp(1.5rem, 5vw, 5rem);
  background: var(--bg);
  text-align: center;
  border-top: 1px solid var(--border-light);
}

.closing-inner { max-width: 860px; margin: 0 auto; }

.closing-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.closing-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.closing-cta { display: flex; justify-content: center; }

/* ── Footer ── */
footer {
  padding: 2.5rem clamp(1.5rem, 5vw, 5rem);
  border-top: 1px solid var(--border-light);
  background: var(--bg);
}

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

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

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

.footer-links {
  font-size: 0.78rem;
  color: var(--fg-dim);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .process-flow { flex-direction: column; align-items: center; }
  .step-connector { transform: rotate(90deg); }
}

@media (max-width: 600px) {
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .stat-divider { display: none; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { text-align: center; justify-content: center; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}