/* Marketing site. The recurring device is the lunchbox: a chrome-edged frame with
   a handle that the live game sits inside, echoing the LaunchBox mark. */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(7, 11, 24, 0.82);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 70px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--cream);
  margin-right: auto;
}
.brand img { width: 40px; height: 40px; border-radius: 10px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand-name em {
  font-style: normal;
  background: linear-gradient(120deg, var(--flame), var(--ember));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-sub {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-top: 2px;
}
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--cream-dim);
  text-decoration: none;
}
.site-nav a:hover { color: var(--cream); }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .site-nav {
    position: fixed;
    inset: 70px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--gutter) 20px;
    background: var(--hull);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform 0.24s ease;
  }
  .site-nav.is-open { transform: none; }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .site-nav .btn { margin-top: 14px; }
  .nav-toggle {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--cream);
    cursor: pointer;
    font-size: 18px;
  }
}

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

.hero { position: relative; overflow: hidden; padding: clamp(44px, 7vw, 84px) 0 var(--stack); }
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 {
  font-size: clamp(42px, 7.4vw, 82px);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  display: block;
  background: linear-gradient(115deg, var(--flame) 10%, var(--ember) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lede {
  font-size: clamp(16.5px, 2vw, 19.5px);
  color: var(--cream-dim);
  max-width: 46ch;
  margin-bottom: 26px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.hero-points { display: grid; gap: 10px; }
.hero-point {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--cream-dim);
}
.hero-point::before {
  content: '';
  flex: none;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(56, 211, 159, 0.16);
}

/* The lunchbox: chrome frame, handle, latch. Holds the live game. */
.lunchbox { position: relative; padding-top: 26px; }
.lunchbox-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 118px;
  height: 46px;
  border: 9px solid transparent;
  border-radius: 60px 60px 0 0;
  border-bottom: 0;
  background: var(--chrome) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.lunchbox-body {
  position: relative;
  border-radius: var(--r-xl);
  padding: 11px;
  background: var(--chrome);
  box-shadow: var(--shadow-lift);
}
.lunchbox-screen {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 10 / 13;
  max-height: 640px;
}
@media (max-width: 980px) { .lunchbox-screen { aspect-ratio: 3 / 4; } }

/* On a phone, a fixed aspect ratio either crops the game or pushes the rest of
   the page off screen. Give it a share of the viewport height instead. */
@media (max-width: 620px) {
  .lunchbox { padding-top: 22px; }
  .lunchbox-body { padding: 8px; border-radius: 26px; }
  .lunchbox-screen {
    aspect-ratio: auto;
    height: min(74dvh, 560px);
    min-height: 440px;
    border-radius: 19px;
  }
  .lunchbox-handle { width: 96px; height: 38px; border-width: 8px; }
  .lunchbox-tag { left: 50%; transform: translateX(-50%) rotate(-2deg); top: 12px; }
}
.lunchbox-latch {
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 62px;
  height: 18px;
  border-radius: 6px;
  background: var(--chrome);
  box-shadow: 0 4px 10px rgba(3, 7, 20, 0.4);
}
.lunchbox-tag {
  position: absolute;
  top: 20px;
  left: -12px;
  z-index: 5;
  padding: 6px 13px;
  border-radius: 8px;
  background: var(--jet);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(-4deg);
  box-shadow: 0 8px 20px rgba(47, 123, 255, 0.4);
}

/* ---------------------------------------------------------------- bands -- */

.band { padding: var(--stack) 0; }
.band--hull { background: var(--hull); border-block: 1px solid var(--line); }
.band-head { max-width: 62ch; margin-bottom: clamp(30px, 4vw, 52px); }
.band-head h2 { font-size: clamp(30px, 4.6vw, 48px); margin-bottom: 14px; }
.band-head p { font-size: 17px; color: var(--cream-dim); }
.band-head--center { margin-inline: auto; text-align: center; }

.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; counter-reset: step; }
@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: 26px 18px 20px;
  border-radius: var(--r-md);
  background: var(--hull-2);
  border: 1px solid var(--line);
}
.band--hull .step { background: var(--ink); }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -16px;
  left: 18px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(140deg, var(--flame), var(--ember));
  color: #17060B;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
}
.step h3 { font-size: 18px; margin-bottom: 7px; }
.step p { font-size: 14px; color: var(--cream-dim); }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: 18px; }
.card {
  padding: 26px 24px;
  border-radius: var(--r-md);
  background: var(--hull-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.band--hull .card { background: var(--ink); }
.card h3 { font-size: 19px; margin-bottom: 9px; }
.card p { font-size: 14.5px; color: var(--cream-dim); }
.card-metric {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--jet-soft);
  margin-bottom: 4px;
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 62px); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.checklist { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
/* The tick is generated content, so it is a grid item too. Everything else has to
   sit inside a single wrapper — a bare text node beside an element would become a
   third item and drop into the 26px tick column, one word per line. */
.checklist li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--cream-dim);
}
.checklist li > * { grid-column: 2; min-width: 0; }
.checklist li::before {
  content: '✓';
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(56, 211, 159, 0.14);
  border: 1px solid rgba(56, 211, 159, 0.36);
  color: var(--mint);
  font-size: 14px;
  font-weight: 700;
}
.checklist li b { color: var(--cream); font-weight: 600; }

