:root{
  --bg: #05060b;
  --white: #ffffff;
  --muted: rgba(255,255,255,.78);
  --muted2: rgba(255,255,255,.62);
  --glass: rgba(0,0,0,.22);

  /* Brand accent (approx from logo) */
  --accent: #00005B;
  --accent2: rgba(0,0,91,.55);

  --maxw: 1100px;
  --radius: 16px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--white);
  background: var(--bg);
}

.page{
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-media{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.02);
}

/* Overlay: ensures white typography always pops */
.video-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 15, 25, 0.40) 0%,
    rgba(0, 0, 0, 0.05) 50%,
    rgba(15, 15, 25, 0.60) 100%
  );
}

.topbar{
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px 24px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo{
  height: 36px;
  width: auto;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.35));
}

.hero{
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px 24px 28px;
  min-height: calc(100vh - 120px);
  display: grid;
  align-items: center;
}

.hero-inner{
  max-width: 820px;
}

.kicker{
  margin: 0 0 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,255,255,.72);
}

.headline{
  margin: 0 0 14px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.02;
  font-weight: 700;
  text-shadow: 0 12px 30px rgba(0,0,0,.42);
}

.subhead{
  margin: 0 0 26px;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.45;
  color: var(--muted);
  max-width: 58ch;
}

.cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  text-decoration: none;
  color: var(--white);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.btn:hover{ transform: translateY(-1px); border-color: rgba(255,255,255,.34); }

.btn-primary{
  background: linear-gradient(135deg, rgba(0,0,91,.92), rgba(0,0,91,.45));
  border-color: rgba(0,0,91,.65);
}

.btn-primary:hover{
  background: linear-gradient(135deg, rgba(0,0,91,.98), rgba(0,0,91,.55));
}

.btn-ghost{
  background: rgba(0,0,0,.16);
}

.fineprint{
  margin: 18px 0 0;
  font-size: 12px;
  color: var(--muted2);
}

.footer{
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 24px 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: rgba(255,255,255,.72);
}

.footer a{ color: rgba(255,255,255,.82); text-decoration: none; }
.footer a:hover{ text-decoration: underline; }
.dot{ opacity: .6; }

/* Mobile tweaks */
@media (max-width: 480px){
  .topbar{ padding-top: 22px; }
  .brand-logo{ height: 32px; }
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce){
  .hero-video{ display:none; }
  .hero-media{ background: radial-gradient(1200px 800px at 70% 30%, rgba(255,0,160,.18), transparent 55%),
               linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.75)); }
}
