:root {
  color-scheme: dark;
  --bg: #07111f;
  --panel: rgba(8, 15, 29, 0.82);
  --panel-strong: #0f1b2d;
  --text: #edf4ff;
  --muted: #b8c6e3;
  --accent: #7c9cff;
  --accent-2: #61f0c1;
  --border: rgba(255, 255, 255, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(124, 156, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #040b15 0%, var(--bg) 45%, #050a12 100%);
}

img { max-width: 100%; }

a { text-decoration: none; }

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.84), rgba(7, 17, 31, 0.58)),
    url("https://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/Gubbo_2014a.jpg/960px-Gubbo_2014a.jpg?_=20140729095431") center/cover no-repeat;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand,
.nav-link {
  color: var(--text);
  font-weight: 600;
}

.nav-link {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 72px);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.8rem;
  color: var(--accent-2);
}

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  margin-bottom: 0.75rem;
}

.lead,
p {
  color: var(--muted);
  line-height: 1.6;
}

.actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button:hover { transform: translateY(-1px); }

.button.primary {
  background: linear-gradient(135deg, var(--accent), #a581ff);
  color: #02101e;
}

.button.secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
  padding: 1.2rem;
}

.spotlight {
  background: linear-gradient(180deg, rgba(15, 27, 45, 0.95), rgba(8, 15, 29, 0.97));
}

.spotlight ul {
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.section {
  padding: 4rem 0;
}

.alt-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.align-center { align-items: center; }

.stats-card {
  display: grid;
  gap: 0.75rem;
}

.stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 0.9rem;
}

.stat strong {
  display: block;
  font-size: 1.6rem;
  color: #ffffff;
}

.stat span { color: var(--muted); }

.contact-card { text-align: center; }

.video-card {
  text-align: left;
}

.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}

.video-wrap iframe,
.video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

@media (max-width: 980px) {
  .hero-grid,
  .grid.two,
  .grid.three { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav { flex-wrap: wrap; }
  .nav-link { display: none; }
  .actions { flex-wrap: wrap; }
  .button { width: 100%; }
  .section { padding: 3rem 0; }
}
