/* ── Palette ── */
:root {
  --bg:          #0a0a0a;
  --surface:     #111111;
  --border:      rgba(255, 255, 255, 0);
  --text:        #ffffff;
  --accent:      #e44900;
  --accent-hover:#ef6a2c;
  --font:        Georgia, 'Times New Roman', serif;
}

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

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  overflow-x: hidden;
}

#bg-video {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -1;
}
#video-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 0;
  pointer-events: none;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 53px;
  z-index: 10;
  background: rgba(18, 7, 0, 0.666);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #ffffff;
}
.nav-logo {
  height: 40px;
  width: auto;
  margin-left: 22px;
}
.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
  font-size: 17px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }

.btn {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 11px 24px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn:hover { background: #1e1e1e; }

/* ── Hero ── */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  gap: 0;
}
.hero h1 {
  font-size: clamp(47px, 7.9vw, 95px);
  font-weight: 800;
  line-height: 1.05;
  max-width: 990px;
  letter-spacing: -2px;
  color: var(--text);
  text-shadow: 0px 1.16px 20px rgba(0, 0, 0, 0.336);
}
.hero p {
  margin-top: 22px;
  font-size: 20px;
  color: var(--text-muted);
  text-shadow: 0px 1.16px 20px rgba(0, 0, 0, 0.336);
}
.hero .btn-cta {
  margin-top: 44px;
  background: var(--accent);
  color: #fff;
  border: 1.617px solid #fff;
  padding: 18px 44px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.hero .btn-cta:hover { background: var(--accent-hover); }


/* ── Modal overlay ── */
#modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 100;
  align-items: center;
  justify-content: center;
}
#modal-overlay.open { display: flex; }

#modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 53px 44px 44px;
  width: 100%;
  max-width: 616px;
  margin: 24px;
  position: relative;
}

#modal-close {
  position: absolute;
  top: 18px; right: 22px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
#modal-close:hover { color: var(--text); }

#modal h2 {
  text-align: center;
  font-size: 29px;
  font-weight: 700;
  margin-bottom: 9px;
  color: var(--text);
}
#modal .modal-subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 31px;
}

#modal input[type=text],
#modal input[type=email] {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  padding: 18px 20px;
  border-radius: 11px;
  margin-bottom: 15px;
  outline: none;
  transition: border-color 0.2s;
}
#modal input[type=text]:focus,
#modal input[type=email]:focus { border-color: var(--accent); }
#modal input::placeholder { color: var(--text-muted); }

#modal .modal-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  padding: 18px;
  border: 1.617px solid #fff;
  border-radius: 11px;
  cursor: pointer;
  transition: background 0.2s;
}
#modal .modal-submit:hover { background: var(--accent-hover); }

/* hidden honeypot */
#modal .mc-honeypot { position: absolute; left: -5000px; }

/* ── Mobile ── */
@media (max-width: 768px) {
  nav {
    padding: 12px 20px;
  }
  .nav-links {
    display: none;
  }
  .nav-logo {
    margin-left: 0;
    height: 28px;
  }
  .hero h1 {
    font-size: clamp(36px, 9vw, 60px);
    letter-spacing: -1px;
  }
  .hero p {
    font-size: 16px;
  }
  .hero .btn-cta {
    padding: 14px 32px;
    font-size: 16px;
  }
  #modal {
    padding: 40px 24px 32px;
    margin: 16px;
  }
}
