:root {
  --bg: #08090d;
  --panel: #10131a;
  --panel-soft: #151922;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f3f5fb;
  --muted: #bcc4d8;
  --accent: #8b5cf6;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.12), transparent 22%),
    linear-gradient(180deg, #0c0e14 0%, #07080d 100%);
  min-height: 100vh;
}

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

a:hover {
  color: #ffffff;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

iframe {
  width: 100%;
  border: 0;
}

.site-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(10, 12, 18, 0.84);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  font-size: 0.84rem;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 1px solid rgba(255,255,255,0.06);
}

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

.section-block {
  margin-top: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  min-height: 70vh;
}

.hero-visual,
.media-frame {
  background: var(--panel-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

h1, h2 {
  margin: 0;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 0.97;
  max-width: 11ch;
}

h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  line-height: 1.05;
  margin-bottom: 14px;
}

p, li, span {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.hero-copy > p {
  max-width: 64ch;
  margin: 18px 0 0;
}

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

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.quick-stats li {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
}

.quick-stats strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 0.94rem;
}

.video-frame {
  margin-top: 18px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #090b11;
}

.video-frame iframe {
  aspect-ratio: 16 / 9;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.shot {
  padding: 10px;
}

.feature-list {
  margin: 18px 0 0;
  padding-left: 20px;
}

.team-list {
  display: grid;
  gap: 10px;
}

.team-list p {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
}

.team-list strong {
  color: var(--text);
}

.team-list a {
  color: #d2c3ff;
}

.cta-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  padding: 8px 4px 0;
}

.footer p,
.footer a {
  color: #9da8c1;
}

@media (max-width: 960px) {
  .hero,
  .two-column,
  .gallery,
  .footer,
  .topbar {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .topbar {
    position: static;
  }

  .quick-stats {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 20px, 1120px);
    padding-top: 10px;
  }

  .section-block {
    padding: 22px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}
