/* NEON PAYCHECK — concept landing page v0.2 (GSAP-only) */

:root {
  --bg: #07030f;
  --cyan: #39e6ff;
  --pink: #ff3ec8;
  --gold: #ffe04a;
  --green: #5dffa3;
  --text: #d9d4ee;
  --dim: #8d85ad;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Chakra Petch', sans-serif;
  overflow-x: hidden;
}

img { display: block; }

/* ---------- overlays ---------- */

#grain {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.05;
  background: repeating-linear-gradient(to bottom, transparent 0 2px, #000 2px 4px);
}

#concept-tag {
  position: fixed;
  bottom: 14px;
  left: 16px;
  z-index: 51;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--dim);
  border: 1px solid rgba(141, 133, 173, 0.35);
  padding: 4px 8px;
  background: rgba(7, 3, 15, 0.6);
}

/* ---------- type helpers ---------- */

.kicker {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(9px, 1.1vw, 12px);
  letter-spacing: 4px;
  color: var(--green);
  text-shadow: 0 0 14px rgba(93, 255, 163, 0.5);
  margin-bottom: 28px;
}

.section-h {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(24px, 4.6vw, 52px);
  line-height: 1.5;
  margin-bottom: 30px;
  text-shadow: 0 0 22px rgba(57, 230, 255, 0.35);
}

.big-copy {
  font-size: clamp(19px, 2.6vw, 30px);
  font-weight: 300;
  line-height: 1.6;
  max-width: 880px;
}

.big-copy.dim { color: var(--dim); }
.big-copy.narrow { max-width: 640px; font-size: clamp(16px, 1.9vw, 21px); }
.big-copy + .big-copy { margin-top: 36px; }

.cyan-t { color: var(--cyan); text-shadow: 0 0 18px rgba(57, 230, 255, 0.6); }
.gold-t { color: var(--gold); text-shadow: 0 0 22px rgba(255, 224, 74, 0.55); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -6% 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center 45%, rgba(7, 3, 15, 0.25) 0%, rgba(7, 3, 15, 0.78) 100%),
    linear-gradient(to bottom, rgba(7, 3, 15, 0.45), transparent 30%, transparent 60%, var(--bg) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 6vw;
}

.eyebrow {
  font-size: clamp(11px, 1.4vw, 14px);
  letter-spacing: 8px;
  margin-bottom: 3vh;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.neon-title {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
  font-family: 'Tilt Neon', sans-serif;
  font-size: clamp(58px, 14vw, 180px);
  letter-spacing: 0.04em;
}

.neon-word { opacity: 0; }

.neon-word.cyan {
  color: #d8f9ff;
  text-shadow:
    0 0 6px #b8f4ff,
    0 0 18px var(--cyan),
    0 0 48px var(--cyan),
    0 0 90px rgba(57, 230, 255, 0.6);
}

.neon-word.pink {
  color: #ffe1f5;
  text-shadow:
    0 0 6px #ffc4ea,
    0 0 18px var(--pink),
    0 0 48px var(--pink),
    0 0 90px rgba(255, 62, 200, 0.6);
}

.tagline {
  margin-top: 4vh;
  font-size: clamp(14px, 1.8vw, 19px);
  letter-spacing: 3px;
  color: var(--gold);
  text-shadow: 0 0 16px rgba(255, 224, 74, 0.5), 0 2px 10px rgba(0, 0, 0, 0.8);
}

.scroll-cue {
  position: absolute;
  bottom: 5vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--text);
  text-align: center;
  line-height: 2.2;
  animation: cuebob 2.2s ease-in-out infinite;
}

@keyframes cuebob {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.7; }
  50% { transform: translate(-50%, 8px); opacity: 1; }
}

/* ---------- marquee ---------- */

.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(57, 230, 255, 0.25);
  border-bottom: 1px solid rgba(57, 230, 255, 0.25);
  background: rgba(8, 18, 36, 0.4);
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-family: 'Press Start 2P', monospace;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(57, 230, 255, 0.5);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- sections ---------- */

.section {
  position: relative;
  padding: 18vh 8vw;
  max-width: 1280px;
  margin: 0 auto;
}

/* ---------- parallax band ---------- */

.img-band {
  position: relative;
  height: 64vh;
  overflow: hidden;
}

.img-band img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  margin-top: -15%;
}

.img-band::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 40px 60px -20px var(--bg), inset 0 -40px 60px -20px var(--bg);
}

