/* ===================================================================
   Crosshair Overlay — site styles
   Dark / futuristic / neon-green gaming theme
   =================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --bg:          #06090e;
  --bg-soft:     #0a0f16;
  --bg-elev:     #0f1620;
  --panel:       rgba(255, 255, 255, 0.035);
  --panel-brd:   rgba(255, 255, 255, 0.09);
  --line:        rgba(77, 255, 160, 0.14);

  --text:        #e9eef4;
  --muted:       #93a4b5;
  --muted-dim:   #6b7c8c;

  --accent:      #4dffa0;   /* neon green */
  --accent-br:   #8affc4;   /* bright green */
  --accent-deep: #16d883;   /* deep green */
  --accent-glow: rgba(77, 255, 160, 0.55);
  --accent-dim:  rgba(77, 255, 160, 0.12);
  --cyan:        #38e8ff;   /* futuristic secondary */

  --radius:      14px;
  --radius-lg:   22px;
  --maxw:        1180px;
  --nav-h:       72px;

  --font-display: "Orbitron", "Rajdhani", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  /* Layered glows + faint grid */
  background-image:
    radial-gradient(900px 600px at 80% -5%, rgba(77, 255, 160, 0.10), transparent 60%),
    radial-gradient(800px 500px at 0% 10%, rgba(56, 232, 255, 0.06), transparent 55%),
    linear-gradient(var(--bg), var(--bg));
  background-attachment: fixed;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent-br); }

h1, h2, h3, h4 { line-height: 1.12; margin: 0 0 .5em; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1rem; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 92px 0; position: relative; }
.section--tight { padding: 64px 0; }
section[id] { scroll-margin-top: calc(var(--nav-h) + 18px); }

.eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 14px;
}
.section-intro {
  color: var(--muted);
  max-width: 640px;
  font-size: 18px;
}
.center { text-align: center; }
.center .eyebrow::before { display: none; }
.center .section-intro { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: .01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .25s ease, background .25s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  color: #042015;
  background: linear-gradient(135deg, var(--accent-br), var(--accent));
  box-shadow: 0 0 0 1px rgba(77,255,160,.4), 0 10px 30px -8px var(--accent-glow);
}
.btn-primary:hover {
  color: #042015;
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(138,255,196,.6), 0 16px 38px -10px var(--accent-glow);
}
.btn-ghost {
  color: var(--text);
  background: rgba(255,255,255,0.03);
  border-color: var(--panel-brd);
}
.btn-ghost:hover {
  color: var(--accent-br);
  border-color: var(--line);
  background: rgba(77,255,160,0.06);
  transform: translateY(-2px);
}
.btn-lg { padding: 17px 34px; font-size: 17px; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: rgba(6, 9, 14, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}
.nav.scrolled {
  background: #06090e;
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -12px rgba(0,0,0,.8);
}
/* Once scrolled past the hero: solid black bar, nav text turns white */
.nav.scrolled .m-top { color: #eef3f8; }
.nav.scrolled .m-item:hover > .m-top,
.nav.scrolled .m-item:focus-within > .m-top { color: var(--accent-br); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand img { height: 34px; width: auto; filter: drop-shadow(0 0 10px rgba(77,255,160,.35)); }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: .04em;
  color: #fff;
}
.brand-name b { color: var(--accent); font-weight: 800; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
  padding: 9px 14px;
  border-radius: 9px;
  transition: color .2s ease, background .2s ease;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.04); }
.nav-cta { margin-left: 8px; animation: navCtaPulse 1.8s ease-in-out infinite; transform-origin: center; }

/* Keep the nav CTA text dark — override the more-specific muted .nav-links a color */
.nav-links .nav-cta a,
.nav-links .nav-cta a:hover { color: #042015; }

/* Subtle continuous pulse to draw the eye to Buy Now */
@keyframes navCtaPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--panel-brd);
  border-radius: 10px;
  background: rgba(255,255,255,.03);
  cursor: pointer;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--text);
  transform: translate(-50%, -50%);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }
.nav.open .nav-toggle span { background: transparent; }
.nav.open .nav-toggle span::before { transform: translate(-50%, -50%) rotate(45deg); top: 0; }
.nav.open .nav-toggle span::after  { transform: translate(-50%, -50%) rotate(-45deg); top: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 70px);
  padding-bottom: 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.hero h1 .glow {
  color: var(--accent);
  text-shadow: 0 0 28px var(--accent-glow);
}
.hero-sub {
  font-size: 19px;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-note {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; color: var(--muted-dim);
}
.hero-note svg { width: 17px; height: 17px; color: var(--accent); }

.hero-visual { position: relative; }
.hero-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--panel-brd);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.9);
}
.hero-visual::after {
  content: "";
  position: absolute; inset: -40px -20px 0;
  background: radial-gradient(closest-side, rgba(77,255,160,.18), transparent 70%);
  z-index: -1;
  filter: blur(10px);
}

