/* =========================================================
   HIT STORM — STYLES
   Organized by section. Brand colors live in :root below —
   change them there to re-theme the whole site.
   ========================================================= */

:root {
  /* Brand palette */
  --void: #030711;
  --navy-deep: #060f24;
  --navy: #0a1836;
  --navy-light: #102450;
  --blue-electric: #1c5cff;
  --cyan: #4fd8ff;
  --cyan-bright: #9ff1ff;
  --gold: #ffb92e;
  --gold-dark: #e0900f;
  --white: #f4f8ff;
  --ink-dim: #9db1d8;

  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 14px;
  --border-glow: 0 0 0 1px rgba(79, 216, 255, 0.35), 0 0 18px rgba(79, 216, 255, 0.18);
  --container-width: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Single shared backdrop for the whole page so sections blend into one
   continuous storm instead of hard color blocks at each boundary.
   These are absolutely positioned (not fixed) so they span the full
   scrollable page as one continuous layer — a fixed layer would re-sync
   its gradient to the viewport on every scroll and create a fresh seam
   near the top of whatever section happened to be in view. The vh-based
   stop lengths make the fade converge to solid void at roughly the same
   point the hero's own fade does (hero is 100vh tall), so the hero-to-
   about handoff lines up instead of showing a seam of its own. */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: -2;
  background: url("../assets/images/lightning-bg.jpg") top center repeat-y;
  background-size: 100% auto;
  opacity: 0.42;
}

body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(3, 7, 17, 0.5) 0,
    rgba(6, 15, 36, 0.7) 50vh,
    var(--void) 95vh,
    rgba(16, 36, 80, 0.55) 160vh,
    rgba(16, 36, 80, 0.55) 100%
  );
}

img { max-width: 100%; display: block; }

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--cyan);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 16px;
  color: var(--white);
}

.section-sub {
  color: var(--ink-dim);
  max-width: 620px;
  font-size: 1.02rem;
  margin-bottom: 42px;
}

.section-sub code {
  background: rgba(79, 216, 255, 0.1);
  border: 1px solid rgba(79, 216, 255, 0.25);
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 0.85em;
  color: var(--cyan-bright);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue-electric) 45%, #0a3fc2 100%);
  color: var(--white);
  box-shadow:
    0 0 0 1px rgba(159, 241, 255, 0.5),
    0 10px 28px rgba(28, 92, 255, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -8px 14px rgba(3, 7, 17, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(159, 241, 255, 0.7),
    0 14px 34px rgba(28, 92, 255, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -8px 14px rgba(3, 7, 17, 0.25);
}

.btn-ghost {
  background: rgba(10, 24, 54, 0.4);
  color: var(--cyan-bright);
  border-color: rgba(79, 216, 255, 0.4);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--cyan-bright);
  box-shadow: 0 0 18px rgba(79, 216, 255, 0.3);
}

.btn-small {
  padding: 9px 20px;
  font-size: 0.85rem;
  background: rgba(79, 216, 255, 0.08);
  border-color: rgba(79, 216, 255, 0.4);
  color: var(--cyan-bright);
}

.btn-small:hover {
  background: var(--cyan);
  color: var(--navy-deep);
  border-color: var(--cyan);
}

.btn-sold-out {
  width: 100%;
  padding: 12px 20px;
  font-size: 0.9rem;
  color: var(--navy-deep);
  background: linear-gradient(135deg, var(--cyan-bright), var(--cyan));
  border-color: var(--cyan-bright);
  box-shadow: 0 0 0 1px rgba(159, 241, 255, 0.5), 0 0 22px rgba(79, 216, 255, 0.55);
}

.btn-sold-out:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(159, 241, 255, 0.7), 0 0 30px rgba(79, 216, 255, 0.75);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 10, 24, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(79, 216, 255, 0.18), 0 10px 30px rgba(0, 0, 0, 0.35);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(79, 216, 255, 0.45));
}

.site-nav {
  display: flex;
  gap: 34px;
}

