/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0f;
  --bg-2: #111118;
  --bg-card: #16161e;
  --fg: #f0ede8;
  --fg-muted: #8a8a96;
  --accent: #e8c547;
  --accent-dim: rgba(232, 197, 71, 0.12);
  --border: rgba(240, 237, 232, 0.08);
  --border-accent: rgba(232, 197, 71, 0.25);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  background: rgba(10, 10, 15, 0.85);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-decoration: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--fg); }

.nav-cta {
  background: var(--accent);
  color: #0a0a0f;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.85; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232, 197, 71, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(232, 197, 71, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Grid pattern overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240, 237, 232, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 237, 232, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 20%, transparent 80%);
  pointer-events: none;
}

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

.hero-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--fg);
  position: relative;
  z-index: 1;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* Timeline Widget */
.hero-visual {
  position: relative;
  z-index: 1;
  margin-bottom: 72px;
  width: 100%;
  max-width: 780px;
}

.timeline-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,197,71,0.08);
}

.tw-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}

.tw-dots {
  display: flex;
  gap: 6px;
}
.tw-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(240,237,232,0.15);
}
.tw-dots span:nth-child(1) { background: #ff5f57; }
.tw-dots span:nth-child(2) { background: #febc2e; }
.tw-dots span:nth-child(3) { background: #28c840; }

.tw-title {
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-weight: 400;
}

.tw-tracks {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tw-track {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 12px;
}

.tw-label {
  font-size: 0.7rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.tw-clip-group {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 28px;
}

.tw-clip {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(232,197,71,0.4), rgba(232,197,71,0.15));
  border: 1px solid rgba(232,197,71,0.3);
}

.tw-clip.audio-clip {
  background: linear-gradient(135deg, rgba(100,120,255,0.4), rgba(100,120,255,0.15));
  border-color: rgba(100,120,255,0.3);
}

.tw-clip.cap-clip {
  background: linear-gradient(135deg, rgba(80,200,160,0.4), rgba(80,200,160,0.15));
  border-color: rgba(80,200,160,0.3);
}

.tw-progress {
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(232,197,71,0.3));
  border-radius: 0 2px 2px 0;
  width: 42%;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.2rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

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

/* ===== PROOF ===== */
.proof {
  padding: 48px 48px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}

.proof-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.proof-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-mark {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(240,237,232,0.25);
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
}

.proof-note {
  font-size: 0.72rem;
  color: rgba(240,237,232,0.2);
  margin-top: 16px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

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

/* ===== SERVICES ===== */
.services {
  padding: 100px 48px;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.service-card {
  padding: 40px 36px;
  background: var(--bg-card);
  transition: background 0.2s;
  position: relative;
}

.service-card:hover {
  background: #1c1c26;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.service-card:hover::after { opacity: 0.4; }

.sc-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 48px;
  background: var(--bg-2);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.step {
  flex: 1;
  max-width: 200px;
  text-align: center;
  padding: 0 24px;
}

.step-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.8rem;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.step h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}

.step-connector {
  width: 60px;
  flex-shrink: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
  margin-top: 30px;
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 48px;
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.pricing-card {
  padding: 40px 32px;
  background: var(--bg-card);
  position: relative;
  transition: background 0.2s;
}

.pricing-card:hover { background: #1a1a22; }

.pricing-card.featured {
  background: #1e1e28;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.pc-badge {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.pc-tier {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
  font-weight: 500;
}

.pc-price {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 3rem;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--fg);
}

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

.pc-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: 24px;
  font-weight: 300;
}

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

.pc-features li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
  font-weight: 300;
}

.pc-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-style: italic;
}

.pricing-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.cta-btn {
  background: var(--accent);
  color: #0a0a0f;
  border-radius: 12px;
  padding: 14px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.2s;
}

.cta-btn:hover { opacity: 0.85; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 48px;
  background: var(--bg-2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.testimonial {
  padding: 40px 36px;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.t-quote {
  font-size: 0.98rem;
  color: var(--fg);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
  font-style: italic;
}

.t-quote::before { content: '\201C'; }
.t-quote::after { content: '\201D'; }

.t-author {
  font-size: 0.78rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 48px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(232,197,71,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.closing-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 40px;
}

.closing-value {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.cv-label {
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* ===== CLOSING CTA ===== */
.closing-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.cta-btn-large {
  font-size: 1rem;
  padding: 16px 40px;
}

.cta-secondary {
  font-size: 0.88rem;
  color: var(--fg-muted);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}

.cta-secondary:hover { color: var(--fg); }

/* ===== FOOTER ===== */
.footer {
  padding: 64px 48px 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 32px;
  font-weight: 300;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-links span {
  font-size: 0.78rem;
  color: var(--fg-muted);
  cursor: pointer;
  transition: color 0.2s;
}

.footer-links span:hover { color: var(--fg); }

.footer-bottom {
  font-size: 0.72rem;
  color: rgba(240,237,232,0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .nav-actions { gap: 16px; }
  .nav-link { display: none; }
  .closing-actions { flex-direction: column; }
  .closing-actions .cta-secondary { margin-top: -8px; }
  .hero { padding: 120px 24px 60px; }
  .hero-stats { gap: 24px; }
  .stat-div { display: none; }
  .services, .how-it-works, .pricing, .testimonials, .closing { padding: 72px 24px; }
  .steps { flex-direction: column; align-items: center; gap: 40px; }
  .step-connector { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .proof-logos { gap: 24px; }
  .proof { padding: 40px 24px; }
  .footer { padding: 48px 24px 32px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .timeline-widget { display: none; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.8rem; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat { display: flex; align-items: center; gap: 16px; }
  .stat-num { font-size: 1.8rem; }
}