/* ---------- Trust badges ---------- */
.badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--panel-brd);
  background: var(--panel);
  font-size: 14.5px; font-weight: 600; color: var(--text);
}
.badge svg { width: 17px; height: 17px; color: var(--accent); }

/* ---------- Video ---------- */
.video-frame {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--panel-brd);
  box-shadow: 0 0 0 1px rgba(77,255,160,.08), 0 40px 90px -40px rgba(0,0,0,.95);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Click-to-play facade — no YouTube load (or cookies) until the user clicks */
.video-facade {
  display: block;
  width: 100%; height: 100%;
  margin: 0; padding: 0; border: 0;
  background: #05080c;
  cursor: pointer;
  position: relative;
}
.video-poster {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease, opacity .3s ease;
}
.video-facade:hover .video-poster,
.video-facade:focus-visible .video-poster { transform: scale(1.03); opacity: .9; }
.video-play {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 82px; height: 82px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #042015;
  background: linear-gradient(135deg, var(--accent-br), var(--accent));
  box-shadow: 0 0 0 1px rgba(77,255,160,.5), 0 14px 40px -10px var(--accent-glow);
  transition: transform .2s ease, box-shadow .25s ease;
}
.video-facade:hover .video-play,
.video-facade:focus-visible .video-play { transform: translate(-50%, -50%) scale(1.08); }
.video-play svg { width: 34px; height: 34px; margin-left: 5px; }
.video-facade:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---------- Feature cards ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--panel-brd);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform .2s ease, border-color .25s ease, background .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  background: rgba(77,255,160,0.045);
}
.card-ico {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--accent-dim);
  border: 1px solid var(--line);
  margin-bottom: 18px;
}
.card-ico svg { width: 25px; height: 25px; color: var(--accent); }
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15.5px; margin: 0; }

/* ---------- Screenshot showcase ---------- */
.shots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.shot {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--panel-brd);
  background: var(--bg-elev);
  transition: transform .2s ease, border-color .25s ease;
}
.shot:hover { transform: translateY(-4px); border-color: var(--line); }
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 20px 16px;
  font-weight: 600; font-size: 15px;
  background: linear-gradient(transparent, rgba(4,7,11,.92));
}
.shot figcaption span { color: var(--accent); }

/* ---------- Split (Games) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.split img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--panel-brd);
  box-shadow: 0 30px 70px -34px rgba(0,0,0,.9);
}
.split .tested {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 4px;
}
.tag {
  font-size: 13.5px; font-weight: 600;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--accent-br);
  background: var(--accent-dim);
}

/* ---------- How to use (steps) ---------- */
.steps { display: grid; gap: 18px; margin-top: 50px; counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  padding: 24px 26px;
  background: var(--panel);
  border: 1px solid var(--panel-brd);
  border-radius: var(--radius);
}
.step-num {
  counter-increment: step;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 12px;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--line);
}
.step-num::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 18px; margin-bottom: 5px; }
.step p { color: var(--muted); margin: 0; font-size: 15.5px; }
.tip {
  margin-top: 26px;
  padding: 18px 22px;
  border-left: 3px solid var(--accent);
  background: rgba(77,255,160,0.05);
  border-radius: 0 12px 12px 0;
  color: var(--muted);
  font-size: 15.5px;
}
.tip b { color: var(--text); }

/* ---------- Safety ---------- */
.safety-card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid var(--panel-brd);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.safety-points { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin: 26px 0 30px; list-style: none; padding: 0; }
.safety-points li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15.5px; color: var(--text);
}
.safety-points svg { width: 20px; height: 20px; color: var(--accent); flex: 0 0 auto; margin-top: 2px; }
.fineprint { font-size: 13px; line-height: 1.7; color: var(--muted-dim); margin: 0; }

