:root {
  --bg: #05070d;
  --panel: rgba(12, 15, 28, 0.7);
  --panel-solid: #101423;
  --text: #f5f7ff;
  --muted: #b2b8d4;
  --accent: #76f4ff;
  --accent-strong: #4c8cff;
  --accent-soft: rgba(118, 244, 255, 0.2);
  --border: rgba(118, 244, 255, 0.2);
  --glow: 0 0 40px rgba(118, 244, 255, 0.3);
  --radius: 20px;
}

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

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: radial-gradient(circle at top, #0d1330 0%, var(--bg) 55%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.ambient-glow {
  position: fixed;
  top: -20vh;
  right: -10vw;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(118, 244, 255, 0.2), transparent 70%);
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(5, 7, 13, 0.8);
  border-bottom: 1px solid rgba(118, 244, 255, 0.08);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--glow);
  object-fit: cover;
  background: linear-gradient(135deg, rgba(118, 244, 255, 0.3), rgba(76, 140, 255, 0.2));
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
  transition: color 0.3s ease;
}

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

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: #02040a;
  font-weight: 600;
}

main {
  position: relative;
  z-index: 1;
}

.section {
  padding: 80px 6vw;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 120px 6vw 80px;
  align-items: center;
}

.hero-content h1 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 28px 0 32px;
  flex-wrap: wrap;
}

.primary-btn,
.ghost-btn,
.secondary-btn {
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  letter-spacing: 0.4px;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.primary-btn {
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: #02040a;
  box-shadow: 0 10px 30px rgba(76, 140, 255, 0.35);
}

.primary-btn:hover {
  transform: translateY(-2px);
}

.ghost-btn {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}

.ghost-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

.secondary-btn {
  background: transparent;
  border: 1px solid rgba(118, 244, 255, 0.4);
  color: var(--text);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
}

.hero-metrics h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.6rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-frame {
  position: relative;
  width: min(360px, 80vw);
  aspect-ratio: 1;
  border-radius: 40px;
  background: rgba(8, 11, 22, 0.8);
  border: 1px solid rgba(118, 244, 255, 0.2);
  display: grid;
  place-items: center;
  box-shadow: var(--glow);
}

.hero-ring {
  position: absolute;
  inset: 16px;
  border-radius: 32px;
  border: 1px solid rgba(118, 244, 255, 0.3);
  animation: pulse 6s infinite ease-in-out;
}

.hero-display {
  text-align: center;
  font-family: "Orbitron", sans-serif;
}

.hero-display strong {
  font-size: 1.8rem;
  display: block;
  margin: 8px 0;
}

.section-header {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--muted);
}

.about-grid,
.services-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.about-card,
.service-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid rgba(118, 244, 255, 0.12);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 0 20px rgba(118, 244, 255, 0.08);
}

.about-card h3,
.service-card h3 {
  margin-bottom: 12px;
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
}

.about-card p,
.service-card li {
  color: var(--muted);
}

.service-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.showcase {
  position: relative;
}

.video-showcase {
  display: grid;
  gap: 32px;
}

.featured-video {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(118, 244, 255, 0.12), rgba(12, 15, 28, 0.9));
  border: 1px solid rgba(118, 244, 255, 0.3);
  box-shadow: 0 20px 60px rgba(2, 5, 20, 0.7);
}

.featured-meta {
  display: grid;
  gap: 16px;
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(118, 244, 255, 0.2);
  color: var(--accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured-player {
  position: relative;
}

.player-shell {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(118, 244, 255, 0.3);
  box-shadow: 0 0 30px rgba(118, 244, 255, 0.15);
}

.player-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.video-card {
  padding: 18px;
  border-radius: 18px;
  background: var(--panel-solid);
  border: 1px solid rgba(118, 244, 255, 0.15);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(118, 244, 255, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.video-thumb {
  position: relative;
  padding-top: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(118, 244, 255, 0.2), rgba(12, 15, 28, 0.8));
}

.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
  transition: transform 0.4s ease;
}

.video-card:hover img {
  transform: scale(1.05);
}

.video-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.video-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.services {
  background: rgba(5, 7, 13, 0.7);
}

.pricing-grid,
.offers-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.pricing-card,
.offer-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid rgba(118, 244, 255, 0.18);
  box-shadow: inset 0 0 20px rgba(118, 244, 255, 0.08);
}

.pricing-card h3,
.offer-card h3 {
  font-family: "Orbitron", sans-serif;
  margin-bottom: 10px;
}

.price {
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 600;
}

.offer-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 12px 0;
  color: var(--muted);
}

.cta {
  text-align: center;
}

.cta-content {
  max-width: 620px;
  margin: 0 auto;
  padding: 40px 24px;
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(118, 244, 255, 0.15), rgba(12, 15, 28, 0.9));
  border: 1px solid rgba(118, 244, 255, 0.25);
  box-shadow: var(--glow);
}

.cta-content h2 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.cta-content p {
  color: var(--muted);
  margin-bottom: 24px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.site-footer {
  padding: 60px 6vw 40px;
  border-top: 1px solid rgba(118, 244, 255, 0.1);
  background: #05060e;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  gap: 16px;
  color: var(--muted);
}

.footer-meta {
  color: var(--muted);
  font-size: 0.85rem;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 100px;
  }
}
