:root {
  --bg: #0d0e12;
  --bg2: #111318;
  --bg3: #161820;
  --fg: #f0ece4;
  --fg2: #a8a49c;
  --fg3: #6a6860;
  --accent: #f0a500;
  --accent-dim: rgba(240,165,0,0.15);
  --accent-glow: rgba(240,165,0,0.4);
  --font-display: 'Cinzel', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 4px;
  --max-w: 1200px;
}

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

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

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

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(13,14,18,0.95) 0%, transparent 100%);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--fg);
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 80px 80px;
  position: relative;
  overflow: hidden;
  gap: 40px;
}
.hero__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,165,0,0.08) 0%, transparent 70%);
  top: 10%; right: 5%;
  transform: translateY(-50%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
}
.hero__content {
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  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(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--fg);
}
.hero__headline em {
  font-style: normal;
  color: var(--accent);
}
.hero__sub {
  font-size: 1.1rem;
  color: var(--fg2);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero__agents {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__agent {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__agent-name {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  background: var(--accent-dim);
  border: 1px solid rgba(240,165,0,0.25);
  padding: 4px 10px;
  border-radius: 2px;
}
.hero__agent-desc {
  font-size: 0.85rem;
  color: var(--fg3);
}

/* ── REEL VISUAL ── */
.hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reel {
  position: relative;
  width: 340px;
  height: 340px;
  animation: spin 20s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.reel__outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(240,165,0,0.4);
}
.reel__spoke {
  position: absolute;
  width: 2px;
  height: 50%;
  background: rgba(240,165,0,0.3);
  top: 0; left: 50%;
  transform-origin: bottom center;
  transform: translateX(-50%);
}
.reel__spoke:nth-child(1) { transform: translateX(-50%) rotate(0deg); }
.reel__spoke:nth-child(2) { transform: translateX(-50%) rotate(60deg); }
.reel__spoke:nth-child(3) { transform: translateX(-50%) rotate(120deg); }
.reel__spoke:nth-child(4) { transform: translateX(-50%) rotate(180deg); }
.reel__spoke:nth-child(5) { transform: translateX(-50%) rotate(240deg); }
.reel__spoke:nth-child(6) { transform: translateX(-50%) rotate(300deg); }
.reel__hub {
  position: absolute;
  top: 50%; left: 50%;
  width: 80px; height: 80px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
}
.reel__hole {
  position: absolute;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(240,165,0,0.5);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.reel__hole--1 { width: 50px; height: 50px; top: 10%; left: 50%; transform: translate(-50%, 0); }
.reel__hole--2 { width: 50px; height: 50px; bottom: 10%; left: 50%; transform: translate(-50%, 0); }
.reel__hole--3 { width: 50px; height: 50px; top: 50%; left: 10%; transform: translate(0, -50%); }
.filmstrip {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.filmstrip__frame {
  width: 60px;
  height: 44px;
  border: 1px solid rgba(240,165,0,0.3);
  background: var(--accent-dim);
  border-radius: 2px;
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--bg2);
  padding: 80px;
}
.manifesto__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.manifesto__rule {
  width: 60px;
  height: 1px;
  background: var(--accent);
}
.manifesto__quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 400;
  text-align: center;
  color: var(--fg);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

/* ── SECTION COMMONS ── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg);
  line-height: 1.2;
}
.section-sub {
  font-size: 1rem;
  color: var(--fg3);
  margin-top: 12px;
}

/* ── HOW IT WORKS ── */
.howitworks {
  padding: 100px 80px;
  background: var(--bg);
}
.howitworks__header {
  text-align: center;
  margin-bottom: 72px;
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: var(--max-w);
  margin: 0 auto;
}
.step {
  flex: 1;
  padding: 0 40px;
  text-align: center;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step__number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 20px;
}
.step__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.step__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.step__desc {
  font-size: 0.9rem;
  color: var(--fg3);
  line-height: 1.7;
}
.step__connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(240,165,0,0.3), transparent);
  margin-top: 60px;
  flex-shrink: 0;
}

/* ── AGENTS ── */
.agents {
  padding: 100px 80px;
  background: var(--bg2);
}
.agents__header {
  text-align: center;
  margin-bottom: 64px;
}
.agents__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: var(--max-w);
  margin: 0 auto;
  background: rgba(240,165,0,0.06);
  border: 1px solid rgba(240,165,0,0.08);
}
.featurecard {
  padding: 40px 36px;
  background: var(--bg2);
  border: 1px solid transparent;
}
.featurecard__icon {
  margin-bottom: 20px;
}
.featurecard__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.featurecard__body {
  font-size: 0.875rem;
  color: var(--fg3);
  line-height: 1.7;
}

/* ── FILM PROOF ── */
.filmproof {
  padding: 100px 80px;
  background: var(--bg);
}
.filmproof__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.filmproof__body {
  font-size: 1rem;
  color: var(--fg2);
  line-height: 1.8;
  margin-top: 20px;
}
.filmproof__stats {
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-left: 1px solid rgba(240,165,0,0.2);
  padding-left: 80px;
}
.stat__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 0.85rem;
  color: var(--fg3);
  letter-spacing: 0.05em;
}