/* ---------- Early access / CTA banner ---------- */
.cta-band {
  text-align: center;
  border-radius: var(--radius-lg);
  padding: 64px 32px;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(77,255,160,.16), transparent 70%),
    linear-gradient(180deg, var(--bg-elev), var(--bg-soft));
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.cta-band h2 { font-family: var(--font-display); font-size: clamp(26px, 4vw, 40px); }
.cta-band p { color: var(--muted); max-width: 560px; margin: 0 auto 28px; font-size: 18px; }

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent);
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--accent-dim);
  margin-bottom: 20px;
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  border-top: 1px solid var(--panel-brd);
  padding: 60px 0 34px;
  margin-top: 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer-brand img { height: 34px; margin-bottom: 14px; }
.footer-brand p { color: var(--muted); font-size: 15px; max-width: 320px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted-dim); margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--muted); font-weight: 500; }
.footer-col a:hover { color: var(--accent-br); }

.footer-bottom {
  margin-top: 46px; padding-top: 24px;
  border-top: 1px solid var(--panel-brd);
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
  font-size: 14px; color: var(--muted-dim);
}
.byline { display: inline-flex; align-items: center; gap: 10px; }
.byline img { height: 26px; opacity: .9; transition: opacity .2s ease; }
.byline a:hover img { opacity: 1; }
.byline a { color: var(--muted); font-weight: 600; display: inline-flex; align-items: center; gap: 9px; }
.byline a:hover { color: var(--accent-br); }

/* ---------- Page header (About) ---------- */
.page-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 30px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 5.5vw, 56px);
}
.prose { max-width: 760px; }
.prose h2 { font-size: 24px; margin-top: 38px; }
.prose p { color: var(--muted); font-size: 17px; }
.prose strong { color: var(--text); }

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

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; max-width: 520px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .safety-points { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px 18px 20px;
    background: rgba(6, 9, 14, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }
  .nav.open .nav-links { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: 13px 14px; font-size: 16px; }
  .nav-cta { margin: 8px 0 0; animation: none; }
  .nav-cta .btn { width: 100%; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .shots { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split img { order: -1; }
  .safety-points { grid-template-columns: 1fr; }
  .safety-card { padding: 26px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .step { grid-template-columns: 1fr; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; }
}

/* ---------- Nav "More" dropdown ---------- */
.nav-more { position: relative; }
.nav-more-toggle {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  color: var(--muted);
  padding: 9px 14px; border-radius: 9px;
  background: none; border: 0; cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.nav-more-toggle:hover { color: var(--text); background: rgba(255,255,255,.04); }
.nav-more-toggle svg { width: 14px; height: 14px; transition: transform .2s ease; }
.nav-more-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 200px;
  list-style: none; margin: 0; padding: 8px;
  background: rgba(10,15,22,.97);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 18px 44px -14px rgba(0,0,0,.85);
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 120;
}
.nav-more:hover .nav-more-menu,
.nav-more:focus-within .nav-more-menu { opacity: 1; transform: none; pointer-events: auto; }
.nav-more:hover .nav-more-toggle svg,
.nav-more:focus-within .nav-more-toggle svg { transform: rotate(180deg); }
.nav-more-menu a {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: 8px;
  color: var(--muted); font-weight: 600; font-size: 15px;
}
.nav-more-menu a:hover { color: var(--accent-br); background: rgba(77,255,160,.06); }
.nav-more-menu .soon {
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted-dim); border: 1px solid var(--panel-brd); border-radius: 999px;
  padding: 2px 7px; margin-left: auto;
}

/* ---------- Forms ---------- */
.form-card {
  max-width: 640px; margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--panel-brd);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; font-size: 14.5px; margin-bottom: 8px; color: var(--text); }
.form-label .req { color: var(--accent); }
.form-input, .form-textarea {
  width: 100%; padding: 13px 15px; border-radius: 10px;
  background: rgba(0,0,0,.25); border: 1px solid var(--panel-brd);
  color: var(--text); font-family: var(--font-body); font-size: 15.5px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted-dim); }
.form-input:focus, .form-textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-dim);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-card .btn { width: 100%; margin-top: 6px; }
.form-hp { position: absolute; left: -9999px; top: -9999px; }
.form-note { font-size: 13px; color: var(--muted-dim); margin-top: 16px; text-align: center; }
.form-alert {
  border-radius: 10px; padding: 13px 16px; margin-bottom: 20px; font-size: 14.5px; display: none;
}
.form-alert.show { display: block; }
.form-alert.error { background: rgba(255,80,80,.12); border: 1px solid rgba(255,80,80,.35); color: #ff9b9b; }
.form-success { display: none; text-align: center; padding: 26px 10px; }
.form-success.show { display: block; }
.form-success .ico {
  width: 66px; height: 66px; margin: 0 auto 18px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--accent-dim); border: 1px solid var(--line); color: var(--accent);
}
.form-success .ico svg { width: 34px; height: 34px; }
.form-success h2 { font-size: 24px; }
.form-success p { color: var(--muted); }

