/* ASTRAL//VOID — marketing site v2 */
:root {
  --bg: #010309;
  --panel: rgba(9, 19, 38, 0.66);
  --line: rgba(53, 214, 255, 0.35);
  --cyan: #35d6ff;
  --cyan-soft: rgba(53, 214, 255, 0.78);
  --text: #eaf5ff;
  --dim: rgba(214, 233, 250, 0.62);
  --gold: #ffd54a;
  --violet: #8f6bff;
  --display: "Orbitron", -apple-system, sans-serif;
  --body: "Rajdhani", -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
::selection { background: rgba(53, 214, 255, 0.35); color: #fff; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  overflow-x: hidden;
  line-height: 1.65;
}

/* layered background: starfield canvas + aurora nebula blobs */
#stars { position: fixed; inset: 0; z-index: 0; pointer-events: none; }

.aurora {
  position: fixed;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.55;
}
.aurora::before, .aurora::after {
  content: "";
  position: absolute;
  width: 46vw; height: 46vw;
  border-radius: 50%;
  animation: drift 26s ease-in-out infinite alternate;
}
.aurora::before {
  background: radial-gradient(circle, rgba(21, 84, 158, 0.5), transparent 65%);
  top: 4%; left: -6%;
}
.aurora::after {
  background: radial-gradient(circle, rgba(96, 40, 168, 0.42), transparent 65%);
  bottom: -4%; right: -8%;
  animation-delay: -13s;
}
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(6vw, 4vh, 0) scale(1.18); }
}