/* ── CLOSING ── */
.closing {
  padding: 100px 80px;
  background: var(--bg2);
}
.closing__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing__text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: var(--fg);
  line-height: 1.7;
  font-weight: 400;
}
.closing__rule {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 48px auto;
}
.closing__tagline {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── FOOTER ── */
.footer {
  padding: 40px 80px;
  background: var(--bg);
  border-top: 1px solid rgba(240,165,0,0.1);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
}
.footer__copy {
  font-size: 0.8rem;
  color: var(--fg3);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero {
    padding: 120px 32px 60px;
    grid-template-columns: 1fr;
  }
  .hero__visual { display: none; }
  .howitworks { padding: 60px 32px; }
  .agents { padding: 60px 32px; }
  .agents__grid { grid-template-columns: repeat(2, 1fr); }
  .filmproof { padding: 60px 32px; }
  .filmproof__inner { grid-template-columns: 1fr; gap: 48px; }
  .filmproof__stats { border-left: none; padding-left: 0; border-top: 1px solid rgba(240,165,0,0.2); padding-top: 48px; }
  .steps { flex-direction: column; }
  .step__connector { width: 2px; height: 40px; margin: 0 auto; background: linear-gradient(to bottom, transparent, rgba(240,165,0,0.3), transparent); }
  .manifesto { padding: 60px 32px; }
  .closing { padding: 60px 32px; }
  .footer { padding: 32px; }
  .footer__inner { flex-direction: column; gap: 16px; text-align: center; }
  .nav { padding: 16px 24px; }
}
@media (max-width: 600px) {
  .agents__grid { grid-template-columns: 1fr; }
  .hero__headline { font-size: 2.4rem; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.15s ease;
}
.btn--primary {
  background: var(--accent);
  color: #0d0e12;
}
.btn--primary:hover {
  background: #ffc233;
}
.btn--outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(240,165,0,0.4);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn--sm {
  padding: 7px 14px;
  font-size: 0.8rem;
}
.btn--full {
  width: 100%;
  justify-content: center;
}

/* ── AUTH PAGES ── */
.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
  background: var(--bg);
}
.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--bg2);
  border: 1px solid rgba(240,165,0,0.1);
  border-radius: 6px;
  padding: 48px 40px;
}
.auth-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
  text-align: center;
}
.auth-subtitle {
  font-size: 0.9rem;
  color: var(--fg3);
  margin-bottom: 32px;
  text-align: center;
}
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.auth-switch {
  font-size: 0.85rem;
  color: var(--fg3);
  text-align: center;
  margin-top: 24px;
}
.auth-switch a {
  color: var(--accent);
  text-decoration: none;
}
.auth-switch a:hover {
  text-decoration: underline;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg2);
  letter-spacing: 0.04em;
}
.form-input {
  background: var(--bg3);
  border: 1px solid rgba(240,165,0,0.15);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s;
}
.form-input:focus {
  border-color: rgba(240,165,0,0.5);
}
.form-error {
  background: rgba(240,80,80,0.1);
  border: 1px solid rgba(240,80,80,0.3);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

/* ── NAV AUTH ── */
.nav__auth {
  display: flex;
  align-items: center;
  gap: 10px;
}