@media (max-width: 760px) {
  .nav-more { width: 100%; }
  .nav-more-toggle { width: 100%; justify-content: flex-start; padding: 13px 14px; font-size: 16px; }
  .nav-more-toggle svg { display: none; }
  .nav-more-menu {
    position: static; opacity: 1; transform: none; pointer-events: auto;
    background: none; backdrop-filter: none; -webkit-backdrop-filter: none;
    border: 0; box-shadow: none; padding: 0 0 6px 14px; min-width: 0;
  }
  .form-card { padding: 26px 22px; }
}

/* ---------- FAQ accordion (reusable: .faq > .faq-item > .faq-q + .faq-a-wrap > .faq-a) ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--panel-brd);
  border-radius: 12px;
  background: var(--panel);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px;
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 16px; color: var(--text);
  transition: color .2s ease;
}
.faq-q:hover { color: var(--accent-br); }
.faq-q::after {
  content: "+"; font-size: 24px; font-weight: 400; color: var(--accent);
  line-height: 1; flex: none; transition: transform .28s ease;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }

/* Slide open/closed by animating the grid row from 0fr to 1fr.
   Default is open so answers are readable without JS; site.js adds
   `.js` to collapse them and turn it into an accordion. */
.faq-a-wrap {
  display: grid; grid-template-rows: 1fr;
  transition: grid-template-rows .32s ease;
}
.faq.js .faq-a-wrap { grid-template-rows: 0fr; }
.faq.js .faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a { overflow: hidden; }
.faq-a-in {
  padding: 0 20px 18px;
  color: var(--muted); font-size: 15.5px; line-height: 1.65;
}
.faq-a-in a { color: var(--accent-br); }
.faq-a-in b { color: var(--text); }

/* ===================================================================
   Blog / article (reusable: .page-hero > .post-meta, .prose, .cmp table)
   =================================================================== */
.lead { font-size: 19px; color: var(--muted); margin-bottom: 1.4rem; }

.post-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  margin-top: 16px; color: var(--muted-dim); font-size: 14px;
}
.post-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--muted-dim); }

/* Article body: extend .prose for headings, lists, links, figures */
.prose h3 { font-size: 19px; margin-top: 28px; color: var(--text); }
.prose ul { color: var(--muted); font-size: 17px; margin: 0 0 1.2rem; padding-left: 22px; }
.prose li { margin-bottom: 9px; }
.prose li::marker { color: var(--accent); }
.prose b, .prose strong { color: var(--text); }
.prose a:not(.btn) {
  color: var(--accent-br);
  text-decoration: underline;
  text-decoration-color: rgba(77, 255, 160, 0.35);
  text-underline-offset: 3px;
}
.prose a:not(.btn):hover { color: var(--accent); text-decoration-color: var(--accent); }

.post-figure { margin: 30px 0; }
.post-figure img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--panel-brd);
  box-shadow: 0 24px 60px -32px rgba(0, 0, 0, .9);
}
.post-figure figcaption {
  margin-top: 10px; text-align: center;
  color: var(--muted-dim); font-size: 13.5px;
}