/* ---------- steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}

.step {
  border: 1px solid rgba(57, 230, 255, 0.22);
  background: rgba(10, 16, 34, 0.45);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.step:hover { transform: translateY(-6px); border-color: rgba(57, 230, 255, 0.6); }

.step-img {
  height: 200px;
  overflow: hidden;
}

.step-img img {
  width: 100%;
  height: 125%;
  object-fit: cover;
}

.step-num {
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  color: var(--pink);
  text-shadow: 0 0 12px rgba(255, 62, 200, 0.6);
  padding: 20px 22px 0;
}

.step h3 {
  font-family: 'Press Start 2P', monospace;
  font-size: 15px;
  letter-spacing: 2px;
  padding: 12px 22px 0;
}

.step p {
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--dim);
  padding: 12px 22px 26px;
}

.goal-banner {
  margin-top: 70px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 224, 74, 0.35);
  background: linear-gradient(90deg, rgba(255, 224, 74, 0.07), transparent 60%);
  padding: 26px 34px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.goal-num {
  font-size: clamp(13px, 1.6vw, 17px);
  letter-spacing: 4px;
  color: var(--gold);
}

.goal-num b {
  font-family: 'Tilt Neon', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  color: #fff8df;
  text-shadow: 0 0 12px var(--gold), 0 0 44px rgba(255, 224, 74, 0.6);
  font-variant-numeric: tabular-nums;
  margin-right: 12px;
}

.goal-text {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(10px, 1.3vw, 14px);
  letter-spacing: 2px;
  color: var(--text);
}

/* ---------- maya ---------- */

.char-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 7vw;
  align-items: center;
}

.char-img-wrap img {
  width: 100%;
  max-width: 400px;
  border: 1px solid rgba(57, 230, 255, 0.3);
  box-shadow: 0 24px 80px rgba(255, 62, 200, 0.18);
}

/* ---------- learnings cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 60px;
}

.holo-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(57, 230, 255, 0.5);
  background: rgba(7, 16, 34, 0.62);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 24px rgba(57, 230, 255, 0.1), 0 0 40px rgba(57, 230, 255, 0.07) inset;
  padding: 22px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.holo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 44px rgba(57, 230, 255, 0.25), 0 0 40px rgba(57, 230, 255, 0.07) inset;
}

.holo-card.danger { border-color: rgba(255, 94, 94, 0.55); }
.holo-card.danger:hover { box-shadow: 0 0 44px rgba(255, 94, 94, 0.3); }

.hc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hc-sender {
  color: var(--cyan);
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
}

.holo-card.danger .hc-sender { color: #ff8585; }

.hc-open {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--green);
  border: 1px solid rgba(93, 255, 163, 0.5);
  padding: 3px 10px;
}

.hc-body {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}

.lesson-chip {
  border: 1px solid rgba(93, 255, 163, 0.4);
  background: rgba(10, 30, 22, 0.55);
  padding: 12px 14px;
  font-size: 12.5px;
  line-height: 1.6;
  color: #c9ffe2;
}

.lesson-chip span {
  display: inline-block;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 9px;
  margin-right: 8px;
  border: 1px solid rgba(93, 255, 163, 0.5);
  padding: 2px 6px;
  transform: translateY(-1px);
}

.takeaway-line {
  margin-top: 60px;
  text-align: center;
  font-size: clamp(10px, 1.3vw, 13px);
  letter-spacing: 4px;
  color: var(--dim);
}

/* ---------- finale ---------- */

.finale {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16vh 8vw;
  background:
    linear-gradient(to bottom, var(--bg) 0%, rgba(7, 3, 15, 0.35) 35%, rgba(7, 3, 15, 0.6) 100%),
    url("End of Game Wide.png") center / cover no-repeat;
}

.finale-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 760px;
}

.finale-h {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(24px, 4.6vw, 50px);
  line-height: 1.6;
  text-shadow: 0 0 22px rgba(57, 230, 255, 0.4), 0 4px 18px rgba(0, 0, 0, 0.8);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.btn {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-decoration: none;
  padding: 17px 30px;
  transition: all 0.25s ease;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-pink {
  color: #16030f;
  background: var(--pink);
  box-shadow: 0 0 28px rgba(255, 62, 200, 0.55);
}

.btn-pink:hover { box-shadow: 0 0 48px rgba(255, 62, 200, 0.9); transform: translateY(-2px); }

.btn-cyan {
  color: var(--cyan);
  border: 1px solid rgba(57, 230, 255, 0.6);
  background: rgba(8, 18, 36, 0.55);
}

.btn-cyan:hover { background: rgba(57, 230, 255, 0.12); box-shadow: 0 0 32px rgba(57, 230, 255, 0.4); transform: translateY(-2px); }

.share-line {
  font-size: 13px;
  color: var(--text);
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

footer {
  margin-top: 7vh;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(217, 212, 238, 0.55);
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .steps, .cards { grid-template-columns: 1fr; }
  .char-grid { grid-template-columns: 1fr; gap: 48px; }
  .char-img-wrap img { max-width: 260px; margin: 0 auto; }
  .section { padding: 14vh 7vw; }
  .img-band { height: 44vh; }
  .goal-banner { flex-direction: column; align-items: flex-start; }
}
