@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Space+Mono:wght@400;700&display=swap');

/* =====================================================================
   JUMP WITH TARIK — 16-bit theme (mobile-first)
   Base styles target phones; min-width queries enhance for larger screens.
   ===================================================================== */

:root{
  --bg:#070b17;--panel:#0d1428;--line:#26375f;--text:#f3e3c4;
  --purple:#a96de0;--orange:#ef9b31;--green:#62cf4f;--blue:#4aa7e8;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;background:
  radial-gradient(circle at 50% 0,#171b42 0,#070b17 42%);
  color:var(--text);font-family:"Space Mono",monospace;
}
body:before{
  content:"";position:fixed;inset:0;pointer-events:none;opacity:.12;z-index:0;
  background-image:linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px);
  background-size:100% 4px;
}
a{color:inherit;text-decoration:none}

/* ---------- Status bar (altitude / status / dropzone) ---------- */
.statusbar{
  max-width:1100px;margin:0 auto;padding:14px 8px;position:relative;z-index:1;
  display:grid;grid-template-columns:1fr 1fr 1fr;gap:8px;
  border:3px solid var(--line);background:#050914;
  box-shadow:0 5px 0 #02040a;
}
.statusbar div{text-align:center}
.statusbar small,.statusbar strong{display:block;font-family:"Press Start 2P",monospace}
.statusbar small{font-size:.42rem;margin-bottom:8px;letter-spacing:.02em}
.statusbar strong{font-size:.55rem;color:var(--orange);line-height:1.5}
.statusbar .success{color:var(--green)}
.statusbar .ready{color:var(--blue)}

main{max-width:1100px;margin:auto;padding:0 8px 24px;position:relative;z-index:1}