/* -------------------------------------------------------------- pricing -- */

.price-wrap { display: grid; grid-template-columns: minmax(0, 400px) minmax(0, 1fr); gap: clamp(26px, 4vw, 54px); align-items: start; }
@media (max-width: 900px) { .price-wrap { grid-template-columns: 1fr; } }
.price-card {
  position: relative;
  padding: 34px 30px;
  border-radius: var(--r-lg);
  background: linear-gradient(170deg, var(--hull-2), var(--ink));
  border: 1.5px solid rgba(255, 122, 24, 0.44);
  box-shadow: 0 22px 54px rgba(3, 7, 20, 0.5);
  overflow: hidden;
}
.price-card::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--jet), var(--flame), var(--ember));
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
  margin: 6px 0 4px;
}
.price-amount b { font-size: clamp(56px, 9vw, 76px); font-weight: 800; letter-spacing: -0.045em; line-height: 0.9; }
.price-amount span { font-size: 16px; font-weight: 600; color: var(--cream-dim); }
.price-note { font-size: 14px; color: var(--cream-dim); margin-bottom: 22px; }
.price-card .btn { width: 100%; margin-bottom: 10px; }
.price-fine { font-size: 12.5px; color: var(--cream-faint); text-align: center; }
.included { display: grid; grid-template-columns: repeat(auto-fit, minmax(224px, 1fr)); gap: 12px 26px; }
.included h3 {
  grid-column: 1 / -1;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 2px;
}
.included div { display: flex; gap: 10px; font-size: 14.5px; color: var(--cream-dim); }
.included div::before { content: '→'; color: var(--jet); flex: none; }

/* ----------------------------------------------------------------- form -- */

.demo-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 30px;
  border-radius: var(--r-lg);
  background: var(--hull-2);
  border: 1px solid var(--line);
}
@media (max-width: 700px) { .demo-form { grid-template-columns: 1fr; padding: 22px; } }
.demo-form .full { grid-column: 1 / -1; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

.faq { display: grid; gap: 12px; }
.faq details {
  padding: 18px 22px;
  border-radius: var(--r-md);
  background: var(--hull-2);
  border: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--flame); font-size: 22px; line-height: 1; }
.faq details[open] summary::after { content: '−'; }
.faq p { margin-top: 11px; font-size: 14.5px; color: var(--cream-dim); }

/* --------------------------------------------------------------- footer -- */

.site-footer { padding: var(--stack) 0 40px; border-top: 1px solid var(--line); background: var(--hull); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 34px; margin-bottom: 40px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-bottom: 14px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-grid a { font-size: 14.5px; color: var(--cream-dim); text-decoration: none; }
.footer-grid a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--cream-faint);
}

.legal { padding: clamp(40px, 6vw, 72px) 0 var(--stack); }
.legal .wrap { max-width: 74ch; }
.legal h1 { font-size: clamp(32px, 5vw, 46px); margin-bottom: 8px; }
.legal .updated { font-size: 13px; color: var(--cream-faint); margin-bottom: 34px; }
.legal h2 { font-size: 22px; margin: 34px 0 10px; }
.legal p, .legal li { font-size: 15.5px; color: var(--cream-dim); margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--jet-soft); }

/* Closing line under a band of cards. */
.band-foot {
  max-width: 62ch;
  margin-top: clamp(22px, 3vw, 34px);
  font-size: 16.5px;
  color: var(--cream-dim);
}