main, header, footer { position: relative; z-index: 1; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- header ---------- */
header {
  padding: 16px 0;
  position: sticky;
  top: 0;
  backdrop-filter: blur(16px);
  background: rgba(1, 3, 9, 0.68);
  border-bottom: 1px solid rgba(53, 214, 255, 0.14);
  z-index: 10;
}
header .wrap { display: flex; align-items: center; justify-content: space-between; }

.wordmark {
  font-family: var(--display);
  font-weight: 900;
  font-size: 19px;
  letter-spacing: 3px;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 0 20px rgba(53, 214, 255, 0.85);
}
.wordmark .slash { color: var(--cyan); }

nav { display: flex; align-items: center; }
nav a {
  position: relative;
  color: var(--dim);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-left: 30px;
  padding: 4px 0;
  transition: color 0.2s;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  transition: right 0.25s ease;
}
nav a:hover { color: #fff; }
nav a:hover::after { right: 0; }
nav a.cta {
  color: #041019;
  background: linear-gradient(180deg, #8fe7ff, var(--cyan));
  border-radius: 8px;
  padding: 7px 16px;
  font-weight: 700;
  box-shadow: 0 0 22px rgba(53, 214, 255, 0.5);
}
nav a.cta::after { display: none; }
nav a.cta:hover { color: #000; box-shadow: 0 0 34px rgba(53, 214, 255, 0.8); }
nav a.ig { display: inline-flex; align-items: center; padding: 4px; }
nav a.ig::after { display: none; }
nav a.ig svg { display: block; transition: filter 0.2s; }
nav a.ig:hover svg { filter: drop-shadow(0 0 8px rgba(53, 214, 255, 0.9)); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  text-align: center;
  padding: 70px 0 0;
  overflow: hidden;
}
.hero-art {
  position: absolute;
  top: -30px; left: 50%;
  transform: translateX(-50%);
  width: min(920px, 130vw);
  opacity: 0.5;
  z-index: -1;
  -webkit-mask-image: radial-gradient(ellipse 62% 55% at 50% 38%, #000 45%, transparent 78%);
  mask-image: radial-gradient(ellipse 62% 55% at 50% 38%, #000 45%, transparent 78%);
}
.hero .kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 8px;
  color: var(--dim);
  text-transform: uppercase;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(46px, 8.4vw, 92px);
  font-weight: 900;
  letter-spacing: 5px;
  margin: 18px 0 10px;
  color: #fff;
  text-shadow:
    0 0 14px rgba(53, 214, 255, 0.9),
    0 0 52px rgba(53, 214, 255, 0.45),
    0 0 120px rgba(53, 214, 255, 0.3);
  animation: pulse-glow 5s ease-in-out infinite;
}
.hero h1 .slash { color: var(--cyan); }
@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 0 14px rgba(53,214,255,0.9), 0 0 52px rgba(53,214,255,0.45), 0 0 120px rgba(53,214,255,0.3); }
  50%      { text-shadow: 0 0 20px rgba(53,214,255,1),   0 0 72px rgba(53,214,255,0.6),  0 0 150px rgba(53,214,255,0.4); }
}
.hero .tagline {
  font-weight: 600;
  color: var(--cyan-soft);
  letter-spacing: 6px;
  font-size: clamp(13px, 2vw, 17px);
  text-transform: uppercase;
}
.hero p.blurb {
  max-width: 640px;
  margin: 300px auto 0;
  color: var(--text);
  font-size: 19px;
  font-weight: 500;
  text-shadow: 0 2px 18px #000;
}

/* apple-style badge */
.store-cta {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 34px;
  padding: 14px 30px;
  border-radius: 15px;
  border: 1px solid rgba(53, 214, 255, 0.55);
  background: linear-gradient(180deg, rgba(13, 32, 58, 0.95), rgba(3, 9, 20, 0.95));
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0 36px rgba(53, 214, 255, 0.3), inset 0 1px 0 rgba(255,255,255,0.12);
  transition: transform 0.16s ease, box-shadow 0.25s;
}
.store-cta:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 6px 54px rgba(53, 214, 255, 0.55), inset 0 1px 0 rgba(255,255,255,0.15); }
.store-cta .apple { font-size: 26px; line-height: 1; }
.store-cta .lines { text-align: left; line-height: 1.15; }
.store-cta small { display: block; font-size: 10px; letter-spacing: 2.5px; color: var(--dim); font-weight: 600; }
.store-cta .big { font-family: var(--display); font-weight: 700; font-size: 17px; letter-spacing: 1.5px; }

/* stats strip */
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(26px, 6vw, 74px);
  margin: 56px auto 0;
  padding: 22px 30px;
  max-width: 860px;
  border-top: 1px solid rgba(53, 214, 255, 0.16);
  border-bottom: 1px solid rgba(53, 214, 255, 0.16);
}
.stat { text-align: center; }
.stat .n {
  font-family: var(--display);
  font-size: clamp(24px, 3.6vw, 34px);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 18px rgba(53, 214, 255, 0.75);
}
.stat .l { font-size: 12px; font-weight: 600; letter-spacing: 3px; color: var(--dim); text-transform: uppercase; }

.hero-shot { margin: 66px auto 0; max-width: 1020px; padding: 0 24px; perspective: 1200px; }
.hero-shot img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(53, 214, 255, 0.32);
  box-shadow: 0 24px 110px rgba(53, 214, 255, 0.24), 0 6px 30px rgba(0,0,0,0.8);
  transition: transform 0.2s ease-out;
  will-change: transform;
}

/* ---------- sections ---------- */
section { padding: 104px 0; position: relative; }
.divider {
  height: 1px;
  max-width: 620px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(53, 214, 255, 0.55), transparent);
  box-shadow: 0 0 18px rgba(53, 214, 255, 0.4);
}
.sec-kicker {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--cyan);
  text-transform: uppercase;
}
.sec-title {
  text-align: center;
  font-family: var(--display);
  font-size: clamp(26px, 4.4vw, 42px);
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 10px;
  text-shadow: 0 0 26px rgba(53, 214, 255, 0.6);
}
.sec-sub {
  text-align: center;
  color: var(--dim);
  font-size: 16px;
  font-weight: 500;
  margin-top: 12px;
}

