:root {
  --bg: #07111f;
  --bg-2: #0f172a;
  --card: rgba(15, 23, 42, 0.78);
  --card-2: rgba(255, 255, 255, 0.08);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --soft: #94a3b8;
  --line: rgba(255, 255, 255, 0.12);
  --primary: #22c55e;
  --primary-2: #14b8a6;
  --blue: #38bdf8;
  --purple: #a78bfa;
  --amber: #f59e0b;
  --red: #fb7185;
  --shadow: 0 24px 80px rgba(0,0,0,.35);
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 15% 10%, rgba(34, 197, 94, .24), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(56, 189, 248, .22), transparent 30%),
    radial-gradient(circle at 50% 95%, rgba(167, 139, 250, .18), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #0f172a 55%, #111827 100%);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 17, 31, .72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
}

.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -.02em; }
.brand img { width: 42px; height: 42px; }
.brand span { font-size: 1.05rem; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: .94rem;
  transition: .22s ease;
}
.nav a:hover { color: var(--text); background: rgba(255,255,255,.08); }
.nav .nav-cta { color: #052e16; background: linear-gradient(135deg, var(--primary), var(--primary-2)); }
.nav .nav-cta:hover { color: #052e16; transform: translateY(-1px); }

.menu-toggle { display: none; background: transparent; border: 0; gap: 5px; flex-direction: column; padding: 10px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 99px; }

.section-pad { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; padding: 92px 0; }
.hero { display: grid; grid-template-columns: 1.08fr .92fr; gap: 58px; align-items: center; min-height: calc(100vh - 90px); padding-top: 72px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: #a7f3d0;
  background: rgba(34, 197, 94, .12);
  border: 1px solid rgba(34, 197, 94, .28);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; background: var(--primary); border-radius: 50%; box-shadow: 0 0 20px var(--primary); }

h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: -.045em; }
h1 { font-size: clamp(2.5rem, 6vw, 5.8rem); margin-top: 20px; }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); }
h3 { font-size: 1.45rem; }
p { color: var(--muted); line-height: 1.75; }
.hero-text { font-size: 1.16rem; max-width: 680px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .22s ease;
}
.btn.primary { color: #052e16; background: linear-gradient(135deg, var(--primary), var(--primary-2)); box-shadow: 0 16px 50px rgba(34,197,94,.24); }
.btn.secondary { border-color: var(--line); background: rgba(255,255,255,.06); color: var(--text); }
.btn:hover { transform: translateY(-2px); filter: brightness(1.05); }

.hero-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 34px; max-width: 680px; }
.hero-metrics div { padding: 18px; border: 1px solid var(--line); background: rgba(255,255,255,.06); border-radius: 22px; }
.hero-metrics strong { display: block; font-size: 1.25rem; }
.hero-metrics span { display: block; margin-top: 4px; color: var(--soft); font-size: .9rem; }

.hero-visual { position: relative; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% 2% 8% 2%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(34,197,94,.24), rgba(56,189,248,.18));
  filter: blur(42px);
  z-index: -1;
}
.hero-visual img { width: min(100%, 620px); margin-inline: auto; filter: drop-shadow(0 24px 50px rgba(0,0,0,.38)); }

.trust-strip {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.05);
}
.trust-strip span { color: var(--muted); padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.06); font-weight: 800; }

.split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 44px; align-items: start; }
.section-title { position: sticky; top: 120px; }
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 42px; }
.section-heading .eyebrow { margin-inline: auto; margin-bottom: 16px; }
.section-heading p { font-size: 1.08rem; }

.about-card, .disclaimer, .contact-card, .game-card, .tech-grid div, .app-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.045));
  box-shadow: var(--shadow);
}
.about-card { border-radius: var(--radius); padding: 34px; }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 26px; }
.about-grid div { border: 1px solid var(--line); background: rgba(0,0,0,.16); border-radius: 22px; padding: 18px; }
.about-grid img { width: 34px; height: 34px; margin-bottom: 12px; }
.about-grid strong, .about-grid span { display: block; }
.about-grid span { margin-top: 8px; color: var(--soft); font-size: .93rem; line-height: 1.5; }

