/* === CINEMATOR STYLE === */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --red: #c0392b;
  --dark: #0a0a0a;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --text: #e8e8e8;
  --text-muted: #888;
  --font: 'Georgia', serif;
  --font-sans: 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.7;
}

/* === NAV === */
#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: var(--font-sans);
  font-size: 1.4rem; font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--text); text-decoration: none;
}
.logo span { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 2rem; }
#navMenu {
  display: flex; list-style: none; gap: 2rem; align-items: center;
}
#navMenu a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.9rem; letter-spacing: 0.05em;
  transition: color 0.2s;
}
#navMenu a:hover { color: var(--gold); }
.btn-nav {
  background: var(--gold) !important; color: var(--dark) !important;
  padding: 0.4rem 1rem; border-radius: 4px;
  font-weight: 700 !important;
}
.lang-switcher { display: flex; gap: 0.3rem; }
.lang-btn {
  background: none; border: 1px solid rgba(201,168,76,0.3);
  color: var(--text-muted); padding: 0.2rem 0.5rem;
  border-radius: 3px; font-size: 0.75rem; cursor: pointer;
  transition: all 0.2s;
}
.lang-btn:hover, .lang-btn.active {
  border-color: var(--gold); color: var(--gold);
}
.nav-burger { display: none; background: none; border: none; cursor: pointer; }
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); margin: 5px 0; transition: 0.3s;
}

/* === HERO === */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a00 50%, #0a0a0a 100%);
}
#filmCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.15;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 2rem;
  max-width: 800px;
}
.hero-eyebrow {
  font-size: 0.8rem; letter-spacing: 0.3em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400; line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title em {
  color: var(--gold); font-style: italic;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-muted); line-height: 1.8;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--dark);
  padding: 0.85rem 2.5rem; border-radius: 4px;
  text-decoration: none; font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid var(--gold); color: var(--gold);
  padding: 0.85rem 2.5rem; border-radius: 4px;
  text-decoration: none; font-size: 0.95rem;
  transition: all 0.2s;
}
.btn-ghost:hover { background: rgba(201,168,76,0.1); }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: var(--gold); font-size: 1.5rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* === SECTIONS === */
.section { padding: 6rem 2rem; }
.section-dark { background: var(--dark2); }
.section-black { background: var(--dark); }
.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 720px; margin: 0 auto; }
.section-title {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; color: var(--gold);
  margin-bottom: 1.5rem; text-align: center;
}
.section-lead {
  font-size: 1.1rem; color: var(--text-muted);
  line-height: 1.9; text-align: center;
  margin-bottom: 3rem; max-width: 680px;
  margin-left: auto; margin-right: auto;
}

/* === FEATURES GRID === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.feature-card {
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px; padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.feature-icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-card h3 {
  font-size: 1.1rem; color: var(--gold);
  margin-bottom: 0.5rem;
}
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* === VIDEO === */
.video-wrapper {
  max-width: 800px; margin: 0 auto;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px; overflow: hidden;
}
.video-wrapper video { width: 100%; display: block; }
.video-caption {
  text-align: center; padding: 1rem;
  font-size: 0.8rem; color: var(--text-muted);
  background: var(--dark3);
  letter-spacing: 0.05em;
}

/* === ROADMAP === */
.roadmap {
  max-width: 640px; margin: 3rem auto 0;
  position: relative;
}
.roadmap::before {
  content: ''; position: absolute;
  left: 12px; top: 0; bottom: 0;
  width: 2px; background: rgba(201,168,76,0.2);
}
.roadmap-item {
  display: flex; gap: 1.5rem;
  margin-bottom: 2rem; position: relative;
}
.roadmap-dot {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.3);
  background: var(--dark); flex-shrink: 0;
  margin-top: 0.2rem; position: relative; z-index: 1;
  transition: all 0.3s;
}
.roadmap-item.done .roadmap-dot {
  background: var(--gold); border-color: var(--gold);
}
.roadmap-item.active .roadmap-dot {
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(201,168,76,0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 12px rgba(201,168,76,0.5); }
  50% { box-shadow: 0 0 24px rgba(201,168,76,0.8); }
}
.roadmap-content h3 { color: var(--text); margin-bottom: 0.3rem; }
.roadmap-item.done .roadmap-content h3 { color: var(--gold); }
.roadmap-content p { color: var(--text-muted); font-size: 0.9rem; }

/* === MANIFESTO === */
.manifesto-quote {
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem; margin: 3rem 0;
  font-family: var(--font);
  font-size: 1.2rem; line-height: 1.9;
  color: var(--text); font-style: italic;
}
.manifesto-quote cite {
  display: block; margin-top: 1rem;
  font-size: 0.85rem; color: var(--gold);
  font-style: normal; letter-spacing: 0.1em;
}

/* === EMAIL FORM === */
.email-form {
  display: flex; gap: 0.5rem; max-width: 440px;
  margin: 0 auto 1rem;
}
.email-form input {
  flex: 1; padding: 0.8rem 1rem;
  background: var(--dark3); border: 1px solid rgba(201,168,76,0.3);
  color: var(--text); border-radius: 4px; font-size: 0.95rem;
}
.email-form input:focus {
  outline: none; border-color: var(--gold);
}
.email-form button {
  background: var(--gold); color: var(--dark);
  border: none; padding: 0.8rem 1.5rem;
  border-radius: 4px; font-weight: 700;
  cursor: pointer; transition: background 0.2s;
}
.email-form button:hover { background: var(--gold-light); }
.privacy-note {
  text-align: center; font-size: 0.8rem;
  color: var(--text-muted);
}

/* === FOOTER === */
.footer {
  background: #050505; padding: 2rem;
  text-align: center; color: var(--text-muted);
  font-size: 0.85rem; border-top: 1px solid rgba(201,168,76,0.1);
}
.footer a { color: var(--gold); text-decoration: none; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  #navMenu { display: none; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    padding: 1rem 2rem; gap: 1rem;
  }
  #navMenu.open { display: flex; }
  .nav-burger { display: block; }
  .email-form { flex-direction: column; }
}
