/* =========================
   Global Reset / Base
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  background-color: rgb(0, 0, 0);
  margin: 0;
  overflow-x: hidden;

  /* Sticky footer layout */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================
   Sticky Footer Helpers
========================= */
.landing-wrap {
  flex: 1 0 auto;
}

.footer-wrap {
  margin-top: auto;
  flex-shrink: 0;
}

/* =========================
   Shared top/bottom bar
========================= */
.site-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  height: 5rem;
  padding: 0 4rem;
  width: 100%;

  position: relative;
  z-index: 5;

  background-color: rgb(0, 0, 0);

  /* Reduced from 4 layers → 2 layers (big FPS win) */
  box-shadow:
    0 0 6px rgba(125, 249, 255, 0.75),
    0 0 18px rgba(0, 229, 255, 0.35);
}

/* =========================
   Fonts
========================= */
@font-face {
  font-family: orbitron;
  src: url("../font/Orbitron Black.ttf") format("truetype");
}

@font-face {
  font-family: Roboto;
  src: url("../font/RobotoSlab-Light.ttf") format("truetype");
}

/* =========================
   Typography
========================= */
h1 {
  font-family: "orbitron", sans-serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  text-transform: uppercase;
  line-height: 1.5;
  letter-spacing: 0.08em;
  word-spacing: 0;
  color: rgba(233, 255, 255, 1);
  -webkit-text-stroke: 0.4px rgba(0, 0, 0, 0.6);

  /* Reduced from 5 → 3 shadows */
  text-shadow:
    0 0 6px rgba(125, 249, 255, 0.75),
    0 0 18px rgba(0, 229, 255, 0.55),
    0 0 40px rgba(0, 229, 255, 0.25);
}

h2 {
  font-family: "orbitron", sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  text-transform: uppercase;
  line-height: 1.5;
  letter-spacing: 0.14em;
  word-spacing: 0;
  color: rgba(233, 255, 255, 1);
  -webkit-text-stroke: 0.4px rgba(0, 0, 0, 0.6);

  text-shadow:
    0 0 6px rgba(125, 249, 255, 0.65),
    0 0 18px rgba(0, 229, 255, 0.45);
}

p {
  font-family: "roboto", sans-serif;
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  line-height: 1.1;
  letter-spacing: 2px;
  word-spacing: 1px;
  color: rgba(41, 204, 175, 1);
}

/* =========================
   Button text
========================= */
.button-text {
  font-family: "roboto", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(233, 255, 255, 1);

  /* Reduced */
  text-shadow:
    0 0 6px rgba(185, 35, 255, 0.55),
    0 0 16px rgba(185, 35, 255, 0.25);
}

.price-button-text {
  font-family: "roboto", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  color: rgba(233, 255, 255, 1);

  /* Reduced */
  text-shadow:
    0 0 6px rgba(185, 35, 255, 0.55),
    0 0 16px rgba(185, 35, 255, 0.25);
}


/* =========================
   CTA Button
========================= */
.cta-btn {
  display: inline-block;
  margin-top: 1.4rem;
  padding: 0.6rem 1.6rem;
  background-color: rgba(0, 0, 0, 0.59);
  border: 2px solid rgba(185, 35, 255, 1);
  border-radius: 24px;
  text-decoration: none;
  cursor: pointer;

  /* Reduced from 4 → 2 */
  box-shadow:
    0 0 10px rgba(185, 35, 255, 0.35),
    inset 0 0 8px rgba(185, 35, 255, 0.18);

  transition: transform 0.2s ease, background-color 0.25s ease;
}

.cta-btn:hover {
  background-color: rgba(185, 35, 255, 0.35);
  transform: translateY(-2px);
}

.cta-btn:active {
  transform: translateY(0);
}

/* =========================
   Contact Icons
========================= */
.icon-btn {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.icon-btn:hover{
  transform: translateY(-2px);
  filter: 
    drop-shadow(0 0 6px rgba(125, 249, 255, 0.7))
    drop-shadow(0 0 14px rgba(0, 229, 255, 0.35));
}

.icon-btn:active{
  transform: translateY(0);
}


.icon-btn img {
  width: 3rem;
  height: 3rem;
}

/* =========================
   Neon Utilities (optimized)
========================= */
:root {
  --neon-stroke: rgba(233, 255, 255, 1);
  --neon-cyan-2: rgba(125, 249, 255, 0.75);
  --neon-cyan-3: rgba(0, 229, 255, 0.55);
  --neon-cyan-4: rgba(0, 229, 255, 0.25);

  --neon-purple: rgba(185, 35, 255, 1);
  --neon-purple-2: rgba(185, 35, 255, 0.55);
  --neon-purple-3: rgba(185, 35, 255, 0.25);
}

/* Cyan neon border (reduced from 5 → 3 shadows) */
.neon-cyan {
  border: 2px solid var(--neon-stroke);
  box-shadow:
    0 0 6px var(--neon-cyan-2),
    0 0 18px var(--neon-cyan-3),
    0 0 44px var(--neon-cyan-4);
}

/* Purple neon border (reduced) */
.neon-purple {
  border: 2px solid var(--neon-purple);
  box-shadow:
    0 0 10px var(--neon-purple-2),
    0 0 26px var(--neon-purple-3);
}

/* Inner glow that DOES NOT override box-shadow */
.neon-inset {
  position: relative;
}

.neon-inset::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;

  box-shadow:
    inset 0 0 10px rgba(233, 255, 255, 0.18),
    inset 0 0 22px rgba(0, 229, 255, 0.12);
}

.neon-round {
  border-radius: 2rem;
}

.neon-hover {
  transition: transform 0.2s ease;
}

.neon-hover:hover {
  transform: translateY(-1px);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

