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

:root {
  --bg: #0D0F1A;
  --bg-2: #12141F;
  --fg: #F0EDE8;
  --fg-muted: #8B8A87;
  --accent: #CAFF2D;
  --accent-dim: rgba(202, 255, 45, 0.12);
  --border: rgba(240, 237, 232, 0.08);
  --radius: 8px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 15, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--fg-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--fg); }
.nav-cta {
  background: var(--accent) !important;
  color: #0D0F1A !important;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-weight: 700 !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; color: #0D0F1A !important; }

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

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(202, 255, 45, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(202, 255, 45, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  padding: 6px 16px;
  border: 1px solid rgba(202, 255, 45, 0.2);
  border-radius: 100px;
  background: var(--accent-dim);
}

.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--fg);
}

.hero-headline .accent {
  color: var(--accent);
  display: block;
}

.hero-lede {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.cta-primary {
  background: var(--accent);
  color: #0D0F1A;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.cta-primary:hover { opacity: 0.9; }

.cta-secondary {
  background: transparent;
  color: var(--fg);
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: border-color 0.2s;
}
.cta-secondary:hover { border-color: rgba(202, 255, 45, 0.4); }
  font-weight: 300;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 40px;
  display: inline-flex;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

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

/* === MANIFESTO === */
.manifesto {
  padding: 100px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}

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

.manifesto-text {
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.6;
  color: var(--fg-muted);
  font-weight: 300;
  margin-bottom: 24px;
}

.manifesto-highlight {
  color: var(--fg);
  font-weight: 400;
}

.manifesto-rule {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin-top: 40px;
}

/* === FEATURES === */
.features {
  padding: 120px 24px;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 64px;
}

.features-header {
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.feature-card {
  background: var(--bg);
  padding: 36px 32px;
  position: relative;
  transition: background 0.3s;
}

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

.feature-card--large {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
}

.feature-icon {
  margin-bottom: 20px;
}

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

.feature-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.feature-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(202, 255, 45, 0.15);
  padding: 4px 10px;
  border-radius: 100px;
}

/* === HOW IT WORKS === */
.howitworks {
  padding: 120px 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.howitworks-inner {
  max-width: 1000px;
  margin: 0 auto;
}

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

.step {
  flex: 1;
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: rgba(202, 255, 45, 0.08);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

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

.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.step-connector {
  padding: 0 24px;
  padding-top: 20px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.connector-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--border), rgba(202, 255, 45, 0.3), var(--border));
}

/* === LANGUAGES === */
.languages {
  padding: 120px 24px;
  border-top: 1px solid var(--border);
}

.languages-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.languages-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.6;
}

.language-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.language-col h4.lang-col-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

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

.lang-list li {
  font-size: 14px;
  color: var(--fg-muted);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: color 0.2s;
}

.lang-list li:hover { color: var(--fg); }

/* === CLOSING === */
.closing {
  padding: 120px 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

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

.closing-quote {
  margin-bottom: 64px;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.quote-attr {
  font-size: 13px;
  color: var(--fg-muted);
}

.closing-rule {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 64px;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === FOOTER === */
.footer {
  padding: 64px 24px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 20px 0 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--fg-muted);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

/* === PRICING === */
.pricing {
  padding: 120px 24px;
  border-top: 1px solid var(--border);
}

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

.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.plan-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.plan-card:hover {
  border-color: rgba(202, 255, 45, 0.2);
  transform: translateY(-2px);
}

.plan-card--featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(202, 255, 45, 0.06) 0%, var(--bg-2) 60%);
  box-shadow: 0 0 0 1px rgba(202, 255, 45, 0.12), 0 24px 48px rgba(0,0,0,0.4);
  transform: scale(1.02);
}

.plan-card--featured:hover {
  transform: scale(1.02) translateY(-2px);
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0D0F1A;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  color: var(--fg);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.plan-card--featured .plan-price {
  color: var(--accent);
}

.plan-price-euro {
  font-size: 28px;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
  font-weight: 600;
}

.plan-price-period {
  font-size: 16px;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0;
}

.plan-features {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

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

.plan-feature svg {
  flex-shrink: 0;
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--fg);
  background: transparent;
  transition: all 0.2s;
  margin-top: auto;
}

.plan-cta:hover {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.plan-cta--primary {
  background: var(--accent);
  color: #0D0F1A;
  border-color: var(--accent);
}

.plan-cta--primary:hover {
  background: #d8f52e;
  border-color: #d8f52e;
  color: #0D0F1A;
}

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--fg-muted);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav-links { display: none; }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card--large {
    grid-column: span 1;
  }

  .language-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    flex-direction: column;
    gap: 40px;
  }

  .step-connector {
    display: none;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 24px 32px;
  }

  .stat-divider { display: none; }

  .stat {
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
  }

  .stat:last-child { border-bottom: none; padding-bottom: 0; }

  .hero-headline { letter-spacing: -0.02em; }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .plan-card--featured {
    transform: none;
  }

  .plan-card--featured:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 480px) {
  .language-grid { grid-template-columns: 1fr; }
}

/* === DEMO PAGE === */
.demo-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

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

.demo-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
}

.demo-header {
  text-align: center;
  margin-bottom: 56px;
}

.demo-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid rgba(202, 255, 45, 0.2);
  border-radius: 100px;
  background: var(--accent-dim);
}

.demo-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 68px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 20px;
}

.demo-lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

/* === DEMO PLAYER === */
.demo-player-wrap {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}

.demo-player {
  padding: 32px;
}

.demo-player-lang-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.demo-lang-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid;
}

.demo-lang-badge--original {
  color: var(--fg-muted);
  border-color: var(--border);
  background: rgba(255,255,255,0.03);
}

.demo-lang-badge--dubbed {
  color: var(--accent);
  border-color: rgba(202, 255, 45, 0.25);
  background: var(--accent-dim);
}

.demo-arrow {
  opacity: 0.6;
}

.demo-video-stage {
  margin-bottom: 24px;
}

.demo-video-placeholder {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.demo-video-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.demo-video-label {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
}

/* Waveform */
.demo-waveform {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
}

.demo-waveform-label {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 10px;
}

.demo-waveform-bars {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 32px;
}

.demo-waveform-bar {
  flex: 1;
  height: 8px;
  background: rgba(202, 255, 45, 0.15);
  border-radius: 2px;
  transition: height 0.4s ease;
}

/* Transcript */
.demo-transcript {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.demo-transcript-col {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
}

.demo-transcript-label {
  display: block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.demo-transcript-label--accent {
  color: var(--accent);
}

.demo-transcript-text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--fg-muted);
  font-style: italic;
}

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

/* Quality row */
.demo-quality-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.2);
}

.demo-quality-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 28px;
  border-right: 1px solid var(--border);
}

.demo-quality-item:last-child {
  border-right: none;
}

.demo-quality-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.demo-quality-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}

.demo-quality-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* CTA */
.demo-cta-wrap {
  text-align: center;
  margin-top: 64px;
}

.demo-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 12px;
}

.demo-cta-sub {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 28px;
}

.demo-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.demo-cta-note {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .demo-player { padding: 20px; }
  .demo-quality-row {
    grid-template-columns: 1fr;
  }
  .demo-quality-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .demo-quality-item:last-child { border-bottom: none; }
  .demo-transcript { flex-direction: column; }
  .demo-transcript-divider { display: none; }
}