.grid { display: grid; gap: 22px; margin-top: 56px; }
.features { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* holo cards with gradient border + shine sweep */
.card {
  position: relative;
  background: var(--panel);
  border-radius: 18px;
  padding: 30px 28px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(53,214,255,0.65), rgba(53,214,255,0.08) 38%, rgba(143,107,255,0.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.card::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -80%;
  width: 55%;
  background: linear-gradient(105deg, transparent, rgba(160, 230, 255, 0.09), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 52px rgba(53, 214, 255, 0.2); }
.card:hover::after { left: 130%; }
.card .icon {
  display: inline-grid;
  place-items: center;
  width: 52px; height: 52px;
  font-size: 24px;
  border-radius: 13px;
  background: radial-gradient(circle at 30% 25%, rgba(53,214,255,0.28), rgba(53,214,255,0.06));
  border: 1px solid rgba(53, 214, 255, 0.3);
  box-shadow: 0 0 22px rgba(53, 214, 255, 0.22);
}
.card h3 {
  font-family: var(--display);
  margin: 16px 0 8px;
  font-size: 15px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
}
.card p { color: var(--dim); font-size: 16px; font-weight: 500; }

/* ---------- factions ---------- */
.factions { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.faction {
  position: relative;
  border-radius: 18px;
  padding: 32px 20px 28px;
  text-align: center;
  background:
    radial-gradient(120% 90% at 50% 0%, color-mix(in srgb, var(--fc) 14%, transparent), transparent 60%),
    var(--panel);
  border: 1px solid color-mix(in srgb, var(--fc) 55%, transparent);
  overflow: hidden;
  transition: transform 0.28s, box-shadow 0.28s;
}
.faction:hover { transform: translateY(-7px) scale(1.015); box-shadow: 0 16px 46px var(--fglow, rgba(53,214,255,0.22)); }
.faction .sigil-ring {
  display: inline-grid;
  place-items: center;
  width: 76px; height: 76px;
  border-radius: 50%;
  border: 1px solid var(--fc);
  background: radial-gradient(circle, color-mix(in srgb, var(--fc) 20%, transparent), transparent 70%);
  box-shadow: 0 0 30px var(--fglow), inset 0 0 20px color-mix(in srgb, var(--fc) 18%, transparent);
  font-size: 33px;
  filter: drop-shadow(0 0 10px var(--fc));
}
.faction h3 {
  font-family: var(--display);
  margin-top: 16px;
  letter-spacing: 4px;
  font-size: 16px;
  color: var(--fc);
  text-shadow: 0 0 16px var(--fglow);
}
.faction .arch {
  display: inline-block;
  margin-top: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--fc) 80%, #fff);
  border: 1px solid color-mix(in srgb, var(--fc) 45%, transparent);
  border-radius: 100px;
  padding: 2px 12px;
}
.faction p { font-size: 14.5px; color: var(--dim); margin-top: 12px; font-weight: 500; }

/* ---------- pvp band ---------- */
.band {
  background: linear-gradient(180deg, rgba(7, 16, 34, 0.92), rgba(2, 5, 13, 0.96));
  border-top: 1px solid rgba(53, 214, 255, 0.16);
  border-bottom: 1px solid rgba(53, 214, 255, 0.16);
}
.band .inner { display: flex; flex-wrap: wrap; gap: 56px; align-items: center; justify-content: center; }
.band .copy { max-width: 500px; }
.band h2 {
  font-family: var(--display);
  font-size: clamp(24px, 3.6vw, 36px);
  letter-spacing: 3px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 22px rgba(53, 214, 255, 0.6);
}
.band > .wrap > * { position: relative; }
.band p { color: var(--dim); margin-top: 16px; font-size: 17px; font-weight: 500; }
.band ul { list-style: none; margin-top: 22px; }
.band li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--dim);
  font-size: 16px;
  font-weight: 500;
}
.band li::before {
  content: "◈";
  position: absolute;
  left: 0;
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(53, 214, 255, 0.9);
}
.band li strong { color: #fff; font-weight: 700; }
.band .phone { perspective: 1000px; }
.band img {
  width: min(330px, 82vw);
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 70px rgba(53, 214, 255, 0.28);
  transition: transform 0.2s ease-out;
  will-change: transform;
}

/* ---------- gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
  margin-top: 58px;
  align-items: start;
}
.gallery a { display: block; perspective: 900px; }
.gallery img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(53, 214, 255, 0.28);
  box-shadow: 0 14px 54px rgba(53, 214, 255, 0.16), 0 4px 18px rgba(0,0,0,0.7);
  transition: transform 0.25s ease, box-shadow 0.25s;
  will-change: transform;
}
.gallery img:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 22px 74px rgba(53, 214, 255, 0.3); }

/* ---------- lore quotes ---------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin-top: 56px; }
.quote {
  background: var(--panel);
  border-left: 2px solid var(--qc, var(--cyan));
  border-radius: 0 16px 16px 0;
  padding: 26px 26px 22px;
  backdrop-filter: blur(8px);
}
.quote p { font-size: 17.5px; font-style: italic; color: var(--text); font-family: Georgia, "Times New Roman", serif; }
.quote .who {
  display: block;
  margin-top: 14px;
  font-family: var(--body);
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--qc, var(--cyan));
}

/* ---------- badges + final cta ---------- */
.badges { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }
.badge {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cyan-soft);
  border: 1px solid rgba(53, 214, 255, 0.35);
  border-radius: 100px;
  padding: 7px 18px;
  background: rgba(53, 214, 255, 0.05);
}

/* ---------- support / legal pages ---------- */
.page { max-width: 780px; margin: 0 auto; padding: 74px 24px 110px; }
.page h1 {
  font-family: var(--display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(53, 214, 255, 0.6);
}
.page h2 {
  font-family: var(--display);
  margin: 46px 0 10px;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
}
.page p, .page li { color: var(--dim); font-size: 17px; font-weight: 500; }
.page ul { margin: 10px 0 0 20px; }
.page .updated { font-size: 12px; letter-spacing: 2.5px; color: var(--dim); margin-top: 10px; text-transform: uppercase; font-weight: 600; }
.page a { color: var(--cyan); }
.contact-box {
  margin-top: 28px;
  padding: 24px 28px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 0 34px rgba(53, 214, 255, 0.12);
}
.contact-box a { font-weight: 700; letter-spacing: 0.5px; }

/* contact form */
#contact-form { margin-top: 22px; }
#contact-form label {
  display: block;
  margin: 18px 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cyan);
}
#contact-form label .opt {
  color: var(--dim);
  font-weight: 600;
  letter-spacing: 1.5px;
  font-size: 10.5px;
}
#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid rgba(53, 214, 255, 0.28);
  background: rgba(2, 7, 16, 0.85);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
