:root {
  --bg: #041914;
  --bg-2: #0a2f27;
  --forest: #0d4a3d;
  --lime: #b8ff3d;
  --mint: #1ee39a;
  --cream: #eef8f1;
  --muted: #9bb5ac;
  --white: #ffffff;
  --ink: #06241d;
  --glass: rgba(255, 255, 255, 0.06);
  --line: rgba(184, 255, 61, 0.18);
  --shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Cairo", system-ui, sans-serif;
  color: var(--cream);
  background: radial-gradient(1200px 700px at 80% -10%, rgba(184, 255, 61, 0.12), transparent 55%),
              radial-gradient(900px 600px at -10% 20%, rgba(30, 227, 154, 0.1), transparent 50%),
              linear-gradient(180deg, #031510 0%, var(--bg) 40%, #062019 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  width: 48vw;
  height: 48vw;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.orb-a { top: -12%; inset-inline-start: -10%; background: #146b54; animation: drift 14s ease-in-out infinite; }
.orb-b { bottom: 10%; inset-inline-end: -15%; background: #6ea80f; animation: drift 18s ease-in-out infinite reverse; }

.grid-fade {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(184, 255, 61, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 255, 61, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 20%, #000 20%, transparent 70%);
}

.top, main, .foot { position: relative; z-index: 1; }

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 6vw;
  max-width: 1280px;
  margin: 0 auto;
}
.logo img {
  display: block;
  height: 36px;
  width: auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.35));
}
.top nav {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}
.top nav a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 700;
  opacity: 0.88;
}
.pill {
  background: linear-gradient(135deg, var(--lime), #8be020);
  color: var(--ink) !important;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  opacity: 1 !important;
  box-shadow: 0 10px 30px rgba(184, 255, 61, 0.25);
}

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 6vw 2rem;
  text-align: center;
}

.hero-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  animation: rise 0.9s ease both;
}
.mark {
  filter: drop-shadow(0 12px 28px rgba(184, 255, 61, 0.25));
  animation: pulse 4.5s ease-in-out infinite;
}
.brand-name {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.brand-name span {
  display: inline-block;
  margin-inline-start: 0.45rem;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  color: var(--lime);
}

.hero h1 {
  margin: 0 auto 1rem;
  max-width: 18ch;
  font-size: clamp(1.7rem, 4.4vw, 3.1rem);
  line-height: 1.35;
  font-weight: 800;
  animation: rise 1s ease both 0.08s;
}
.sub {
  margin: 0 auto 1.6rem;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
  animation: rise 1s ease both 0.16s;
}

.stores {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  animation: rise 1s ease both 0.24s;
}
.store {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 168px;
  padding: 0.8rem 1.15rem;
  border-radius: 16px;
  text-decoration: none;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.store:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 255, 61, 0.45);
  background: rgba(184, 255, 61, 0.08);
}
.store span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  font-weight: 800;
}
.store small {
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.7;
}
.store.light {
  background: var(--lime);
  color: var(--ink);
  border: none;
  font-weight: 800;
  justify-content: center;
}

.stage {
  position: relative;
  margin: 0 auto;
  max-width: 860px;
  min-height: 520px;
  animation: rise 1.1s ease both 0.3s;
}
.stage-glow {
  position: absolute;
  inset: 18% 10% 0;
  background: radial-gradient(ellipse at center, rgba(184, 255, 61, 0.28), transparent 65%);
  filter: blur(10px);
}
.deck {
  position: relative;
  height: 520px;
}
.device {
  position: absolute;
  margin: 0;
  border-radius: 32px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  background: #0b0b0b;
}
.device img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.device.center {
  width: 240px;
  height: 500px;
  inset-inline-start: 50%;
  top: 0;
  transform: translateX(50%);
  z-index: 3;
  animation: float 5.5s ease-in-out infinite;
}
.device.left {
  width: 190px;
  height: 400px;
  inset-inline-start: 6%;
  top: 70px;
  z-index: 2;
  transform: rotate(8deg);
  animation: float 6.2s ease-in-out infinite -1.2s;
}
.device.right {
  width: 190px;
  height: 400px;
  inset-inline-end: 6%;
  top: 70px;
  z-index: 2;
  transform: rotate(-8deg);
  animation: float 6.8s ease-in-out infinite -2s;
}

.strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.5rem 6vw 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--line);
  font-weight: 700;
}
.chip img { width: 22px; height: 22px; }

.shots, .faq {
  padding: 1rem 0 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.head {
  text-align: center;
  padding: 0 6vw 1.5rem;
}
.kicker {
  margin: 0 0 0.4rem;
  color: var(--lime);
  font-weight: 800;
  letter-spacing: 0.04em;
}
.head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 800;
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: scroll 42s linear infinite;
  padding-inline: 1rem;
}
.track img {
  width: 180px;
  height: 360px;
  object-fit: cover;
  border-radius: 22px;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.marquee:hover .track { animation-play-state: paused; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 0 6vw;
}
.faq-grid article {
  padding: 1.35rem 1.4rem;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .25s ease, border-color .25s ease;
}
.faq-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 255, 61, 0.35);
}
.faq-grid h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: var(--lime);
}
.faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.finale {
  position: relative;
  margin: 1rem 5vw 3rem;
  min-height: 380px;
  border-radius: 36px;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  place-items: center;
}
.finale-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.finale-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(3, 21, 16, 0.92), rgba(10, 47, 39, 0.78));
}
.finale-card {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 640px;
}
.finale-card h2 {
  margin: 1rem 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}
.finale-card p {
  margin: 0 0 1.4rem;
  color: var(--muted);
}

.foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 6vw 2.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(4%, 6%); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 12px 28px rgba(184, 255, 61, 0.25)); }
  50% { transform: scale(1.04); filter: drop-shadow(0 16px 36px rgba(184, 255, 61, 0.4)); }
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; }
  .device.left, .device.right { display: none; }
  .device.center {
    inset-inline-start: 50%;
    transform: translateX(50%);
  }
  .deck { height: 480px; }
  .top nav a:not(.pill) { display: none; }
}

@media (max-width: 560px) {
  .device.center { width: 200px; height: 420px; }
  .track img { width: 150px; height: 300px; }
}
