:root {
  --bg: #050814;
  --bg2: #0b1430;
  --panel: rgba(12, 18, 40, 0.72);
  --line: rgba(133, 176, 255, 0.2);
  --text: #eef5ff;
  --muted: #9caed1;
  --cyan: #6ee7ff;
  --blue: #7ea4ff;
  --gold: #d9b76f;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  min-height: 100vh;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 20%, rgba(110, 231, 255, 0.10), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(126, 164, 255, 0.16), transparent 26%),
    linear-gradient(160deg, var(--bg), var(--bg2) 55%, #04060d);
  overflow-x: hidden;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(126, 164, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 164, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 90%);
  opacity: .35;
}

.site-header,
.hero,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px min(5vw, 48px);
}

.brand {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  letter-spacing: 0.25em;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: var(--text);
  text-shadow: 0 0 18px rgba(110, 231, 255, 0.25);
}

.social-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-nav a,
.btn {
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.25s ease;
  backdrop-filter: blur(10px);
}

.social-nav a:hover,
.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(110, 231, 255, 0.45);
  box-shadow: 0 0 18px rgba(110, 231, 255, 0.14);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: min(4vw, 48px);
  align-items: center;
  width: min(1200px, calc(100% - 40px));
  margin: 20px auto 40px;
  padding: min(4vw, 38px);
  background: linear-gradient(180deg, rgba(10,16,35,0.72), rgba(8,12,25,0.62));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
}

.eyebrow {
  margin: 0 0 14px;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--cyan);
}

.hero-copy h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  line-height: 0.95;
  margin: 0;
  letter-spacing: 0.12em;
  text-shadow: 0 0 34px rgba(126, 164, 255, 0.2);
}

.lead {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
  margin: 22px 0 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn.primary {
  background: linear-gradient(135deg, rgba(110, 231, 255, 0.20), rgba(126, 164, 255, 0.16));
  border-color: rgba(110, 231, 255, 0.4);
}

.hero-art {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-frame {
  position: relative;
  width: min(100%, 460px);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(217, 183, 111, 0.35);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 0 60px rgba(126, 164, 255, 0.14),
    0 0 32px rgba(217, 183, 111, 0.10);
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(110, 231, 255, 0.09), transparent 18%, transparent 82%, rgba(217,183,111,0.12));
  pointer-events: none;
}

.image-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.45;
  pointer-events: none;
}

.glow-1 {
  width: 150px;
  height: 150px;
  background: rgba(110, 231, 255, 0.22);
  top: 10%;
  right: 8%;
}

.glow-2 {
  width: 180px;
  height: 180px;
  background: rgba(126, 164, 255, 0.18);
  bottom: 8%;
  left: 10%;
}

.site-footer {
  padding: 8px 20px 32px;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    width: min(100% - 24px, 1200px);
    padding: 20px;
    border-radius: 22px;
  }

  .social-nav {
    gap: 10px;
  }

  .social-nav a,
  .btn {
    width: 100%;
    text-align: center;
  }
}