.site-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--ink-dim);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  transition: width 0.25s ease;
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(79, 216, 255, 0.08);
  border: 1px solid rgba(79, 216, 255, 0.3);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--cyan-bright);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 140px 0 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/lightning-bg.jpg") center 30% / cover no-repeat;
  transform: scale(1.05);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(6, 15, 36, 0.25) 0%, rgba(3, 7, 17, 0.75) 65%, rgba(3, 7, 17, 0.95) 100%),
    linear-gradient(180deg, rgba(3, 7, 17, 0.55) 0%, rgba(3, 7, 17, 0.35) 40%, var(--void) 100%);
}

.hero-bolt-flash {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 38%, rgba(159, 241, 255, 0.16), transparent 55%);
  animation: flicker 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes flicker {
  0%, 92%, 100% { opacity: 1; }
  94% { opacity: 0.55; }
  96% { opacity: 1; }
  97% { opacity: 0.7; }
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, var(--void));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: min(480px, 78vw);
  filter: drop-shadow(0 0 34px rgba(79, 216, 255, 0.55)) drop-shadow(0 0 70px rgba(28, 92, 255, 0.35));
  margin-bottom: 8px;
  animation: hover-float 5s ease-in-out infinite;
}

@keyframes hover-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-headline {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  line-height: 1.08;
  margin-top: 14px;
  color: var(--white);
  text-shadow: 0 0 24px rgba(79, 216, 255, 0.35);
}

.hero-sub {
  max-width: 560px;
  margin: 20px auto 0;
  color: var(--ink-dim);
  font-size: 1.1rem;
}

.hero-cta {
  display: flex;
  gap: 18px;
  margin-top: 38px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  position: relative;
  padding: 120px 0;
  text-align: center;
}

.about .container { position: relative; z-index: 1; }

.about .eyebrow, .about .section-title { display: block; }
.about .section-title { margin-left: auto; margin-right: auto; }

.about-text {
  max-width: 700px;
  margin: 0 auto 56px;
  color: var(--ink-dim);
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.feature-card {
  background: linear-gradient(180deg, rgba(28, 92, 255, 0.2), rgba(16, 36, 80, 0.55));
  border: 1px solid rgba(79, 216, 255, 0.3);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: 0 0 20px rgba(28, 92, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(79, 216, 255, 0.55);
  box-shadow: var(--border-glow);
}

.feature-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 14px;
  filter: drop-shadow(0 0 10px rgba(255, 185, 46, 0.6));
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--white);
}

.feature-card p {
  color: var(--ink-dim);
  font-size: 0.96rem;
}

/* =========================================================
   REPACKS
   ========================================================= */
.repacks {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

.repacks .container { position: relative; z-index: 1; }

.repacks .section-title,
.repacks .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.repack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 420px));
  gap: 28px;
  justify-content: center;
  text-align: left;
}

.repack-card {
  position: relative;
  background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy-deep) 100%);
  border: 1px solid rgba(79, 216, 255, 0.4);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.5),
    0 0 26px rgba(28, 92, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.repack-card:hover {
  transform: translateY(-8px);
  border-color: var(--cyan);
  box-shadow:
    0 0 0 1px rgba(79, 216, 255, 0.5),
    0 30px 56px rgba(0, 0, 0, 0.55),
    0 0 30px rgba(79, 216, 255, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.repack-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(255, 185, 46, 0.5);
}

.repack-image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: radial-gradient(circle at 50% 30%, rgba(28, 92, 255, 0.25), var(--void) 75%);
  border-bottom: 1px solid rgba(79, 216, 255, 0.18);
}

.repack-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.repack-card:hover .repack-image {
  transform: scale(1.06);
}

.repack-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.repack-name {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 18px;
  color: var(--white);
  text-shadow: 0 0 18px rgba(79, 216, 255, 0.7), 0 0 38px rgba(28, 92, 255, 0.4);
}

.repack-desc {
  color: var(--ink-dim);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 22px;
  text-align: center;
}

.repack-stats {
  list-style: none;
  flex: 1;
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.repack-stat {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--cyan-bright);
  text-shadow: 0 0 12px rgba(79, 216, 255, 0.45);
}

.repack-stat.is-highlight {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 16px rgba(255, 185, 46, 0.6), 0 0 32px rgba(255, 185, 46, 0.3);
}

.repack-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.repack-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--cyan-bright);
  text-shadow: 0 0 12px rgba(79, 216, 255, 0.4);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

