/* Global CSS - All Production Pages */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #050f1c;
  --bg2: #0a1929;
  --bg3: #0d2035;
  --border: #1a3a55;
  --accent: #00b4f0;
  --accent-light: #33c8ff;
  --text: #d0e8f5;
  --muted: #5a8fa8;
  --font: 'Georgia', serif;
  --sans: system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(5,15,28,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .logo img {
  height: 38px;
  width: auto;
}

nav .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav .nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

nav .nav-cta {
  background: var(--accent);
  color: #050f1c;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  transition: background 0.2s;
}

nav .nav-cta:hover {
  background: var(--accent-light);
}

nav .hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

nav .hamburger:hover {
  color: var(--accent);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 99;
}

.mobile-nav-overlay.open {
  display: block;
}

.mobile-nav-menu {
  display: none;
  position: fixed;
  left: 0;
  top: 64px;
  right: 0;
  bottom: 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  z-index: 100;
  overflow-y: auto;
  flex-direction: column;
}

.mobile-nav-menu.open {
  display: flex;
}

.mobile-nav-menu a, .mobile-nav-menu button {
  display: block;
  width: 100%;
  padding: 1.25rem 2rem;
  text-align: left;
  color: var(--text);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}

.mobile-nav-menu a:hover, .mobile-nav-menu button:hover {
  color: var(--accent);
  background: rgba(0,180,240,0.08);
}

.mobile-nav-menu a.nav-cta {
  background: var(--accent);
  color: #050f1c;
  font-weight: 700;
  margin: 1rem 2rem;
  border-radius: 2px;
  border: none;
  text-align: center;
  padding: 0.85rem 2rem;
}

.mobile-nav-menu a.nav-cta:hover {
  background: var(--accent-light);
  color: #050f1c;
}

.hero {
  margin-top: 64px;
  position: relative;
  height: 75vh;
  min-height: 460px;
  overflow: hidden;
  cursor: pointer;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

.hero:hover img {
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.35) 60%, rgba(5,15,28,0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(0,180,240,0.88);
  border: 3px solid rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.hero:hover .play-btn {
  transform: scale(1.12);
  background: var(--accent);
  box-shadow: 0 6px 50px rgba(0,180,240,0.5);
}

.play-btn svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  margin-left: 5px;
}

.hero-intro {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem 0;
  text-align: center;
}

.hero-intro h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: #fff;
}

.hero-intro .hero-sub {
  color: var(--accent-light);
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  text-align: center;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.btn-accent {
  background: var(--accent);
  color: #050f1c;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-accent:hover {
  background: var(--accent-light);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
  border-bottom: 1px solid var(--border);
}

.section:last-of-type {
  border-bottom: none;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #fff;
  text-align: center;
}

h3 {
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-align: center;
}

h4, h5, h6 {
  text-align: center;
}

.accent-rule {
  width: 900px;
  height: 2px;
  margin: 0 auto 2.5rem auto;
  background: var(--accent);
  display: block;
}

p {
  color: var(--text);
  margin-bottom: 1.1rem;
  font-size: 1.05rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

p:last-child {
  margin-bottom: 0;
}

p a {
  color: var(--accent);
  text-decoration: underline;
  transition: color 0.2s;
}

p a:hover {
  color: var(--accent-light);
}

.link-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.link-list li a {
  display: block;
  padding: 0.6rem 1rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.9rem;
  transition: border-color 0.2s, color 0.2s;
}

.link-list li a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

#videoModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 999;
  align-items: center;
  justify-content: center;
}

#videoModal.open {
  display: flex;
}

#videoFrame {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 3px;
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  z-index: 1000;
}

footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
}

footer img {
  height: 32px;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.social-links a {
  color: var(--muted);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

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

footer p {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.8rem;
  margin: 0;
  text-align: center;
}

.final-cta {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: none;
}

@media (max-width: 768px) {
  nav .nav-links {
    display: none;
  }
  nav .nav-cta {
    display: none;
  }
  nav .hamburger {
    display: block;
  }
}
