/* BitLife marketing site — playful & chunky design system v2
   Retuned to match in-game UI: bright red header, yellow wordmark,
   royal blue buttons, vivid green CTAs, ivory paper, blood-red card text.
*/

/* Brand fonts — supplied by user */
@font-face {
  font-family: "Molot";
  src: url("uploads/Molot.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next";
  src: url("uploads/Avenir%20Next%20Cyr/AvenirNext-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next";
  src: url("uploads/Avenir%20Next%20Cyr/AvenirNext-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next";
  src: url("uploads/Avenir%20Next%20Cyr/AvenirNext-Demi.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next";
  src: url("uploads/Avenir%20Next%20Cyr/AvenirNext-Bold%205.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next";
  src: url("uploads/Avenir%20Next%20Cyr/AvenirNext-Heavy.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand — official brand guide colors (Brand guide _08.pdf) */
  --bit-red:        #E53000;   /* primary red (Pantone Warm Red C) */
  --bit-red-dark:   #A52300;
  --bit-yellow:     #FFF100;   /* primary yellow (Pantone Hexachrome Yellow C) */
  --bit-yellow-dim: #D9CD00;
  --bit-blue:       #00569C;   /* secondary — dark blue (Pantone 2945C) */
  --bit-blue-dim:   #003F73;
  --bit-blue-soft:  #D6E3F1;   /* button-shadow stack */
  --bit-blue-mid:   #007ACF;   /* secondary — mid blue (Pantone 299C) */
  --bit-cyan:       #5BC6C9;   /* secondary — light blue (Pantone 3248C) */
  --bit-orange:     #F58231;   /* (legacy accent — not in brand guide) */
  --bit-green:      #279B39;   /* secondary — green (Pantone 362C) */
  --bit-green-dim:  #1B6D27;

  /* Surfaces — site-wide soft neutrals (comp v3) */
  --bg:         #F9F9F9;       /* page backdrop, used everywhere except blue strip */
  --bg-2:       #F9F9F9;       /* legacy alias, kept for backwards compat */
  --bg-signpost:#D8E5EE;       /* "Three new sections" pale blue */
  --bg-mint:    #DCEAEA;       /* email-capture card */
  --bg-footer:  #E5EEF1;       /* site footer */
  --paper:      #FFFFFF;       /* white card */
  --paper-stripe: #F2F2F2;     /* alt-row tint */

  /* Ink */
  --ink:        #2A140C;       /* near-black w/ red bias (matches card body text) */
  --ink-2:      #5C3A2E;       /* secondary text */
  --ink-deep:   #4A0F0F;       /* card heading red-black */
  --rule:       #2A140C;

  /* Aliases used across components */
  --primary:   var(--bit-blue);
  --accent:    var(--bit-yellow);
  --hot:       var(--bit-red);
  --pass:      var(--bit-green);
  --fail:      var(--bit-red);

  /* Type
     - Display: chunky condensed display, à la BitLife wordmark
     - Body:    friendly humanist sans
     - Mono:    monospaced for tags / patch versions
  */
  --display: "Molot", "Lilita One", "Bowlby One", system-ui, sans-serif;
  --body:    "Avenir Next", "Nunito", system-ui, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Radius + shadow */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;

  --b: 3px;                    /* chunky border */
  --b-thick: 4px;
  --shadow-sticker: 6px 6px 0 var(--ink);
  --shadow-deep:    10px 10px 0 var(--ink);
  /* In-game button has a soft drop-stack underneath, not a hard offset.
     Use shadow-button for inline UI, shadow-sticker for marketing cards. */
  --shadow-button:  0 4px 0 rgba(0,0,0,0.18), 0 8px 14px -8px rgba(0,0,0,0.35);
  --shadow-soft:    0 14px 40px -18px rgba(20, 17, 14, 0.35);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

/* Display + body type */
.display {
  font-family: var(--display);
  font-weight: 400;          /* Molot only ships at 400 */
  letter-spacing: -0.005em;
  line-height: 0.95;
  /* Brand guide: Molot is used in CAPITAL LETTERS ONLY. */
  text-transform: uppercase;
}
.display--tight { line-height: 0.88; letter-spacing: -0.015em; }
.eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
}

/* Sticker primitives ------------------------------------------------ */

.sticker {
  background: var(--paper);
  border: var(--b) solid var(--rule);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sticker);
}

/* In-game card: thick colored border, ivory fill, blood-red text */
.gamecard {
  background: var(--paper);
  border: var(--b-thick) solid var(--ink);
  border-radius: var(--r-lg);
  color: var(--ink-deep);
  box-shadow: var(--shadow-sticker);
  padding: 22px 24px;
}
.gamecard--red    { border-color: var(--bit-red); }
.gamecard--yellow { border-color: var(--bit-yellow-dim); }
.gamecard--blue   { border-color: var(--bit-blue); }
.gamecard--green  { border-color: var(--bit-green); }

/* Buttons — modeled on in-game blue/green pill buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 14px;
  border: var(--b) solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-sticker);
  transition: transform .12s ease, box-shadow .12s ease;
  letter-spacing: 0.005em;
}
.btn:hover  { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px);   box-shadow: 2px 2px 0 var(--ink); }

.btn--primary { background: var(--bit-blue);   color: #fff; }
.btn--green   { background: var(--bit-green);  color: #fff; }
.btn--red     { background: var(--bit-red);    color: #fff; }
.btn--yellow  { background: var(--bit-yellow); color: var(--ink-deep); }
.btn--ink     { background: var(--ink);        color: var(--paper); }

/* Pill button — softer in-game style with stacked drop, no thick border */
.pillbtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 14px;
  border: 0;
  background: var(--bit-blue);
  color: #fff;
  font-family: var(--body);
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-button);
  transition: transform .12s ease, box-shadow .12s ease;
}
.pillbtn:hover  { transform: translateY(-1px); }
.pillbtn:active { transform: translateY(2px); box-shadow: 0 2px 0 rgba(0,0,0,0.18); }
.pillbtn--green  { background: var(--bit-green); }
.pillbtn--red    { background: var(--bit-red); }
.pillbtn--yellow { background: var(--bit-yellow); color: var(--ink-deep); }

/* Tag / chip */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px 6px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tag--red    { background: var(--bit-red);    color: #fff; border-color: var(--ink); }
.tag--yellow { background: var(--bit-yellow); color: var(--ink-deep); }
.tag--blue   { background: var(--bit-blue);   color: #fff; }
.tag--green  { background: var(--bit-green);  color: #fff; }

/* Stat bar (BitLife-coded) — green fill, blue label, percent on right */
.stat-row { display: grid; grid-template-columns: 88px 1fr 48px; gap: 12px; align-items: center; }
.stat-row .label {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 800;
  color: var(--bit-blue);
  text-align: right;
}
.stat-row .pct {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 800;
  color: var(--bit-blue);
  text-align: right;
}
.stat-bar {
  height: 18px;
  border: 2px solid var(--bit-blue-dim);
  border-radius: 6px;
  background: var(--bit-blue-soft);
  overflow: hidden;
  position: relative;
}
.stat-bar > i {
  display: block;
  height: 100%;
  background: var(--bit-green);
  border-right: 2px solid var(--bit-green-dim);
}

/* App store badges */
.appbadge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 12px 16px;
  border-radius: 14px;
  border: var(--b) solid var(--rule);
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  box-shadow: var(--shadow-sticker);
  font-family: var(--body);
}
.appbadge .glyph { font-size: 30px; line-height: 1; }
.appbadge .top { font-size: 10px; opacity: .7; letter-spacing: .12em; text-transform: uppercase; }
.appbadge .bot { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }

/* Image placeholder (striped) */
.placeholder {
  background:
    repeating-linear-gradient(135deg,
      rgba(20,17,14,0.07) 0 8px,
      transparent 8px 16px),
    var(--bg-2);
  border: var(--b) solid var(--rule);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
}
.placeholder::after {
  content: attr(data-label);
  position: absolute;
  inset: 12px;
  display: flex;
  align-items: flex-end;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
}

/* In-game header bar — bright red w/ yellow wordmark */
.gamebar {
  background: var(--bit-red);
  color: #fff;
  border-bottom: var(--b-thick) solid var(--bit-red-dark);
}
.wordmark {
  font-family: var(--display);
  font-size: 30px;
  color: var(--bit-yellow);
  letter-spacing: 0.005em;
  text-shadow: 0 2px 0 rgba(0,0,0,0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wordmark .embryo {
  width: 30px; height: 30px; border-radius: 999px;
  background: #fff;
  display: inline-grid; place-items: center;
  border: 2px solid var(--bit-red-dark);
  font-size: 18px;
}

/* Section scaffolding */
.shell { width: 1240px; margin: 0 auto; padding: 0 56px; }

/* Highlight — soft yellow band under display words (legacy default) */
.scribble {
  background-image: linear-gradient(120deg, var(--bit-yellow) 0%, var(--bit-yellow) 100%);
  background-repeat: no-repeat;
  background-size: 100% 38%;
  background-position: 0 88%;
  padding: 0 4px;
}
/* Light-blue variant used on the v3 hero */
.scribble--blue {
  background-image: linear-gradient(120deg, #B6D7E8 0%, #B6D7E8 100%);
}

/* "Card stamp" rotation utility */
.tilt-l { transform: rotate(-2deg); }
.tilt-r { transform: rotate(2deg); }
.tilt-l-3 { transform: rotate(-4deg); }

/* Marquee */
.marquee {
  overflow: hidden;
  border-top: var(--b) solid var(--ink);
  border-bottom: var(--b) solid var(--ink);
  background: var(--bit-red);
  color: #fff;
}
.marquee > .track {
  display: inline-flex;
  gap: 32px;
  padding: 18px 0;
  animation: scroll 45s linear infinite;
  white-space: nowrap;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Marquee items */
.mq-item {
  font-family: var(--display);
  font-size: 44px;
  letter-spacing: -0.005em;
  display: inline-flex;
  gap: 32px;
  align-items: center;
  color: var(--bit-yellow);
}
.mq-dot { width: 14px; height: 14px; border-radius: 999px; background: #fff; border: 2px solid var(--bit-red-dark); display: inline-block; }

/* Big number / metric */
.metric .n {
  font-family: var(--display);
  font-size: 64px;
  line-height: 0.9;
  letter-spacing: -0.015em;
  color: var(--bit-blue);
}
.metric .l { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.7; margin-top: 4px; }

/* Choice card (gameplay scenario) — modeled on the in-game blue answer-button list */
.choice {
  border: var(--b) solid var(--ink);
  border-radius: var(--r-md);
  padding: 18px 20px;
  background: var(--paper);
  box-shadow: var(--shadow-sticker);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
}
.choice .q { font-family: var(--display); font-size: 22px; letter-spacing: -0.005em; line-height: 1.05; color: var(--ink-deep); }
.choice .yn { display: flex; gap: 8px; }
.choice .yn span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.choice .y { background: var(--bit-green); color: #fff; }
.choice .n { background: var(--bit-red);   color: #fff; }

/* In-game answer button — blue pill, soft drop */
.answerbtn {
  display: block;
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 0;
  background: var(--bit-blue);
  color: #fff;
  font-family: var(--body);
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  box-shadow: 0 4px 0 var(--bit-blue-dim);
  cursor: pointer;
}
.answerbtn + .answerbtn { margin-top: 12px; }

/* Generic small label */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}
.kicker .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--bit-red); }

/* Verified seal — yellow stamp instead of lime */
.seal {
  width: 96px; height: 96px;
  border-radius: 999px;
  border: var(--b) solid var(--ink);
  background: var(--bit-yellow);
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--display);
  font-size: 14px;
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--ink-deep);
  box-shadow: var(--shadow-sticker);
}

/* Footer rule */
hr.rule { border: 0; border-top: var(--b) solid var(--ink); margin: 0; }

/* Misc */
a { color: inherit; }
.link { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; color: var(--bit-blue); font-weight: 700; }

/* Social icon hover (used in footer) */
.socbtn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--ink);
}
.socbtn:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--ink);
}

/* Stat icon halo — cyan circle for icons (Job/Assets/Relationships/Activities) */
.haloicon {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--bit-cyan);
  border: 3px solid var(--ink);
  display: grid; place-items: center;
  font-size: 26px;
  box-shadow: 0 4px 0 rgba(0,0,0,0.2);
}
.haloicon--orange { background: var(--bit-orange); }
.haloicon--green  { background: var(--bit-green); }
.haloicon--yellow { background: var(--bit-yellow); }


/* ==========================================================================
   Edge-to-edge + responsive layer
   The site's article wrappers are now width:100% so section backgrounds
   bleed full viewport. These rules clean up inline-styled layouts on small
   screens — stack grids, slim padding, ungoof rotations, shrink display
   headers. Targets inline-style patterns via attribute selectors with
   !important so we don't need to refactor every component.
   ========================================================================== */

/* Reduce horizontal padding on mobile across known section padding patterns */
@media (max-width: 720px) {
  section[style*="padding: 100px 80px"],
  section[style*="padding: 84px 80px"],
  section[style*="padding: 80px 80px"],
  section[style*="padding: 72px 80px"],
  section[style*="padding: 64px 80px"],
  section[style*="padding: 60px 80px"],
  section[style*="padding: 56px 80px"],
  section[style*="padding: 32px 80px"],
  section[style*="padding: 36px 80px"],
  section[style*="padding: 20px 80px"],
  section[style*="padding: 84px 80px 28px"],
  section[style*="padding: 72px 80px 96px"],
  section[style*="padding: 72px 80px 60px"],
  section[style*="padding: 56px 80px 48px"],
  section[style*="padding: 60px 80px 40px"],
  section[style*="padding: 60px 80px 32px"],
  section[style*="padding: 20px 80px 80px"],
  footer[style*="padding: 44px 80px 28px"],
  footer[style*="padding: 80px 80px 36px"],
  footer[style*="padding: 32px 80px"],
  footer[style*="padding: 40px 80px 28px"],
  footer[style*="padding: 24px 80px"] {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

/* Stack multi-column grids on mobile */
@media (max-width: 720px) {
  div[style*="grid-template-columns: 1.02fr 1fr"],
  div[style*="grid-template-columns: 1.1fr 1fr"],
  div[style*="grid-template-columns: 1.2fr auto"],
  div[style*="grid-template-columns: 1.3fr 1fr"],
  div[style*="grid-template-columns: 1.4fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1.05fr"],
  div[style*="grid-template-columns: 1fr 1.1fr"],
  div[style*="grid-template-columns: 1fr 1.4fr"],
  div[style*="grid-template-columns: 0.95fr 1.05fr"],
  div[style*="grid-template-columns: 1.05fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  div[style*="grid-template-columns: repeat(3, 1fr)"],
  div[style*="grid-template-columns: repeat(4, 1fr)"],
  div[style*="grid-template-columns: repeat(5, 1fr)"],
  div[style*="grid-template-columns: repeat(6, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}

/* Gamebar (top nav) — legacy mobile rules; superseded by the
   .gamebar-inner / .gamebar-actions semantic classes below. Kept only as
   targeted overrides for non-Coming-Soon pages that still use inline-styled
   nav structures. */
@media (max-width: 720px) {
  /* Don't touch the new .gamebar-inner — those are scoped by the
     .gamebar-inner selector explicitly elsewhere. */
  .gamebar a img {
    height: 36px;
  }
}

/* Shrink display headers on mobile */
@media (max-width: 720px) {
  h1.display {
    font-size: clamp(44px, 12vw, 88px) !important;
    line-height: 0.92 !important;
  }
  h2.display {
    font-size: clamp(36px, 9vw, 56px) !important;
    line-height: 0.95 !important;
  }
}

/* Remove subtle rotations on mobile so cards don't overflow viewport */
@media (max-width: 720px) {
  *[style*="rotate(-0.5deg)"],
  *[style*="rotate(0.5deg)"],
  *[style*="rotate(-0.6deg)"],
  *[style*="rotate(0.6deg)"],
  *[style*="rotate(0.7deg)"],
  *[style*="rotate(-0.7deg)"],
  *[style*="rotate(1deg)"],
  *[style*="rotate(-1deg)"] {
    transform: none !important;
  }
}

/* Trim the huge offset shadows on mobile */
@media (max-width: 720px) {
  *[style*="box-shadow: 12px 12px 0"] {
    box-shadow: 5px 5px 0 var(--ink) !important;
  }
  *[style*="box-shadow: 10px 10px 0"] {
    box-shadow: 5px 5px 0 var(--ink) !important;
  }
  *[style*="box-shadow: 8px 8px 0"] {
    box-shadow: 4px 4px 0 var(--ink) !important;
  }
}

/* Marquee text smaller on mobile so it reads */
@media (max-width: 720px) {
  .mq-item {
    font-size: 24px !important;
  }
}

/* Site shell — let it be fluid */
.shell {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .shell {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

/* Floating absolute-positioned stickers may overflow on mobile; hide them */
@media (max-width: 720px) {
  *[style*="position: absolute"][style*="rotate"] {
    display: none !important;
  }
}

/* ==========================================================================
   Mobile fixes — v2
   Catches the specific failure modes spotted on the live homepage:
   - kicker text overflow, metric row overflow
   - class-rotated floating stickers (.tilt-*) escaping their parents
   - flex space-between rows not stacking
   - newsletter form button wrapping vertically
   - top nav stacking on three rows
   ========================================================================== */

/* Global no-horizontal-scroll guarantee */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Kicker — let it wrap, never push past parent */
.kicker {
  max-width: 100%;
  flex-wrap: wrap;
  overflow-wrap: anywhere;
}

@media (max-width: 720px) {
  /* Hide all class-rotated floating stickers — they're decorative and
     their negative offsets blow out narrow viewports */
  .tilt-l, .tilt-r, .tilt-l-3 {
    transform: none !important;
  }
  .sticker.tilt-l, .sticker.tilt-r, .sticker.tilt-l-3,
  *[style*="position: absolute"][style*="top: -"],
  *[style*="position: absolute"][style*="right: -"],
  *[style*="position: absolute"][style*="left: -"],
  *[style*="position: absolute"][style*="bottom: -"] {
    display: none !important;
  }

  /* Stack flex rows that use space-between + end-aligned columns */
  div[style*="display: flex"][style*="justify-content: space-between"][style*="align-items: end"],
  div[style*="display: flex"][style*="justify-content: space-between"][style*="align-items: flex-end"] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px !important;
  }

  /* Newsletter form (and any narrow 1fr+auto pair) — stack on mobile */
  form div[style*="grid-template-columns: 1fr auto"],
  div[style*="grid-template-columns: 1fr auto"] {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  /* (Legacy gamebar overrides removed — the .gamebar-inner / .gamebar-actions
     semantic classes now handle layout for the Coming Soon page nav.) */

  /* Metric row — shrink the big display numbers so two fit per row */
  .metric .n {
    font-size: 40px !important;
    line-height: 0.95 !important;
  }
  .metric .l {
    font-size: 10px !important;
  }
  /* Reduce the gap on the metric flex row */
  div[style*="display: flex"][style*="gap: 36px"],
  div[style*="display: flex"][style*="gap: 48px"],
  div[style*="display: flex"][style*="gap: 32px"] {
    gap: 18px !important;
  }

  /* Display headers — softer max for very narrow screens */
  h1.display {
    font-size: clamp(40px, 11vw, 68px) !important;
  }

  /* Section cards: more breathing room inside on mobile */
  .sticker, .gamecard {
    padding: 20px !important;
  }

  /* Newsletter form sticker — full-width input/button */
  form.sticker {
    padding: 22px !important;
  }
  form.sticker button[type="submit"] {
    width: 100% !important;
    justify-content: center !important;
  }

  /* Inline-grid placeholder card on Reddit etc — left col + right col patterns
     where right col is "auto" — let the right col flow under */
  div[style*="grid-template-columns: 64px 1fr auto"],
  div[style*="grid-template-columns: 100px 1fr"],
  div[style*="grid-template-columns: 230px 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}

/* Very narrow phones — extra trim */
@media (max-width: 380px) {
  h1.display {
    font-size: clamp(34px, 10vw, 50px) !important;
  }
  h2.display {
    font-size: clamp(28px, 8vw, 42px) !important;
  }
  .metric .n {
    font-size: 34px !important;
  }
  .gamebar nav {
    gap: 10px !important;
  }
  .gamebar nav a {
    font-size: 13px !important;
  }
}


/* ==========================================================================
   Coming Soon homepage — semantic classes (replaces inline-style hacks)
   ========================================================================== */

/* ---------- Top nav ---------- */

.gamebar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px 8px 56px;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
}
.gamebar-logo { display: inline-block; line-height: 0; text-decoration: none; flex-shrink: 0; }
.gamebar-logo img { height: 60px; width: auto; display: block; }

.gamebar-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}
.gamebar-login {
  padding: 11px 26px;
  font-size: 16px;
  flex-shrink: 0;
}

.gamebar-desktop-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.gamebar-link {
  text-decoration: none;
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  line-height: 1;
}
.gamebar-link:hover { color: var(--bit-yellow); }

.hamburger-btn {
  display: none;
  width: 48px; height: 48px;
  background: transparent;
  border: 2.5px solid var(--paper);
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  align-items: center; justify-content: center;
  box-shadow: 3px 3px 0 var(--bit-red-dark);
  transition: transform .12s ease, box-shadow .12s ease;
}
.hamburger-btn:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--bit-red-dark); }
.hamburger-btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--bit-red-dark); }

.hamburger-sheet {
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--bit-red);
  border-top: 3px solid var(--bit-red-dark);
  padding: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  animation: hamburgerDrop .18s ease-out;
}
@keyframes hamburgerDrop {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hamburger-sheet nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hamburger-sheet-link,
.hamburger-sheet-cta {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.005em;
  background: rgba(0,0,0,0.06);
  border: 2px solid rgba(255,255,255,0.18);
}
.hamburger-sheet-link:hover { background: rgba(0,0,0,0.14); }
.hamburger-sheet-cta {
  margin-top: 8px;
  background: var(--bit-yellow);
  color: var(--ink-deep);
  border-color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 800;
}

/* Switch nav to mobile mode below 900px */
@media (max-width: 900px) {
  .gamebar-desktop-nav { display: none; }
  .hamburger-btn       { display: inline-flex; }
  .gamebar-actions     { gap: 12px; }
  .gamebar-login       { padding: 9px 16px; font-size: 13px; }
}
@media (max-width: 380px) {
  .gamebar-login       { padding: 8px 12px; font-size: 12px; }
}

/* ---------- Hero ---------- */

.hero-section {
  position: relative;
  background: var(--bg);
  overflow: hidden;
}
.hero-bg-dots { display: none; }
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 72px 80px 96px;
  max-width: 1440px;
  margin: 0 auto;
}
.hero-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-title {
  font-size: clamp(56px, 9vw, 112px);
  margin: 0;
  line-height: 0.92;
}
.hero-blurb {
  font-size: 19px;
  line-height: 1.5;
  max-width: 480px;
  margin: 0;
  color: var(--ink-2);
}
.hero-metrics {
  display: flex;
  gap: 48px;
  margin-top: 8px;
  flex-wrap: wrap;
}

/* ---------- Hero carousel ---------- */

.hero-carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-carousel-track {
  position: relative;
  background: var(--paper);
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(20, 30, 45, 0.12), 0 2px 0 rgba(20, 30, 45, 0.04);
  overflow: hidden;
  /* Reserve a fixed height so the carousel doesn't jump between slides
     with different body lengths. */
  min-height: 560px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hero-slide-media {
  position: relative;
  height: 50%;
  border-bottom: 3px solid var(--ink);
  flex-shrink: 0;
  background: var(--bg-2);
}
.hero-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slide-placeholder {
  position: absolute;
  inset: 0;
  border-radius: 0;
  border: none;
}
.hero-slide-badge,
.hero-slide-version {
  position: absolute;
  top: 14px;
  padding: 6px 12px 7px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: 999px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}
.hero-slide-badge {
  left: 14px;
  background: var(--bit-red);
  color: #fff;
  border-color: #fff;
}
.hero-slide-version {
  right: 14px;
  background: var(--ink);
  color: var(--bit-yellow);
  border-color: var(--bit-yellow);
}
.hero-slide-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.hero-slide-title {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
  margin: 0;
}
.hero-slide-blurb {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
  max-width: 520px;
}
.hero-slide-body .pillbtn {
  align-self: flex-start;
  margin-top: 6px;
}

.hero-carousel-controls {
  /* Overlay arrows on the carousel card edges; dots accessible-but-hidden */
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  overflow: visible;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 0;
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(20, 30, 45, 0.14), 0 1px 2px rgba(20, 30, 45, 0.08);
  display: grid;
  place-items: center;
  color: #5B6B7C;
  cursor: pointer;
  pointer-events: auto;
  padding: 0;
  transition: transform .15s ease, box-shadow .15s ease, color .15s ease;
}
.hero-arrow svg { display: block; width: 40px; height: 40px; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.hero-arrow:first-of-type { left: -28px; }
.hero-arrow:last-of-type  { right: -28px; }
.hero-arrow:hover  { color: var(--ink); transform: translateY(-50%) scale(1.05); box-shadow: 0 5px 14px rgba(20, 30, 45, 0.18), 0 1px 2px rgba(20, 30, 45, 0.10); }
.hero-arrow:active { transform: translateY(-50%) scale(0.96); }
.hero-dots {
  /* Visually hidden but still tab-accessible. */
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.hero-dot {
  width: 1px; height: 1px;
  border: 0; padding: 0;
  background: transparent;
  position: absolute;
}

/* ---------- Signpost ---------- */

.signpost-section {
  position: relative;
  background: var(--bg-signpost);
  padding: 96px 80px 100px;
  overflow: hidden;
}
.signpost-section::before {
  /* Giant ghosted BITLIFE watermark behind the cards */
  content: "BITLIFE";
  position: absolute;
  left: 50%;
  top: 58%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: clamp(280px, 30vw, 600px);
  letter-spacing: -0.01em;
  color: #FFFFFF;
  opacity: 0.85;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
  user-select: none;
}
.signpost-section > * { position: relative; z-index: 1; }
.signpost-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  gap: 40px;
  flex-wrap: wrap;
}
.signpost-title {
  font-size: clamp(36px, 6vw, 64px);
  margin: 12px 0 0;
  line-height: 0.95;
}
.signpost-blurb {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 360px;
  margin: 0;
}
.signpost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 1100px) {
  .signpost-grid { grid-template-columns: 1fr; }
}
.signpost-card {
  position: relative;
  padding: 22px 22px 22px 24px;
  background: var(--bit-red);
  color: var(--paper);
  border-radius: 16px;
  box-shadow: 0 6px 0 rgba(0,0,0,0.18), 0 14px 28px rgba(195,0,18,0.20);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 130px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.signpost-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 0 rgba(0,0,0,0.18), 0 18px 36px rgba(195,0,18,0.28);
}
.signpost-card-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.signpost-card-title {
  font-size: 30px;
  color: var(--bit-yellow);
  letter-spacing: 0.005em;
  line-height: 1;
  margin: 0;
  text-shadow: 0 2px 0 rgba(0,0,0,0.18);
}
.signpost-card-tease {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  color: var(--paper);
  opacity: 0.95;
  max-width: 28ch;
}
.signpost-card-art {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
}
.signpost-card-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(2px 3px 0 rgba(0,0,0,0.18));
}

/* ---------- Feature strip (blue background, character circles) ---------- */

.feature-strip {
  background: var(--bit-blue);
  color: var(--paper);
  padding: 80px 80px 84px;
}
.feature-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
}
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.feature-circle {
  width: 200px;
  height: 200px;
  border-radius: 999px;
  background: #fff;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}
.feature-circle img {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 140%;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
  pointer-events: none;
}
.feature-title {
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.005em;
  margin: 4px 0 0;
  color: #B6E3FA;
  text-shadow: 0 2px 0 rgba(0,0,0,0.18);
}
.feature-body {
  font-size: 16px;
  line-height: 1.45;
  margin: 0;
  color: var(--paper);
  max-width: 22ch;
  opacity: 0.96;
}
@media (max-width: 1100px) {
  .feature-strip { padding: 64px 28px; }
  .feature-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .feature-circle { width: 180px; height: 180px; }
}
@media (max-width: 560px) {
  .feature-strip-inner { grid-template-columns: 1fr; gap: 32px; }
  .feature-circle { width: 160px; height: 160px; }
}

/* ---------- Newsletter ---------- */

.newsletter-section {
  background: var(--bg);
  padding: 84px 80px 100px;
}
.newsletter-section--success {
  padding: 80px 80px;
}
.newsletter-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.newsletter-title {
  font-size: clamp(40px, 7vw, 72px);
  margin: 14px 0 16px;
  line-height: 0.92;
}
.newsletter-blurb {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 480px;
}
.newsletter-form {
  background: var(--bg-mint);
  border-radius: 22px;
  padding: 32px 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: visible;
  box-shadow: 0 10px 28px rgba(20, 30, 45, 0.10);
}
.newsletter-envelope {
  position: absolute;
  bottom: -64px;
  right: -14px;
  width: 168px;
  height: auto;
  pointer-events: none;
  transform: rotate(-8deg);
  filter: drop-shadow(4px 6px 12px rgba(0, 0, 0, 0.16));
  z-index: 2;
}
.newsletter-form > *:not(.newsletter-envelope) { position: relative; z-index: 1; }
.newsletter-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.newsletter-input {
  background: #fff;
  border: 1.5px solid #D6DCDC;
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.newsletter-input:focus { border-color: var(--bit-blue); box-shadow: 0 0 0 3px rgba(0, 86, 156, 0.16); }
.newsletter-submit { padding: 14px 22px; }
.newsletter-fine {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.5;
  max-width: 62%;
}
.newsletter-success {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.newsletter-success-title {
  font-size: clamp(36px, 6vw, 56px);
  margin: 8px 0 6px;
  line-height: 0.95;
}
.newsletter-success-body {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
  max-width: 540px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--bg-footer);
  padding: 44px 80px 28px;
}
.site-footer-top {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 32px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 2.5px solid var(--ink);
}
.site-footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.site-footer-logo { display: inline-block; line-height: 0; }
.site-footer-logo img { height: 40px; width: auto; display: block; }
.site-footer-tagline {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 360px;
}
.site-footer-socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 20px;
}
.site-footer-copy {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-2);
}

/* ==========================================================================
   Mobile breakpoints — Coming Soon homepage
   ========================================================================== */

@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .gamebar-inner       { padding: 8px 12px 8px 20px; }
  .gamebar-logo img    { height: 48px; }

  .hero-inner          { padding: 36px 24px 48px; gap: 32px; }
  .hero-title          { font-size: clamp(48px, 13vw, 88px); }
  .hero-blurb          { font-size: 17px; max-width: 100%; }
  .hero-metrics        {
    gap: 28px;
    justify-content: center;
    flex-wrap: nowrap;
    align-self: stretch;
  }
  .hero-brand .metric  { text-align: center; }
  .metric .n           { font-size: clamp(34px, 10vw, 56px); }

  /* Center the App Store + Google Play badges on one row */
  .hero-brand > div[style*="display: flex"][style*="gap: 14px"],
  .hero-brand > div:has(> a > img[alt*="App Store"]),
  .hero-brand > div:has(> a > img[alt*="Google Play"]) {
    justify-content: center !important;
    flex-wrap: nowrap !important;
    align-self: stretch;
  }

  .hero-carousel-track { min-height: 540px; box-shadow: 5px 5px 0 var(--ink); }

  .signpost-section    { padding: 56px 24px; }
  .signpost-head       {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
  }
  .signpost-title      { font-size: clamp(36px, 8vw, 56px); }
  .signpost-blurb      { max-width: 100%; }
  .signpost-grid       { grid-template-columns: 1fr; gap: 14px; }
  .signpost-card       { transform: none !important; min-height: 110px; padding: 18px 18px 18px 20px; }
  .signpost-card-title { font-size: 26px; }
  .signpost-card-art   { width: 72px; height: 72px; }

  .newsletter-section          { padding: 56px 24px; }
  .newsletter-section--success { padding: 56px 24px; }
  .newsletter-grid             { grid-template-columns: 1fr; gap: 28px; }
  .newsletter-title            { font-size: clamp(40px, 9vw, 64px); }
  .newsletter-blurb            { max-width: 100%; }
  .newsletter-row              { grid-template-columns: 1fr; gap: 10px; }
  .newsletter-submit           { width: 100%; justify-content: center; }
  .newsletter-form             { box-shadow: 6px 6px 0 var(--ink); padding: 24px; }

  /* Centered footer on mobile */
  .site-footer            { padding: 36px 24px 24px; }
  .site-footer-top        {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  .site-footer-brand      {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
  }
  .site-footer-tagline    { max-width: 100%; text-align: center; }
  .site-footer-socials    { align-items: center; }
  .site-footer-bottom     {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .site-footer-copy       { text-align: center; }
}

/* Shrink the app-store badges on narrow screens so they stay on one row */
@media (max-width: 520px) {
  .hero-brand a > img[alt*="App Store"],
  .hero-brand a > img[alt*="Google Play"] {
    height: 44px !important;
  }
}

@media (max-width: 380px) {
  .hero-brand a > img[alt*="App Store"],
  .hero-brand a > img[alt*="Google Play"] {
    height: 38px !important;
  }
}

@media (max-width: 600px) {
  .hero-carousel-track { min-height: 580px; }
  .hero-slide-media    { height: 50%; }
  .hero-slide-body     { padding: 20px; gap: 10px; }
  .hero-slide-title    { font-size: clamp(28px, 8vw, 38px); }
  .hero-slide-blurb    { font-size: 14px; }
  .hero-arrow          { width: 44px; height: 44px; }
  .hero-arrow svg      { width: 32px; height: 32px; }
  /* No gutter beside the card on phones — overlay the arrows just inside the
     card edges so they never hang off the viewport. */
  .hero-arrow:first-of-type { left: 8px; }
  .hero-arrow:last-of-type  { right: 8px; }
  .hero-carousel-controls { gap: 10px; }
}

@media (max-width: 400px) {
  .hero-inner          { padding: 28px 18px 40px; }
  .signpost-section    { padding: 48px 20px; }
  .newsletter-section  { padding: 48px 20px; }
  .site-footer         { padding: 32px 20px 20px; }
}

/* ==========================================================================
   DESIGN-TEAM FEEDBACK — homepage restyle (BitLife Website Feedback.docx)
   Switches the homepage display headings from Molot to Avenir Next and applies
   the spec'd colors / weights / shadows / spacing, section by section.
   Avenir Next weights: Regular 400 · Medium 500 · Demi 600 · Bold 700 · Heavy 800
   Scoped to homepage section classes so other pages keep the Molot look; the
   shared site footer is intentionally global.
   ========================================================================== */

/* ---------- Menu bar ---------- */
.gamebar { box-shadow: none; }                 /* remove bar shape shadow */
.gamebar-link {
  font-family: var(--body);
  font-weight: 600;                             /* Avenir Next demi-bold */
  font-size: 18px;
  color: #ffffff;
  text-transform: none;                         /* Title Case */
  letter-spacing: 0;
}
.gamebar-link:hover { color: var(--bit-yellow); }
.gamebar-link.is-active,
.gamebar-desktop-nav a.is-active {
  font-weight: 800;                             /* heavy */
  color: #fff100;                               /* yellow */
}
.gamebar-login {
  font-family: var(--body);
  font-weight: 600;                             /* demi-bold */
  color: #e53000;                               /* red Login text */
}

/* ---------- Part 1 · Hero ---------- */
.hero-section .kicker {
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  color: #656565;
  text-transform: none;                         /* Title Case */
  letter-spacing: 0.01em;
}
.hero-title {
  font-family: var(--body);
  font-weight: 800;                             /* heavy */
  color: #345e80;
  text-transform: none;
  letter-spacing: -0.015em;
  line-height: 1.0;
}
.scribble--blue {
  background-image: linear-gradient(120deg, #bde8e9 0%, #bde8e9 100%);
}
.hero-blurb {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-blurb p {
  font-family: var(--body);
  font-weight: 500;                             /* medium */
  color: #656565;
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  max-width: 480px;
}
.hero-metrics .metric .n {
  font-family: var(--body);
  font-weight: 700;                             /* bold */
  color: #007acf;
  font-size: 52px;
  letter-spacing: -0.02em;
  text-transform: none;
}
.hero-metrics .metric .l {
  font-family: var(--body);
  font-weight: 500;                             /* medium */
  color: #656565;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  opacity: 1;
}

/* Event card (hero carousel) — portrait card, height 1.75x width, image ~80% */
.hero-carousel-track {
  aspect-ratio: 1 / 1.75;
  min-height: 0;
  box-shadow:
    0 5px 0 0 rgba(52, 94, 128, 0.50),
    0 13px 13px 0 rgba(52, 94, 128, 0.50);
}
.hero-slide-media { height: 75%; }
.hero-slide-body  { height: 25%; justify-content: flex-start; }
.hero-slide-title {
  font-family: var(--body);
  font-weight: 800;                             /* heavy */
  color: #345e80;
  text-transform: none;
  letter-spacing: -0.01em;
}
.hero-slide-blurb {
  font-family: var(--body);
  font-weight: 500;                             /* medium */
  color: #656565;
}
/* Live badge refresh */
.hero-slide-badge {
  background: var(--bit-red);
  color: #fff;
  border-color: #fff;
  font-weight: 800;
  letter-spacing: 0.12em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.30);
}
/* CTA — blue, bottom-right, uppercase bold black text */
.hero-slide-body .pillbtn {
  background: #007acf;
  color: #ffffff;
  font-family: var(--body);
  font-weight: 700;                             /* bold */
  text-transform: uppercase;
  align-self: flex-end;
  margin-top: auto;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.47);
}

/* ---------- Part 2 · Feature strip ---------- */
.feature-strip {
  box-shadow: 0 3px 16px 0 rgba(52, 94, 128, 0.50);  /* part background shape shadow */
}
.feature-card { gap: 22px; }
/* Plain PNG art — no white circle, no shadow */
.feature-art {
  width: 200px;
  height: 200px;
  position: relative;
  background: transparent;
  box-shadow: none;
}
.feature-art img {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 140%;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
  pointer-events: none;
}
.feature-title {
  font-family: var(--body);
  font-weight: 800;                             /* heavy */
  color: #5bc6c9;
  text-transform: none;
  text-shadow: none;
  margin-top: 6px;                              /* image→title spacing ≈ title→body */
}
.feature-body {
  font-family: var(--body);
  font-weight: 500;                             /* medium */
  text-wrap: balance;                           /* avoid orphan words */
}
@media (max-width: 1100px) {
  .feature-art { width: 180px; height: 180px; }
}
@media (max-width: 560px) {
  .feature-art { width: 160px; height: 160px; }
}

/* ---------- Part 3 · "Three new sections" ---------- */
.signpost-section::before {
  /* "BITLIFE" spans the full viewport width edge-to-edge and scales with the
     window: ~31.6vw sizes the 7-letter word to exactly one viewport wide
     (measured: 633px wide at 200px font -> 20000/633 ≈ 31.6vw). */
  font-size: 31.6vw;
  color: #CFDEEB;          /* pale-blue letters, DARKER than the near-white bg (reversed from white) */
  opacity: 0.7;
  top: 63%;
}
.signpost-section .kicker {
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  color: #656565;
  text-transform: none;
  letter-spacing: 0.01em;
}
.signpost-title {
  font-family: var(--body);
  font-weight: 800;                             /* heavy */
  color: #345e80;
  text-transform: uppercase;                    /* matches the comp */
  letter-spacing: -0.015em;
}
.signpost-blurb {
  font-family: var(--body);
  font-weight: 500;                             /* medium */
  color: #656565;
}
.signpost-section {
  /* Light, near-white background (the watermark, not the bg, carries the
     blue — see the ::before color below). */
  background: linear-gradient(180deg, #FAFBFC 0%, #EFF3F8 100%);
}
.signpost-card {
  box-shadow: 0 3px 16px 0 rgba(52, 94, 128, 0.50);  /* adjusted box shadow */
  min-height: 150px;                            /* taller (~0.45 of width), matches comp */
  padding: 22px 24px;
  align-items: center;
}
.signpost-card-text { align-self: flex-start; }      /* title/body top-aligned in the taller card */
.signpost-card-art  { width: 96px; height: 96px; }
.signpost-card:hover {
  box-shadow: 0 6px 22px 0 rgba(52, 94, 128, 0.55);
}
.signpost-card-title {
  font-family: var(--body);
  font-weight: 800;                             /* heavy */
  font-size: 24px;
  text-transform: uppercase;
  text-shadow: none;
  letter-spacing: 0.01em;
  line-height: 1.05;
}
.signpost-card-tease {
  font-family: var(--body);
  font-weight: 500;                             /* medium */
  font-size: 16px;                              /* consistent with Part 2 body */
}
.signpost-card-art img { filter: none; }        /* remove drop shadow */

/* ---------- Part 4 · Newsletter ---------- */
.newsletter-section .kicker {
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  color: #656565;
  text-transform: none;
  letter-spacing: 0.01em;
}
.newsletter-title {
  font-family: var(--body);
  font-weight: 800;                             /* heavy */
  color: #345e80;
  text-transform: none;
  letter-spacing: -0.015em;
}
.newsletter-blurb {
  font-family: var(--body);
  font-weight: 500;                             /* medium */
  color: #656565;
}
.newsletter-grid { align-items: stretch; }      /* balance card height with left block */
.newsletter-form {
  background: rgba(91, 198, 201, 0.20);         /* #5bc6c9 @ 20% */
  justify-content: center;
}
.newsletter-form .eyebrow {
  font-family: var(--body);
  font-weight: 600;                             /* demi-bold */
  color: #2a2a2a;
  text-transform: none;                         /* Title Case */
  letter-spacing: 0;
  font-size: 14px;
}
.newsletter-submit {
  color: #ffffff;
  font-family: var(--body);
  font-weight: 700;                             /* bold */
  text-transform: uppercase;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.47);
}
.newsletter-fine {
  font-family: var(--body);
  font-weight: 500;                             /* medium */
  color: #656565;
  font-size: 14px;
  line-height: 1.5;
  max-width: 100%;
}
.newsletter-envelope {
  transform: rotate(17.56deg);
  width: 22%;                                   /* ≈20% of card width */
  bottom: -48px;
  right: -8px;
}

/* ---------- Footer (shared, intentionally global) ---------- */
.site-footer {
  background: #e5eef5;
  border-top: 2px solid rgba(52, 94, 128, 0.40);  /* top line */
}
.site-footer-top { border-bottom: 0; }          /* remove horizontal divider */
.site-footer-logo img {
  height: 56px;                                 /* larger */
  filter: brightness(0) invert(0.4);            /* ≈#656565 overlay, no shadow */
}
.site-footer-tagline {
  font-family: var(--body);
  font-weight: 500;                             /* medium */
  color: #656565;
  border-left: 1px solid #656565;               /* vertical divider */
  padding-left: 18px;
}
.site-footer .eyebrow {                          /* "Follow BitLife" */
  font-family: var(--body);
  font-weight: 500;                             /* medium */
  color: #656565;
  text-transform: none;                         /* Title Case */
  letter-spacing: 0;
  opacity: 1;
}
.site-footer-copy {
  font-family: var(--body);
  font-weight: 400;                             /* regular */
  color: #656565;
}
.site-footer-bottom .link {
  font-family: var(--body);
  font-weight: 500;                             /* medium */
  color: #007acf;
}
/* Brand social icons (custom image when present, color badge as fallback) */
.socbtn--social:hover { transform: translate(-1px, -1px); }
.socbtn--social:active { transform: translate(1px, 1px); }

@media (max-width: 900px) {
  .site-footer-tagline { border-left: 0; padding-left: 0; }
}

/* ==========================================================================
   MOBILE REFINEMENTS — feedback round 2
   ========================================================================== */

/* (2) Hero overline: break after "Simulator" on mobile; align dot to line 1 */
.kicker-br { display: none; }
@media (max-width: 720px) {
  .kicker-br { display: inline; }
  .hero-section .hero-kicker { align-items: flex-start; }
  .hero-section .hero-kicker .dot { margin-top: 0.35em; flex-shrink: 0; }
}

@media (max-width: 900px) {
  /* (1) Menu bar BitLife logo 2x larger on mobile. The logo is a 3:1
     wordmark and the visible mobile size today is 36px (capped by the
     legacy `.gamebar a img` rule), so 2x = 72px. Higher specificity than
     that legacy rule so it wins. Keep actions tight so Login + hamburger
     still fit beside the wider logo. */
  .gamebar .gamebar-logo img { height: 72px; }
  .gamebar-actions { gap: 10px; }

  /* (5) Hamburger sheet items match the desktop nav font
     (Avenir Next demi-bold, Title Case) instead of Molot. */
  .hamburger-sheet-link {
    font-family: var(--body);
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0;
    text-transform: none;
  }
  .hamburger-sheet-cta {
    font-family: var(--body);
    font-weight: 700;
    text-transform: none;
  }

  /* (3) LiveOps card: art ~56% of card height so the title, body, and CTA
     have room (was 80%, which crowded out the text on mobile). */
  .hero-slide-media { height: 56%; }
  .hero-slide-body  { height: 44%; justify-content: flex-start; }
}

/* Very narrow phones: ease the 2x logo down a touch so Login + hamburger
   never get pushed off-screen (still ~1.7x the original 36px). */
@media (max-width: 380px) {
  .gamebar .gamebar-logo img { height: 60px; }
  .gamebar-actions { gap: 8px; }
}

/* ==========================================================================
   HELP CENTER (/help) — in-chrome FAQ + contact, rendered from Zendesk API
   ========================================================================== */
.help-hero {
  background: linear-gradient(180deg, #FAFBFC 0%, #EFF3F8 100%);
  padding: 64px 80px 48px;
  text-align: center;
  border-bottom: 1px solid #E2E8EF;
}
.help-hero .kicker { justify-content: center; }
.help-title {
  font-family: var(--body);
  font-weight: 800;
  color: #345e80;
  text-transform: none;
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: -0.02em;
  margin: 12px 0 10px;
}
.help-sub {
  font-family: var(--body);
  font-weight: 500;
  color: #656565;
  font-size: 17px;
  margin: 0 auto 24px;
  max-width: 540px;
}
.help-search {
  width: 100%;
  max-width: 560px;
  font-family: var(--body);
  font-size: 17px;
  padding: 14px 20px;
  border: 2px solid #CFD9E2;
  border-radius: 14px;
  background: #fff;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.help-search:focus { border-color: var(--bit-blue-mid); box-shadow: 0 0 0 3px rgba(0,122,207,.16); }

.help-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px 8px;
}
.help-note { font-family: var(--body); color: var(--ink-2); font-size: 16px; text-align: center; padding: 24px 0; }
.help-section { margin-bottom: 36px; }
.help-section-title {
  font-family: var(--body);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 14px;
}
.help-list { display: flex; flex-direction: column; gap: 10px; }
.help-item {
  border: 1.5px solid #E2E8EF;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}
.help-item.is-open { border-color: #CFD9E2; box-shadow: 0 6px 18px rgba(20,30,45,.06); }
.help-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 16px 20px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}
.help-q:hover { background: #F7F9FB; }
.help-chevron {
  flex-shrink: 0;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--bit-blue-mid);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}
.help-a {
  padding: 4px 20px 20px;
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
}
.help-a p { margin: 0 0 12px; }
.help-a a { color: var(--bit-blue-mid); text-decoration: underline; }
.help-a img { max-width: 100%; height: auto; border-radius: 8px; }
.help-a ul, .help-a ol { padding-left: 22px; margin: 0 0 12px; }

/* Contact */
.help-contact { padding: 24px 24px 80px; }
.help-contact-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-mint);
  border-radius: 22px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.help-contact-title {
  font-family: var(--body);
  font-weight: 800;
  color: #345e80;
  text-transform: none;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.015em;
  margin: 12px 0 10px;
}
.help-contact-sub { font-family: var(--body); font-weight: 500; color: #656565; font-size: 15px; line-height: 1.55; margin: 0; }
.help-form { display: flex; flex-direction: column; gap: 14px; }
.help-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.help-form label { display: flex; flex-direction: column; gap: 6px; font-family: var(--body); font-weight: 600; font-size: 13px; color: #2a2a2a; }
.help-form input, .help-form textarea {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  padding: 11px 14px;
  border: 1.5px solid #D6DCDC;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  outline: none;
  resize: vertical;
}
.help-form input:focus, .help-form textarea:focus { border-color: var(--bit-blue-mid); box-shadow: 0 0 0 3px rgba(0,122,207,.14); }
.help-submit { align-self: flex-start; color: #fff; font-weight: 700; }
.help-form-err { font-family: var(--body); font-size: 13px; color: var(--bit-red); margin: 0; }
.help-contact-done { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 14px; }

@media (max-width: 900px) {
  .help-hero { padding: 48px 24px 36px; }
  .help-body { padding: 36px 18px 4px; }
  .help-contact-card { grid-template-columns: 1fr; gap: 24px; padding: 28px 22px; }
  .help-form-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   WHAT'S NEW (/whats-new) — blog / patch-notes home (content-managed)
   ========================================================================== */
.wn-hero {
  background: linear-gradient(180deg, #FAFBFC 0%, #EFF3F8 100%);
  padding: 60px 80px 44px;
  text-align: center;
  border-bottom: 1px solid #E2E8EF;
}
.wn-hero .kicker { justify-content: center; }
.wn-title {
  font-family: var(--body);
  font-weight: 800;
  color: #345e80;
  text-transform: none;
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: -0.02em;
  margin: 12px 0 10px;
}
.wn-sub { font-family: var(--body); font-weight: 500; color: #656565; font-size: 17px; margin: 0 auto; max-width: 560px; }

.wn-feed {
  max-width: 920px;
  margin: 0 auto;
  padding: 44px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wn-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: #fff;
  border: 1.5px solid #E2E8EF;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.wn-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(20,30,45,.10); border-color: #CFD9E2; }
.wn-card-media { background: var(--bg-2); position: relative; min-height: 180px; }
.wn-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; inset: 0; }
.wn-card-media--none {
  background: linear-gradient(135deg, var(--bit-blue) 0%, var(--bit-blue-mid) 100%);
}
.wn-card-body { padding: 22px 26px; display: flex; flex-direction: column; gap: 8px; }
.wn-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.wn-tag {
  font-family: var(--body);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  padding: 4px 11px;
  border-radius: 999px;
}
.wn-date { font-family: var(--mono); font-size: 12px; color: var(--ink-2); }
.wn-card-title {
  font-family: var(--body);
  font-weight: 800;
  font-size: 24px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 2px 0 0;
  line-height: 1.1;
}
.wn-excerpt { font-family: var(--body); font-weight: 500; color: #656565; font-size: 15px; line-height: 1.55; margin: 0; }
.wn-readmore { font-family: var(--body); font-weight: 700; font-size: 14px; color: var(--bit-blue-mid); margin-top: 4px; }

/* Single post view */
.wn-post { max-width: 760px; margin: 0 auto; padding: 44px 24px 72px; }
.wn-back {
  display: inline-block;
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  color: var(--bit-blue-mid);
  text-decoration: none;
  margin-bottom: 22px;
}
.wn-back:hover { text-decoration: underline; }
.wn-post-title {
  font-family: var(--body);
  font-weight: 800;
  color: #345e80;
  text-transform: none;
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 12px 0 20px;
}
.wn-post-media { border-radius: 18px; overflow: hidden; margin: 0 0 26px; border: 1.5px solid #E2E8EF; }
.wn-post-media img { width: 100%; max-height: 380px; object-fit: cover; display: block; }
.wn-post-body { font-family: var(--body); font-size: 17px; line-height: 1.65; color: var(--ink); }
.wn-post-body p { margin: 0 0 16px; }
.wn-post-body ul { margin: 0 0 16px; padding-left: 22px; }
.wn-post-body li { margin: 0 0 8px; }

@media (max-width: 720px) {
  .wn-hero { padding: 44px 22px 32px; }
  .wn-feed { padding: 32px 18px 8px; gap: 16px; }
  .wn-card { grid-template-columns: 1fr; }
  .wn-card-media { min-height: 170px; }
  .wn-post { padding: 32px 20px 56px; }
}

/* ==========================================================================
   LIVE EVENTS (/live-events) — refreshed to match the site design system
   (Avenir Next headings, soft cards, gradients, brand-color pills)
   ========================================================================== */

/* Hero */
.le-hero {
  background: linear-gradient(180deg, #FAFBFC 0%, #EFF3F8 100%);
  padding: 60px 80px 52px;
  border-bottom: 1px solid #E2E8EF;
}
.le-hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: center;
}
.le-hero .kicker {
  font-family: var(--body); font-weight: 600; font-size: 14px; color: #656565;
  text-transform: none; letter-spacing: 0.01em;
}
.le-hero-title {
  font-family: var(--body); font-weight: 800; color: #345e80;
  font-size: clamp(40px, 6vw, 72px); line-height: 1.0; letter-spacing: -0.02em; margin: 14px 0 16px;
}
.le-hero-blurb {
  font-family: var(--body); font-weight: 500; color: #656565;
  font-size: 18px; line-height: 1.55; margin: 0; max-width: 540px;
}
.le-stat-card {
  background: #fff; border: 1.5px solid #E2E8EF; border-radius: 18px;
  box-shadow: 0 10px 28px rgba(20, 30, 45, 0.08); padding: 26px 28px;
  display: flex; flex-direction: column; gap: 6px;
}
.le-stat-label { font-family: var(--body); font-weight: 600; font-size: 13px; color: #656565; text-transform: uppercase; letter-spacing: 0.04em; }
.le-stat-value { font-family: var(--body); font-weight: 800; font-size: 34px; color: #345e80; letter-spacing: -0.01em; line-height: 1.05; }
.le-stat-note { font-family: var(--mono); font-size: 12px; color: var(--ink-2); }

/* Section bases */
.le-featured { background: var(--bg); padding: 64px 80px; }
.le-upcoming { background: linear-gradient(180deg, #FAFBFC 0%, #F1F5F9 100%); padding: 64px 80px; }
.le-featured-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 32px; align-items: stretch;
}

/* Featured event card */
.le-feat-card {
  background: #fff; border: 1.5px solid #E2E8EF; border-radius: 20px; overflow: hidden;
  box-shadow: 0 14px 34px rgba(20, 30, 45, 0.10); display: flex; flex-direction: column;
}
.le-feat-media { position: relative; }
.le-feat-media img { width: 100%; height: 300px; object-fit: cover; display: block; }
.le-feat-badge, .le-feat-season {
  position: absolute; top: 16px;
  font-family: var(--body); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 6px 12px; border-radius: 999px;
}
.le-feat-badge { left: 16px; background: var(--bit-red); color: #fff; }
.le-feat-season { right: 16px; background: rgba(18, 22, 28, 0.78); color: #fff; }
.le-feat-content { padding: 24px 28px 28px; display: flex; flex-direction: column; gap: 10px; }
.le-feat-eyebrow { font-family: var(--body); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--bit-red); }
.le-feat-title { font-family: var(--body); font-weight: 800; color: #345e80; font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -0.015em; line-height: 1.05; margin: 0; }
.le-feat-body { font-family: var(--body); font-weight: 500; color: #656565; font-size: 15px; line-height: 1.6; margin: 0; }
.le-feat-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.le-tag {
  font-family: var(--body); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em;
  color: #fff; padding: 5px 11px; border-radius: 999px; display: inline-block;
}

/* Countdown + CTA panel */
.le-panel {
  background: #EFF3F8; border: 1.5px solid #E2E8EF; border-radius: 20px; padding: 26px 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.le-panel-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--body); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: #345e80;
}
.le-panel-kicker .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--bit-red); }
.le-countdown { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.le-cd-tile { background: #fff; border: 1.5px solid #E2E8EF; border-radius: 14px; padding: 14px 8px; text-align: center; }
.le-cd-num { font-family: var(--body); font-weight: 800; font-size: 38px; line-height: 1; color: #007acf; }
.le-cd-label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: #656565; margin-top: 6px; }
.le-panel-note { font-family: var(--body); font-weight: 500; font-size: 14px; line-height: 1.55; color: #656565; margin: 0; }
.le-play { background: var(--bit-blue-mid); color: #fff; align-self: stretch; justify-content: center; margin-top: auto; font-weight: 700; }
.le-rules { font-family: var(--body); font-weight: 700; font-size: 14px; color: #007acf; text-decoration: none; align-self: flex-start; }
.le-rules:hover { text-decoration: underline; }

/* Upcoming calendar */
.le-up-head { max-width: 1200px; margin: 0 auto 26px; }
.le-up-head .kicker { font-family: var(--body); font-weight: 600; font-size: 14px; color: #656565; text-transform: none; }
.le-up-title { font-family: var(--body); font-weight: 800; color: #345e80; font-size: clamp(32px, 5vw, 56px); letter-spacing: -0.02em; line-height: 1; margin: 12px 0 0; }
.le-up-list { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.le-up-card {
  display: grid; grid-template-columns: 96px 1fr; background: #fff;
  border: 1.5px solid #E2E8EF; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 22px rgba(20, 30, 45, 0.06);
}
.le-up-date { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; padding: 18px 10px; }
.le-up-month { font-family: var(--body); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.92; }
.le-up-day { font-family: var(--body); font-weight: 800; font-size: 36px; line-height: 1; }
.le-up-content { padding: 18px 22px; display: flex; flex-direction: column; gap: 7px; align-items: flex-start; }
.le-up-event-title { font-family: var(--body); font-weight: 800; color: var(--ink); font-size: 21px; letter-spacing: -0.01em; line-height: 1.15; margin: 2px 0 0; }
.le-up-body { font-family: var(--body); font-weight: 500; color: #656565; font-size: 14px; line-height: 1.5; margin: 0; }

/* Play CTA band */
.le-cta { background: linear-gradient(135deg, #00569C 0%, #007ACF 100%); color: #fff; padding: 64px 80px; }
.le-cta-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
.le-cta-kicker { font-family: var(--body); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; color: #fff; }
.le-cta-kicker .dot { background: var(--bit-yellow); }
.le-cta-title { font-family: var(--body); font-weight: 800; color: #fff; font-size: clamp(36px, 5vw, 60px); line-height: 1.0; letter-spacing: -0.02em; margin: 14px 0 0; }
.le-cta-hl { background: var(--bit-yellow); color: var(--ink); padding: 0 12px; border-radius: 12px; display: inline-block; }
.le-cta-badges { display: flex; justify-content: flex-end; }

@media (max-width: 900px) {
  .le-hero { padding: 44px 22px 40px; }
  .le-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .le-featured, .le-upcoming, .le-cta { padding: 44px 22px; }
  .le-featured-inner { grid-template-columns: 1fr; gap: 22px; }
  .le-cta-inner { grid-template-columns: 1fr; gap: 28px; }
  .le-cta-badges { justify-content: flex-start; }
  .le-up-card { grid-template-columns: 72px 1fr; }
  .le-up-day { font-size: 28px; }
}

/* ==========================================================================
   EMPTY / COMING-SOON STATES
   Content-driven sections (hero carousel, Live Events, What's New) render these
   when content.json has no data yet, instead of any built-in placeholder.
   ========================================================================== */

/* Homepage hero with no carousel — collapse to a single column. */
.hero-inner--solo {
  grid-template-columns: 1fr;
  max-width: 1000px;
}

/* Live Events hero with no stat card — single column. */
.le-hero-inner--solo {
  grid-template-columns: 1fr;
}

/* Live Events "coming soon" panel. */
.le-empty {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1.5px solid #E2E8EF;
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(20, 30, 45, 0.08);
  padding: 48px 40px;
}
.le-empty-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--body); font-weight: 600; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.06em; color: #345e80;
}
.le-empty-kicker .dot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--bit-red);
}
.le-empty-title {
  font-family: var(--body); font-weight: 800; color: #345e80;
  font-size: clamp(28px, 4vw, 44px); letter-spacing: -0.02em; line-height: 1.05;
  margin: 12px 0;
}
.le-empty-body {
  font-family: var(--body); font-weight: 500; color: #656565;
  font-size: 16px; line-height: 1.6; margin: 0 auto; max-width: 540px;
}
