:root {
  --bg: #08080c;
  --red: #ff1a3c;
  --orange: #ff6a00;
  --yellow: #ffc800;
  --text: #ffffff;
  --muted: #b0aec4;
  --mx: 0px;
  --my: 0px;
}

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

html, body {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
}

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

/* ===== Background ===== */
.stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}


/* Dark overlay for text readability */
.stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 60% 40%, transparent 20%, rgba(8,8,12,.6) 70%),
    linear-gradient(180deg, rgba(8,8,12,.3) 0%, rgba(8,8,12,.7) 60%, rgba(8,8,12,.95) 100%);
  pointer-events: none;
}

/* Noise texture */
.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

/* ===== Hero section ===== */
.hero {
  position: relative;
  z-index: 4;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 18px clamp(20px, 5vw, 80px) 12px;
}

/* Nav */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.brand img {
  width: 36px;
  height: 36px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .18em;
  margin-top: 2px;
  font-weight: 700;
}

.fps-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(255,106,0,.35);
  background: rgba(255,106,0,.1);
  border-radius: 999px;
  color: #ffd2a8;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 20px rgba(255,106,0,.15);
}

.fps-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
  animation: dotPulse 1.8s ease-in-out infinite;
}

/* Content */
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
  padding: 10px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(255,26,60,.4);
  border-radius: 999px;
  background: rgba(255,26,60,.1);
  color: #ffd0d8;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 14px;
  width: fit-content;
  box-shadow: 0 0 24px rgba(255,26,60,.15);
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--red);
  box-shadow: 0 0 14px var(--red);
  transform: rotate(45deg);
}

h1 {
  font-size: clamp(36px, 6vw, 72px);
  line-height: .88;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: -.06em;
}

h1 .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.7);
}

h1 .fire {
  display: inline-block;
  background: linear-gradient(90deg, #fff 0%, #ffc800 30%, #ff6a00 60%, #ff1a3c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(255,106,0,.3);
}

.sub {
  margin-top: 12px;
  color: var(--muted);
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.5;
  max-width: 560px;
}

.sub strong { color: #fff; font-weight: 800; }

/* FPS stats row */
.fps-stats {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.fps-stat {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  min-width: 120px;
}

.fps-stat b {
  display: block;
  font-size: 20px;
  color: #fff;
  margin-bottom: 3px;
}

.fps-stat span {
  font-size: 11px;
  color: #9f9bb4;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.3;
}

.fps-stat.highlight {
  border-color: rgba(255,106,0,.4);
  background: rgba(255,106,0,.08);
}

.fps-stat.highlight b {
  color: var(--orange);
  text-shadow: 0 0 16px rgba(255,106,0,.5);
}

/* Bullets */
.bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.bullet {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  backdrop-filter: blur(12px);
}

.bullet b { color: var(--orange); }

/* CTA */
.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.cta {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.2);
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  color: #fff;
  font-weight: 950;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 16px 40px rgba(255,106,0,.3), 0 0 0 6px rgba(255,106,0,.08);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.cta::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,.5) 45%, transparent 70%);
  transform: translateX(-120%);
  animation: ctaShine 3.8s ease-in-out infinite;
}

.cta:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 22px 55px rgba(255,106,0,.45), 0 0 0 8px rgba(255,106,0,.1);
}

/* Disclaimer */
.disclaimer {
  position: fixed;
  bottom: 8px;
  left: clamp(20px, 5vw, 80px);
  z-index: 5;
  color: rgba(255,255,255,.3);
  font-size: 10px;
  line-height: 1.3;
  max-width: 600px;
}

/* ===== Animations ===== */

@keyframes ctaShine {
  0%, 40% { transform: translateX(-120%); }
  70%, 100% { transform: translateX(120%); }
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .fps-badge { display: none; }
  .fps-stats { gap: 8px; }
  .fps-stat { min-width: 90px; padding: 10px 14px; }
  .fps-stat b { font-size: 20px; }
  .cta { width: 100%; }
  h1 { font-size: clamp(40px, 12vw, 72px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}