/* Comparison table */
.cmp-wrap { margin: 28px 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cmp {
  width: 100%; min-width: 480px;
  border-collapse: collapse;
  font-size: 15.5px;
  border: 1px solid var(--panel-brd);
  border-radius: var(--radius);
  overflow: hidden;
}
.cmp th, .cmp td {
  padding: 13px 16px; text-align: left; vertical-align: top;
  border-bottom: 1px solid var(--panel-brd);
}
.cmp thead th {
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: .03em; font-weight: 700;
  color: var(--text); background: rgba(255, 255, 255, .03);
}
.cmp thead th.own { color: var(--accent); }
.cmp tbody th {
  width: 28%; font-weight: 600; color: var(--text);
  background: rgba(255, 255, 255, .015);
}
.cmp td { color: var(--muted); }
.cmp td.own { color: var(--accent-br); }
.cmp tbody tr:last-child th, .cmp tbody tr:last-child td { border-bottom: 0; }

/* ===================================================================
   Mega-menu nav (structure ported from the Lucky Panda nav, themed)
   =================================================================== */
.mega-nav { flex: 1 1 auto; min-width: 0; display: flex; }
.mega-list {
  display: flex; align-items: center; gap: 2px;
  list-style: none; margin: 0; padding: 0; width: 100%;
}
.m-item { position: relative; }

/* Top-level link (fills nav height so the panel sits flush under it = no hover gap) */
.m-top {
  display: inline-flex; align-items: center; gap: 5px;
  height: var(--nav-h); padding: 0 15px;
  color: var(--muted); font-weight: 600; font-size: 15px; white-space: nowrap;
  transition: color .2s ease;
}
.m-item:hover > .m-top,
.m-item:focus-within > .m-top,
.m-top:hover { color: var(--text); }
.m-caret { width: 13px; height: 13px; opacity: .7; transition: transform .2s ease; }
.m-item:hover > .m-top .m-caret,
.m-item:focus-within > .m-top .m-caret { transform: rotate(180deg); }

/* CTA pushed to the far right */
.m-cta { margin-left: auto; display: flex; align-items: center; }
.m-cta .btn { animation: navCtaPulse 1.8s ease-in-out infinite; transform-origin: center; }

/* ---- Panels ---- */
.m-panel {
  position: absolute; top: 100%; left: 0; margin: 0;
  background: rgba(9, 13, 19, 0.98);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 26px 60px -18px rgba(0,0,0,.9);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 130; overflow: hidden;
}
.m-item:hover > .m-panel,
.m-item:focus-within > .m-panel { opacity: 1; visibility: visible; transform: none; }

.m-panel a:not(.btn) {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; border-radius: 9px;
  color: var(--muted); font-weight: 600; font-size: 15px;
}
.m-panel a:not(.btn):hover { color: var(--accent-br); background: rgba(77,255,160,.06); }
.m-panel h3 {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin: 4px 0 10px;
}

/* Small dropdown (Games, More) */
.m-drop { min-width: 240px; padding: 12px; }
.m-drop ul { list-style: none; margin: 0; padding: 0; }
.m-drop h3 { margin: 6px 12px 8px; }
.m-alllink { margin-top: 4px; color: var(--accent) !important; font-size: 14px !important; }
.m-alllink:hover { background: transparent !important; padding-left: 16px !important; }

/* Wide mega panel (Features) */
.m-mega { display: flex; width: 740px; max-width: calc(100vw - 44px); }
.m-mega .m-col { flex: 1; min-width: 0; padding: 22px 24px; border-right: 1px solid var(--panel-brd); }
.m-mega .m-col ul { list-style: none; margin: 0; padding: 0; }
.m-mega .m-col > ul > li > a { margin: 0 -10px; }
.m-promo { flex: none; width: 250px; background: rgba(77,255,160,.04); border-right: 0; }
.m-promo img { width: 100%; height: auto; border-radius: 10px; border: 1px solid var(--panel-brd); margin-bottom: 14px; }
.m-promo h4 { font-size: 16px; margin: 0 0 6px; color: var(--text); }
.m-promo p { font-size: 13.5px; color: var(--muted); margin: 0 0 14px; line-height: 1.5; }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }

/* "Soon" badge */
.m-panel .soon {
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted-dim); border: 1px solid var(--panel-brd); border-radius: 999px;
  padding: 2px 7px; margin-left: auto;
}

/* ---- Mobile: stack the nav, panels become static indented lists ---- */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav.open { background: #06090e; }
  .mega-nav {
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    background: #06090e;
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 44px -16px rgba(0,0,0,.85);
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
    padding: 12px 16px 22px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }
  .nav.open .mega-nav { opacity: 1; transform: none; pointer-events: auto; }
  .mega-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .m-item { position: static; }
  .m-top { height: auto; width: 100%; padding: 13px 12px; font-size: 16px; justify-content: space-between; }
  .m-caret { display: none; }
  .m-panel {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: none; backdrop-filter: none; -webkit-backdrop-filter: none;
    border: 0; box-shadow: none; border-radius: 0;
    padding: 0 0 8px 12px; width: auto !important; max-width: none; min-width: 0;
  }
  .m-mega { flex-direction: column; width: auto; }
  .m-mega .m-col { border-right: 0; padding: 4px 0; }
  .m-promo { display: none; }
  .m-panel h3, .m-drop h3 { margin: 10px 0 2px; }
  .m-cta { margin: 14px 0 0; }
  .m-cta .btn { width: 100%; animation: none; }
}
