/* ============================================================
   Push Monsters — landing styles
   Dark neon / gaming theme
   ============================================================ */

:root {
  /* surfaces */
  --bg:        #000000;
  --bg-2:      #070707;
  --surface:   #101010;
  --surface-2: #181818;
  --border:    rgba(255, 255, 255, 0.12);
  --border-2:  rgba(255, 255, 255, 0.24);

  /* text */
  --text:      #ffffff;
  --muted:     #b2b2b2;
  --muted-2:   #6e6e6e;

  /* monochrome accents */
  --green: #ffffff;
  --cyan:  #ffffff;
  --purple:#ffffff;
  --pink:  #9a9a9a;

  --energy: linear-gradient(120deg, #ffffff, #c7c7c7);
  --monster: linear-gradient(135deg, #f2f2f2, #8c8c8c);

  --glow-green: 0 0 0 1px rgba(255,255,255,.35), 0 8px 30px rgba(255,255,255,.10);

  --radius:   18px;
  --radius-sm:12px;
  --container:1140px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Barlow Condensed", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand__name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}
h1, h2, h3 {
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.012em;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }

::selection { background: #ffffff; color: #000000; }
::-moz-selection { background: #ffffff; color: #000000; }

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

/* ---------- background fx ---------- */
.bg-grid {
  position: fixed; inset: 0; z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
}
.bg-glow {
  position: fixed; z-index: -1; border-radius: 50%;
  filter: blur(120px); opacity: .35; pointer-events: none;
}
.bg-glow--1 { top: -180px; left: -120px; width: 520px; height: 520px; background: #ffffff; opacity: .06; }
.bg-glow--2 { top: 320px;  right: -160px; width: 480px; height: 480px; background: #ffffff; opacity: .04; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: "Barlow Condensed", sans-serif; font-weight: 600;
  border: 1px solid var(--border-2); border-radius: 999px;
  padding: 14px 26px; color: var(--text); cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  background: var(--surface-2);
}
.btn--sm { padding: 10px 18px; font-size: .92rem; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--energy); color: #000000; border-color: transparent;
  box-shadow: 0 8px 28px rgba(255,255,255,.18);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(255,255,255,.30); }
.btn:hover { transform: translateY(-2px); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(0,0,0,.55);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.nav.is-scrolled { background: rgba(0,0,0,.85); border-bottom-color: var(--border); }
.nav__inner { display: flex; align-items: center; gap: 24px; height: 70px; }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__icon { border-radius: 8px; box-shadow: 0 0 0 1px rgba(255,255,255,.14); }
.brand__name { font-size: 1.4rem; font-weight: 800; font-style: italic; text-transform: uppercase; letter-spacing: .02em; }

.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a { color: var(--muted); font-weight: 500; font-size: .95rem; transition: color .2s; }
.nav__links a:hover { color: var(--text); }
.nav__cta { margin-left: 8px; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; margin-left: auto; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 70px 0 40px; }
.hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--text);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18);
  padding: 7px 14px; border-radius: 999px;
}
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: pulse 1.8s infinite; }

.hero__title { font-size: clamp(2.6rem, 6vw, 4.4rem); margin: 22px 0 20px; }
.grad-text {
  background: var(--energy); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.strike { color: var(--muted-2); text-decoration: line-through; text-decoration-color: var(--pink); text-decoration-thickness: 4px; }

.hero__lede { font-size: 1.12rem; color: var(--muted); max-width: 540px; }
.hero__lede strong { color: var(--text); }

.store-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.store-buttons--center { justify-content: center; }
.store-badge { border-radius: 9px; transition: transform .2s var(--ease), filter .2s; }
.store-badge svg { display: block; height: 68px; width: auto; }
.store-badge:hover { transform: translateY(-3px); filter: drop-shadow(0 10px 22px rgba(255,255,255,.22)); }
.store-note { margin-top: 16px; font-size: .9rem; color: var(--muted-2); }

/* hero app icon */
.hero__visual { position: relative; display: flex; flex-direction: column; align-items: center; gap: 30px; }
.app-icon {
  position: relative;
  width: clamp(150px, 17vw, 180px);
  aspect-ratio: 1;
  border-radius: 23%;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 70px rgba(0,0,0,.65), 0 0 0 1px rgba(255,255,255,.14), 0 0 60px rgba(255,255,255,.05);
  animation: float 4.5s ease-in-out infinite;
}
.app-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.app-icon::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background: linear-gradient(155deg, rgba(255,255,255,.12), transparent 42%);
}
.hero__visual .store-buttons { margin-top: 0; }
.hero__visual .store-note { margin-top: 0; text-align: center; }

/* phone mockup (legacy — no longer in markup, kept for optional revert) */
.hero__visual--phone { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative; width: 300px; aspect-ratio: 300 / 610;
  background: #050505; border-radius: 44px; padding: 12px;
  border: 1px solid var(--border-2);
  box-shadow: 0 40px 80px rgba(0,0,0,.55), inset 0 0 0 2px rgba(255,255,255,.04);
  z-index: 2;
}
.phone__notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 120px; height: 26px; background: #050505; border-radius: 0 0 16px 16px; z-index: 3; }
.phone__screen {
  width: 100%; height: 100%; border-radius: 34px; overflow: hidden;
  background: radial-gradient(120% 80% at 50% 0%, #1c1c1c 0%, #0a0a0a 55%, #000000 100%);
  position: relative;
}
.phone__glow { position: absolute; inset: -30px; background: var(--monster); filter: blur(90px); opacity: .12; border-radius: 50%; z-index: 0; }

/* battle scene */
.battle { position: relative; height: 100%; display: flex; flex-direction: column; padding: 40px 20px 22px; color: #fff; }
.battle__top { display: flex; justify-content: space-between; align-items: center; }
.battle__label { font-family: "Barlow Condensed"; font-weight: 700; font-size: .72rem; letter-spacing: .12em; color: var(--pink); }
.battle__timer { font-family: "Barlow Condensed"; font-weight: 700; font-size: 1.1rem; color: var(--green); }
.monster--boss { display: flex; justify-content: center; margin: 6px 0 4px; animation: float 3.6s ease-in-out infinite; filter: drop-shadow(0 0 24px rgba(176,107,255,.5)); }
.battle__hp { font-size: .78rem; text-align: center; color: #cccccc; }
.battle__hp span { display: block; margin-bottom: 6px; font-weight: 600; }
.hpbar { height: 8px; border-radius: 6px; background: rgba(255,255,255,.12); overflow: hidden; }
.hpbar__fill { height: 100%; background: linear-gradient(90deg, #ffffff, #9a9a9a); box-shadow: 0 0 12px rgba(255,255,255,.4); }

.battle__rep { display: flex; justify-content: center; margin-top: auto; }
.ring { position: relative; width: 118px; height: 118px; }
.ring__num { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ring__num strong { font-family: "Barlow Condensed"; font-size: 2rem; line-height: 1; }
.ring__num span { font-size: .68rem; color: var(--muted); margin-top: 3px; }
.battle__cam { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 16px; font-size: .68rem; color: var(--muted); }
.rec { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 1.4s infinite; }

/* trust strip */
.trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px;
  margin-top: 64px; padding: 22px 24px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  color: var(--muted); font-size: .95rem;
}
.trust li { position: relative; }
.trust strong { color: var(--text); font-weight: 600; }
.trust li:not(:last-child)::after { content: "·"; position: absolute; right: -22px; color: var(--muted-2); }

/* ---------- sections ---------- */
.section { padding: 96px 0; position: relative; }
.section--alt { background: linear-gradient(180deg, transparent, rgba(255,255,255,.03), transparent); }
.section__head { max-width: 680px; margin-bottom: 54px; }
.kicker {
  font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--cyan);
}
.section__head h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin: 14px 0 0; }
.section__sub { margin-top: 16px; color: var(--muted); font-size: 1.08rem; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.steps .step:nth-child(4) { grid-column: 1 / 2; }
.step {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; position: relative; overflow: hidden;
  transition: transform .25s var(--ease), border-color .25s;
}
.step::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--energy); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.step:hover { transform: translateY(-4px); border-color: var(--border-2); }
.step:hover::before { transform: scaleX(1); }
.step__num { font-family: "Barlow Condensed"; font-weight: 700; font-size: 2.4rem; background: var(--energy); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: .9; }
.step h3 { font-size: 1.25rem; margin: 8px 0 8px; }
.step p { color: var(--muted); font-size: .98rem; }

/* ---------- features ---------- */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.fcard {
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; transition: transform .25s var(--ease), border-color .25s;
}
.fcard:hover { transform: translateY(-4px); border-color: var(--border-2); }
.fcard__icon {
  flex: none; width: 50px; height: 50px; border-radius: 14px; margin-bottom: 6px;
  display: grid; place-items: center; color: var(--text);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
}
.fcard h3 { font-size: 1.4rem; line-height: 1.1; }
.fcard p { color: var(--muted); font-size: 1.02rem; line-height: 1.5; }

/* ---------- cta ---------- */
.cta { text-align: center; }
.cta__inner {
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(255,255,255,.10), transparent 60%),
    var(--surface);
  border: 1px solid var(--border); border-radius: 28px; padding: 64px 28px;
}
.cta__title { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.cta__sub { color: var(--muted); font-size: 1.12rem; margin: 14px 0 30px; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 56px 0 40px; background: var(--bg-2); }
.footer__inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; }
.footer__brand .brand__name { font-size: 1.2rem; }
.footer__brand p { color: var(--muted); margin-top: 8px; font-size: .95rem; }
.footer__links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer__links a { color: var(--muted); font-weight: 500; transition: color .2s; }
.footer__links a:hover { color: var(--green); }
.footer__note { margin-top: 36px; padding-top: 26px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__note p { color: var(--muted-2); font-size: .86rem; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }

/* ---------- keyframes ---------- */
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(0,0,0,.97); padding: 20px 24px; gap: 18px; border-bottom: 1px solid var(--border);
  }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero__inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero__copy { display: flex; flex-direction: column; align-items: center; }
  .hero__visual { order: -1; }
  .store-buttons { justify-content: center; }

  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps .step:nth-child(4) { grid-column: auto; }
  .features { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .section { padding: 70px 0; }
  .steps { grid-template-columns: 1fr; }
  .phone { width: 260px; }
  .trust { gap: 10px 26px; }
  .trust li:not(:last-child)::after { right: -16px; }
  .footer__note { flex-direction: column; }
}

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