.apps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.app-card { border-radius: 30px; overflow: hidden; transition: .25s ease; }
.app-card:hover { transform: translateY(-6px); border-color: rgba(34,197,94,.38); }
.app-shot { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: rgba(255,255,255,.04); }
.app-body { padding: 22px; }
.app-body p { min-height: 116px; }
.app-body a { color: #86efac; font-weight: 900; }
.tag { display: inline-flex; padding: 7px 10px; border-radius: 999px; font-size: .78rem; font-weight: 900; margin-bottom: 14px; border: 1px solid rgba(255,255,255,.12); }
.tag.blue { background: rgba(56,189,248,.14); color: #bae6fd; }
.tag.green, .tag.emerald { background: rgba(34,197,94,.14); color: #bbf7d0; }
.tag.purple { background: rgba(167,139,250,.16); color: #ddd6fe; }
.tag.amber { background: rgba(245,158,11,.16); color: #fde68a; }
.tag.cyan { background: rgba(20,184,166,.16); color: #ccfbf1; }
.tag.red { background: rgba(251,113,133,.16); color: #fecdd3; }

.game-section { display: grid; grid-template-columns: 1fr 1fr; gap: 38px; align-items: center; }
.game-copy .eyebrow { margin-bottom: 18px; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 10px; }
.check-list li { color: var(--muted); background: rgba(255,255,255,.06); border: 1px solid var(--line); padding: 14px 16px; border-radius: 18px; }
.check-list li::before { content: "✓"; color: var(--primary); font-weight: 900; margin-right: 8px; }
.game-card { border-radius: var(--radius); padding: 18px; }
.game-card img { border-radius: 22px; margin-bottom: 18px; }
.game-card div { padding: 10px; }

.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tech-grid div { border-radius: 24px; padding: 24px; }
.tech-grid strong { display: block; font-size: 1.1rem; margin-bottom: 10px; }
.tech-grid span { color: var(--soft); line-height: 1.65; }

.disclaimer { border-radius: var(--radius); padding: 34px; background: linear-gradient(135deg, rgba(245,158,11,.13), rgba(255,255,255,.05)); }
.disclaimer h2 { font-size: clamp(1.7rem, 3vw, 2.8rem); margin-bottom: 12px; }

.contact-card { border-radius: 34px; padding: 34px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 34px; }
.contact-info { display: grid; gap: 12px; margin-top: 24px; }
.contact-info a, .contact-info span { color: var(--muted); padding: 14px 16px; border-radius: 18px; border: 1px solid var(--line); background: rgba(0,0,0,.16); }
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 8px; color: var(--muted); font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  color: var(--text);
  background: rgba(2, 6, 23, .62);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  outline: none;
  font: inherit;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgba(34,197,94,.64); box-shadow: 0 0 0 4px rgba(34,197,94,.12); }
.contact-form select option { background: #0f172a; }
.form-note { font-size: .84rem; color: var(--soft); margin: 0; }
.honeypot { display: none !important; }

.footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 26px;
  padding: 24px 0 10px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--soft);
}
.footer div { display: flex; align-items: center; gap: 10px; color: var(--text); }
.footer img { width: 36px; height: 36px; }
.footer a { color: #86efac; font-weight: 900; }

.reveal { opacity: 0; transform: translateY(22px); transition: .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@media (max-width: 980px) {
  .hero, .split, .game-section, .contact-card { grid-template-columns: 1fr; }
  .section-title { position: static; }
  .apps-grid, .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
}

@media (max-width: 720px) {
  .header { border-radius: 26px; align-items: flex-start; }
  .menu-toggle { display: flex; }
  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(7, 17, 31, .96);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .hero-metrics, .apps-grid, .tech-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 68px 0; }
  h1 { font-size: 2.6rem; }
  .footer { flex-direction: column; text-align: center; }
}