.contact-inner { position: relative; z-index: 1; }

.contact .section-title, .contact .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-top: 20px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 280px;
  padding: 30px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(79, 216, 255, 0.35);
  background: linear-gradient(180deg, rgba(28, 92, 255, 0.18), rgba(16, 36, 80, 0.4));
  box-shadow: 0 0 24px rgba(28, 92, 255, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  box-shadow: var(--border-glow);
}

.contact-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(79, 216, 255, 0.1);
  color: var(--cyan-bright);
  margin-bottom: 6px;
}

.contact-icon svg { width: 22px; height: 22px; }

.contact-label {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--ink-dim);
}

.contact-value {
  color: var(--white);
  font-size: 0.9rem;
  white-space: nowrap;
}

/* =========================================================
   PRODUCT PAGE
   ========================================================= */
.product-page {
  padding: 160px 0 120px;
}

.product-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--cyan-bright);
  margin-bottom: 34px;
  transition: opacity 0.2s ease;
}

.product-back:hover { opacity: 0.75; }

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 480px) 1fr;
  gap: 48px;
  align-items: start;
}

.product-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(79, 216, 255, 0.4);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.5),
    0 0 26px rgba(28, 92, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.product-media .repack-tag { top: 16px; right: 16px; }

.product-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.product-name {
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  color: var(--white);
  text-shadow: 0 0 16px rgba(79, 216, 255, 0.65), 0 0 34px rgba(28, 92, 255, 0.35);
  margin-bottom: 18px;
}

.product-stats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.product-stats .repack-stat { text-align: left; }

.product-status {
  width: auto;
  padding: 10px 26px;
  margin-bottom: 40px;
  cursor: default;
}

.product-panel {
  width: 100%;
  max-width: 640px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(79, 216, 255, 0.3);
  background: linear-gradient(180deg, rgba(28, 92, 255, 0.14), rgba(6, 15, 36, 0.6));
  box-shadow: 0 0 24px rgba(28, 92, 255, 0.12);
}

.product-panel-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.product-panel-sub {
  color: var(--ink-dim);
  font-size: 0.88rem;
  margin-bottom: 22px;
}

.product-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-checklist li {
  position: relative;
  padding-left: 30px;
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.4;
}

.product-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(79, 216, 255, 0.12);
  border: 1px solid rgba(79, 216, 255, 0.5);
}

.product-checklist li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--cyan-bright);
  border-bottom: 2px solid var(--cyan-bright);
  transform: rotate(-45deg);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, rgba(16, 36, 80, 0.35), var(--void) 60%);
  border-top: 1px solid rgba(79, 216, 255, 0.4);
  box-shadow: 0 -1px 30px rgba(79, 216, 255, 0.18);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.footer-logo {
  height: 34px;
  filter: drop-shadow(0 0 10px rgba(79, 216, 255, 0.45));
}

.footer-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--ink-dim);
  transition: color 0.2s ease;
}

.footer-nav a:hover { color: var(--cyan-bright); }

.footer-copy {
  font-size: 0.82rem;
  color: rgba(157, 177, 216, 0.6);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 860px) {
  .feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: rgba(5, 10, 24, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(79, 216, 255, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .site-nav.is-open { max-height: 260px; }

  .site-nav a {
    padding: 16px 0;
    width: 100%;
    text-align: center;
  }

  .nav-toggle { display: flex; }

  .hero { padding: 120px 0 80px; }

  .about, .repacks, .contact { padding: 90px 0; }

  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }

  .product-page { padding: 130px 0 80px; }

  .product-grid { grid-template-columns: 1fr; gap: 32px; }

  .product-info { align-items: stretch; text-align: center; }

  .product-name, .product-panel-title, .product-panel-sub { text-align: center; }

  .product-stats .repack-stat { text-align: center; }

  .product-status { align-self: center; }

  .product-panel { max-width: none; }

  .product-checklist li { text-align: left; }
}

@media (max-width: 480px) {
  .contact-card { width: 100%; max-width: 280px; }
}