#contact-form input:focus,
#contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 18px rgba(53, 214, 255, 0.25);
}
#contact-form ::placeholder { color: rgba(214, 233, 250, 0.3); }
#cf-fleet { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
#cf-send {
  margin-top: 22px;
  padding: 13px 32px;
  border-radius: 12px;
  border: 1px solid rgba(53, 214, 255, 0.55);
  background: linear-gradient(180deg, rgba(13, 32, 58, 0.95), rgba(3, 9, 20, 0.95));
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  cursor: pointer;
  box-shadow: 0 0 26px rgba(53, 214, 255, 0.25);
  transition: transform 0.15s, box-shadow 0.2s;
}
#cf-send:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 0 40px rgba(53, 214, 255, 0.5); }
#cf-send:disabled { opacity: 0.55; cursor: wait; }
#cf-status { margin-top: 14px; font-size: 14.5px; font-weight: 600; letter-spacing: 1px; min-height: 22px; }
#cf-status.ok { color: #7dffb0; text-shadow: 0 0 12px rgba(125, 255, 176, 0.5); }
#cf-status.err { color: #ff8a8a; }

/* ---------- footer ---------- */
footer {
  border-top: 1px solid rgba(53, 214, 255, 0.12);
  padding: 50px 0 64px;
  text-align: center;
}
footer .fmark {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 3px;
  color: rgba(234, 245, 255, 0.8);
  text-shadow: 0 0 16px rgba(53, 214, 255, 0.5);
  margin-bottom: 16px;
}
footer .fmark .slash { color: var(--cyan); }
footer .links { margin-bottom: 16px; }
footer a {
  color: var(--dim);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 0 15px;
  transition: color 0.2s;
}
footer a:hover { color: var(--cyan); }
footer .fine { color: rgba(214, 233, 250, 0.35); font-size: 13px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

@media (max-width: 680px) {
  nav a { margin-left: 13px; font-size: 11px; letter-spacing: 2px; }
  nav a.cta { padding: 6px 11px; }
  /* Tight screens: the footer still links Instagram; keep the nav to the
     essentials so GET IT never overflows. */
  nav a.ig { display: none; }
  section { padding: 70px 0; }
  .hero p.blurb { margin-top: 220px; }
}

/* Very narrow phones: squeeze the nav so GET IT never spills off-screen. */
@media (max-width: 560px) {
  nav a { margin-left: 8px; font-size: 10px; letter-spacing: 1px; }
  nav a.cta { padding: 5px 8px; }
  .wordmark { font-size: 17px; }
}
