*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #05060a;
  --panel: rgba(15, 17, 28, 0.7);
  --accent: #46d6ff;
  --accent-2: #ff3ecf;
  --text: #e8ecf5;
  --muted: #9aa3b5;
  --card: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 10px 50px rgba(0, 0, 0, 0.6);
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(70, 214, 255, 0.08), transparent 30%),
              radial-gradient(circle at 80% 0%, rgba(255, 62, 207, 0.08), transparent 35%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 10px;
}

header.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6vw;
  background: linear-gradient(180deg, rgba(5, 6, 10, 0.92), rgba(5, 6, 10, 0.6));
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  background: #0d101d;
  padding: 6px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

nav {
  display: flex;
  gap: 18px;
  font-weight: 600;
}

nav a {
  padding: 8px 10px;
  border-radius: 8px;
  transition: all 0.2s ease;
  color: var(--muted);
}

nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  padding: 80px 6vw 60px;
}

.hero__content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(32px, 5vw, 54px);
  margin: 10px 0 16px;
  line-height: 1.05;
}

.hero__content .lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 20px;
}

.hero__content .eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.button.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #06111a;
  box-shadow: 0 10px 30px rgba(70, 214, 255, 0.25);
}

.button.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(70, 214, 255, 0.35);
}

.button.ghost {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.button.ghost:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.hero__media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero__media img {
  width: 100%;
  display: block;
}

.hero__glow {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
  z-index: -1;
}

.hero__glow--left {
  background: var(--accent);
  top: 10%;
  left: 5%;
}

.hero__glow--right {
  background: var(--accent-2);
  bottom: -5%;
  right: 10%;
}

.panel {
  padding: 40px 6vw 10px;
}

.text-block {
  max-width: 820px;
  margin: 0 auto 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: var(--shadow);
}

.text-block h2 {
  font-family: 'Orbitron', sans-serif;
  margin: 0 0 12px;
  letter-spacing: 0.5px;
}

.text-block p {
  margin: 0;
  color: var(--muted);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.feature-list li {
  padding: 12px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.gallery {
  padding-bottom: 30px;
}

.gallery__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 12px;
}

.gallery__grid img {
  border: 1px solid var(--border);
  background: #0d101d;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery__grid img:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.trailer {
  text-align: center;
  padding-bottom: 60px;
}

.trailer video {
  width: min(960px, 100%);
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #0d101d;
  box-shadow: var(--shadow);
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw 26px;
  border-top: 1px solid var(--border);
  background: rgba(5, 6, 10, 0.8);
}

.footer__links {
  display: flex;
  gap: 14px;
  color: var(--muted);
  font-weight: 600;
}

.footer__links a:hover {
  color: var(--text);
}

@media (max-width: 720px) {
  header.navbar {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 56px;
  }

  .gallery__grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