/* ---------- Hero ---------- */
.hero{
  display:grid;grid-template-columns:1fr;align-items:center;overflow:hidden;
  border:3px solid var(--line);
  background:
  linear-gradient(0deg,rgba(7,11,23,.98) 0%,rgba(7,11,23,.35) 60%,rgba(7,11,23,.05) 100%),
  linear-gradient(#25114b,#b04959 60%,#ef9b31);
  position:relative;
}
.hero-copy{padding:36px 24px 12px;z-index:2;text-align:center;order:2}
.hero img{width:100%;height:auto;max-height:480px;object-fit:cover;object-position:center top;image-rendering:pixelated;order:1}

/* Banner hero: on mobile the image sits ABOVE the copy (like the bio
   section) so text never covers the photo. On desktop (>=800px, see the
   media query below) the copy is overlaid on the image with a scrim. */
.hero.banner-hero{display:block;position:relative;padding:0;background:none}
.hero.banner-hero>img{width:100%;height:auto;max-height:none;display:block;object-fit:contain}
.hero.banner-hero .hero-copy{position:static;padding:28px 24px 8px;text-align:center;background:none}
.hero.banner-hero h1{text-shadow:6px 6px 0 #03040b}

.kicker{font-family:"Press Start 2P";font-size:.58rem;color:var(--orange)}
h1,h2,.section-title{font-family:"Press Start 2P",monospace}
h1{font-size:clamp(2.8rem,17vw,5.2rem);line-height:.92;margin:16px 0 24px;color:var(--purple);text-shadow:6px 6px 0 #03040b}
h1 span{display:block;font-size:.32em;color:#f2edf9;margin-bottom:16px}
.hero-copy p{font-size:.95rem}

.gold-link{display:inline-block;margin-top:14px;color:#ffd33f;font-size:1rem}

/* Primary hero CTA button */
.cta{
  display:inline-block;margin-top:20px;padding:16px 26px;
  font-family:"Press Start 2P";font-size:.72rem;color:#fff;
  background:var(--orange);border:3px solid rgba(255,255,255,.35);
  box-shadow:inset 0 0 0 3px rgba(0,0,0,.3),5px 5px 0 #02040a;
  transition:transform .12s ease;
}
.cta:hover{transform:translate(3px,3px)}

/* ---------- Panels / bio ---------- */
.panel{
  border:3px solid var(--line);background:linear-gradient(180deg,#111a32,#090e1e);
  box-shadow:inset 0 0 0 2px #040713,0 5px 0 #02040a;
}
.bio{display:grid;grid-template-columns:1fr;gap:24px;padding:14px;margin-top:12px}
.bio>img{width:100%;height:100%;min-height:280px;max-height:440px;object-fit:cover;image-rendering:pixelated;border:3px solid #34466d}
.bio h2{color:var(--orange);font-size:1.45rem}
.bio ul{padding:0;list-style:none}
.bio li{margin:11px 0;font-size:1rem}
.bio li:before{content:">";color:#d970db;margin-right:12px;font-weight:bold}
.mission-box{border:3px solid #3c4660;padding:14px 18px;color:var(--green);margin-top:22px}
.mission-box span{display:block;font-family:"Press Start 2P";font-size:.55rem;margin-bottom:10px}

/* ---------- Sections ---------- */
.section{padding-top:32px}
.section-title{text-align:center;color:var(--blue);font-size:.8rem;margin-bottom:22px}

/* ---------- Link tiles ---------- */
.button-grid{display:grid;grid-template-columns:1fr;gap:14px}
.tile{
  min-height:108px;padding:18px 14px;border:3px solid rgba(255,255,255,.28);
  box-shadow:inset 0 0 0 3px rgba(0,0,0,.3),5px 5px 0 #02040a;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;font-family:"Press Start 2P";font-size:.65rem;
  transition:transform .12s ease;
}
.tile:hover{transform:translate(3px,3px)}
.tile small{font-family:"Space Mono";font-size:.75rem;margin-top:12px}
.tile[hidden]{display:none}
.tile.static{cursor:default}
.tile.static:hover{transform:none}
.tile.big{min-height:132px;font-size:.78rem}
.tile-icon{width:28px;height:28px;margin-bottom:12px;display:block}
.blue{background:#17608d}.green{background:#2f6e29}.navy{background:#164780}
.purple{background:#54246f}.pink{background:#8b225f}.amber{background:#9a5c0d}
.orange{background:#b5610d}.zelle{background:#6a1ee0}

/* ---------- "What to expect" steps ---------- */
.steps-grid{display:grid;grid-template-columns:1fr;gap:14px}
.step{
  border:3px solid var(--line);background:linear-gradient(180deg,#111a32,#090e1e);
  box-shadow:inset 0 0 0 2px #040713,0 5px 0 #02040a;
  padding:20px 18px;
}
.step-num{font-family:"Press Start 2P";font-size:1rem;color:var(--purple);display:block;margin-bottom:12px}
.step h3{font-family:"Press Start 2P";font-size:.7rem;color:var(--orange);margin:0 0 12px}
.step p{font-size:.9rem;margin:0;line-height:1.55}

/* ---------- Footer ---------- */
.footer{margin-top:32px;padding:26px 24px;display:flex;flex-direction:column;gap:18px;text-align:center;align-items:center;justify-content:space-between}
.footer strong,.footer span{display:block}.footer span{margin-top:8px}

/* =====================================================================
   TABLET AND UP
   ===================================================================== */
@media(min-width:560px){
  .button-grid{grid-template-columns:repeat(3,1fr)}
  .steps-grid{grid-template-columns:1fr 1fr}
  .statusbar strong{font-size:.68rem}
  .statusbar small{font-size:.5rem}
}

@media(min-width:800px){
  .statusbar{padding:18px 22px;grid-template-columns:1fr 1.4fr 1fr;gap:14px}
  .statusbar small{font-size:.55rem;margin-bottom:10px}
  .statusbar strong{font-size:.8rem}

  main{padding:0 16px 36px}

  .hero{grid-template-columns:.9fr 1.1fr;min-height:620px;
    background:
    linear-gradient(90deg,rgba(7,11,23,.98) 0%,rgba(7,11,23,.78) 42%,rgba(7,11,23,.08) 72%),
    linear-gradient(#25114b,#b04959 60%,#ef9b31);
  }
  .hero-copy{padding:48px;text-align:left;order:0}
  .hero img{height:100%;max-height:none;object-position:center;order:0}
  h1{font-size:clamp(3.2rem,8vw,6.7rem);line-height:.92;margin:16px 0 28px;text-shadow:7px 7px 0 #03040b}
  h1 span{margin-bottom:18px}
  .hero-copy p{font-size:1.05rem}
  .gold-link{font-size:1.05rem}

  /* Banner hero — overlay the copy on the image (desktop only) */
  .hero.banner-hero .hero-copy{
    position:absolute;left:0;right:0;bottom:0;z-index:2;
    padding:24px 48px 32px;text-align:left;
    background:linear-gradient(to top,rgba(5,7,15,.94) 0%,rgba(5,7,15,.78) 38%,rgba(5,7,15,0) 100%);
  }
  .hero.banner-hero h1{font-size:clamp(2.5rem,6vw,4.6rem);margin:6px 0 12px}
  .hero.banner-hero .hero-copy p{font-size:1rem}

  .bio{grid-template-columns:320px 1fr;gap:32px;padding:24px}
  .bio>img{min-height:340px}

  .footer{padding:26px 34px;flex-direction:row;text-align:left}
}

@media(min-width:900px){
  .steps-grid{grid-template-columns:repeat(4,1fr)}
}
