/* ====================================================================
   letsbuild — main stylesheet
   built for the index page, will hold up the rest of the site too
   colour palette borrowed from a caterpillar parked outside our office
   ==================================================================== */


:root {

  /* yellows (caterpillar / hi-vis territory) */
  --hi-vis-yellow:     #fec924;
  --hi-vis-amber:      #f5a623;
  --safety-orange:     #ff6b35;

  /* blacks / concrete greys */
  --asphalt:           #16181c;
  --crushed-stone:     #2a2d33;
  --rebar-grey:        #4a4e57;
  --concrete-mid:      #6b7280;
  --concrete-light:    #c8ccd2;
  --site-paper:        #f4f1ea;
  --site-paper-warm:   #efe8d8;

  /* alerts */
  --warn-red:          #d23027;
  --grass-green:       #2f8f4a;

  /* type */
  --display-stack:     'Bungee', 'Impact', sans-serif;
  --body-stack:        'Work Sans', system-ui, -apple-system, sans-serif;

  /* edges */
  --edge-tight:        2px;
  --edge-loose:        4px;

  /* the hard hat bar height — used in a couple of spots */
  --bar-h:             72px;

}


/* ----- reset-ish ----- */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body-stack);
  font-size: 16px;
  line-height: 1.62;
  color: var(--asphalt);
  background: var(--site-paper);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }


/* ----- shared building blocks ----- */

.kicker {
  display: inline-block;
  font-family: var(--body-stack);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rebar-grey);
  padding: 6px 11px;
  background: var(--site-paper-warm);
  border-left: 3px solid var(--hi-vis-yellow);
  margin-bottom: 14px;
}

.kicker--alert {
  border-left-color: var(--warn-red);
  color: var(--warn-red);
  background: rgba(210, 48, 39, 0.08);
}

.block-h2 {
  font-family: var(--display-stack);
  font-size: clamp(28px, 4.4vw, 46px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  color: var(--asphalt);
}

.block-h2--light { color: var(--site-paper); }

.block-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--rebar-grey);
  max-width: 640px;
}

.link-inline {
  color: var(--asphalt);
  text-decoration: underline;
  text-decoration-color: var(--hi-vis-yellow);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.link-inline:hover { background: var(--hi-vis-yellow); }


/* CTA buttons --- a chunky yellow rectangle and a ghost variant */

.cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--body-stack);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 16px 26px;
  border: 2px solid var(--asphalt);
  cursor: pointer;
  transition: transform 0.14s ease, background 0.14s ease, color 0.14s ease;
}

.cta--primary {
  background: var(--hi-vis-yellow);
  color: var(--asphalt);
  box-shadow: 5px 5px 0 var(--asphalt);
}

.cta--primary:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--asphalt);
}

.cta--ghost {
  background: transparent;
  color: var(--asphalt);
}

.cta--ghost:hover { background: var(--asphalt); color: var(--site-paper); }

.cta--ghost.cta--dark {
  border-color: var(--site-paper);
  color: var(--site-paper);
}

.cta--ghost.cta--dark:hover { background: var(--site-paper); color: var(--asphalt); }

.cta--small { padding: 12px 19px; font-size: 14px; }

.cta--big   { padding: 20px 38px; font-size: 17px; }

.cta__icon { display: inline-flex; transition: transform 0.18s ease; }

.cta:hover .cta__icon { transform: translateX(3px); }




/* ====================================================================
   T O P   N A V — "hard-hat-bar"
   ==================================================================== */

.hard-hat-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--asphalt);
  border-bottom: 4px solid var(--hi-vis-yellow);
}

.hard-hat-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  height: var(--bar-h);
  padding: 0 28px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
}

.hard-hat-bar__brand { display: flex; align-items: center; }

.hard-hat-bar__logo-img {
  max-height: 42px;
  width: auto;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.4));
}

.hard-hat-bar__nav { justify-self: end; }

.hard-hat-bar__list {
  display: flex;
  list-style: none;
  gap: 6px;
}

.hard-hat-bar__link {
  font-family: var(--body-stack);
  font-size: 14px;
  font-weight: 500;
  color: var(--site-paper);
  padding: 10px 14px;
  border-bottom: 2px solid transparent;
  transition: color 0.14s ease, border-color 0.14s ease;
}

.hard-hat-bar__link:hover,
.hard-hat-bar__link.is-current {
  color: var(--hi-vis-yellow);
  border-bottom-color: var(--hi-vis-yellow);
}

.hard-hat-bar__age { display: flex; align-items: center; }

.hard-hat-bar__age-pill {
  display: inline-block;
  font-family: var(--display-stack);
  font-size: 13px;
  background: var(--warn-red);
  color: #fff;
  padding: 6px 12px;
  border: 2px solid var(--site-paper);
}

.hard-hat-bar__toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.hard-hat-bar__toggle span {
  display: block;
  height: 3px;
  background: var(--hi-vis-yellow);
  width: 100%;
}




/* ====================================================================
   H E R O — "dig-zone"
   ==================================================================== */

.dig-zone {
  position: relative;
  background: var(--asphalt);
  color: var(--site-paper);
  overflow: hidden;
  padding: 88px 0 110px;
}

.dig-zone__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--crushed-stone) 1px, transparent 1px),
    linear-gradient(90deg, var(--crushed-stone) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.42;
  pointer-events: none;
}

.dig-zone__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}


.dig-zone__copy { max-width: 620px; }

.dig-zone__tag {
  display: inline-block;
  font-family: var(--body-stack);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--asphalt);
  background: var(--hi-vis-yellow);
  padding: 7px 14px;
  margin-bottom: 22px;
}

.dig-zone__title {
  font-family: var(--display-stack);
  font-weight: 400;
  font-size: clamp(36px, 6.2vw, 78px);
  line-height: 1;
  letter-spacing: -0.015em;
  margin-bottom: 26px;
  color: var(--site-paper);
}

.dig-zone__title-accent {
  color: var(--hi-vis-yellow);
  background: linear-gradient(180deg, transparent 60%, rgba(254,201,36,0.15) 60%);
}

.dig-zone__lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--concrete-light);
  margin-bottom: 18px;
  max-width: 560px;
}

.dig-zone__lede--small { font-size: 14px; color: var(--concrete-mid); }

.dig-zone__inline-link {
  color: var(--hi-vis-yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dig-zone__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0 28px;
}

.dig-zone__actions .cta {
  border-color: var(--site-paper);
}

.dig-zone__actions .cta--ghost {
  color: var(--site-paper);
}

.dig-zone__actions .cta--ghost:hover {
  background: var(--site-paper);
  color: var(--asphalt);
}

.dig-zone__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 14px;
}

.dig-zone__bullets li {
  font-size: 14px;
  color: var(--concrete-light);
  display: flex;
  align-items: center;
  gap: 11px;
}

.dot {
  width: 9px;
  height: 9px;
  background: var(--hi-vis-yellow);
  display: inline-block;
}


/* ----- the caterpillar visual ----- */

.dig-zone__visual {
  position: relative;
  height: 460px;
}

.caterpillar {
  position: absolute;
  bottom: 90px;
  left: 12%;
  width: 360px;
  height: 280px;
}

.caterpillar__cab {
  position: absolute;
  left: 70px;
  bottom: 80px;
  width: 130px;
  height: 110px;
  background: var(--hi-vis-yellow);
  border: 3px solid var(--asphalt);
}

.caterpillar__window {
  position: absolute;
  top: 14px;
  left: 18px;
  right: 18px;
  height: 44px;
  background: var(--crushed-stone);
  border: 2px solid var(--asphalt);
}

.caterpillar__exhaust {
  position: absolute;
  top: -28px;
  left: 18px;
  width: 14px;
  height: 32px;
  background: var(--rebar-grey);
  border: 2px solid var(--asphalt);
}

.caterpillar__arm {
  position: absolute;
  top: 30px;
  right: 40px;
  width: 110px;
  height: 16px;
  background: var(--hi-vis-amber);
  border: 3px solid var(--asphalt);
  transform-origin: left center;
  transform: rotate(28deg);
}

.caterpillar__joint {
  position: absolute;
  left: 60px;
  top: -6px;
  width: 22px;
  height: 22px;
  background: var(--asphalt);
  border-radius: 50%;
}

.caterpillar__bucket {
  position: absolute;
  right: -22px;
  top: -6px;
  width: 36px;
  height: 32px;
  background: var(--hi-vis-yellow);
  border: 3px solid var(--asphalt);
  transform: rotate(-18deg);
}

.caterpillar__teeth {
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background:
    linear-gradient(90deg,
      var(--asphalt) 0 4px, transparent 4px 8px,
      var(--asphalt) 8px 12px, transparent 12px 16px,
      var(--asphalt) 16px 20px, transparent 20px 24px,
      var(--asphalt) 24px 28px, transparent 28px 32px);
}

.caterpillar__tracks {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 320px;
  height: 70px;
  background: var(--asphalt);
  border: 3px solid var(--asphalt);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 16px;
}

.caterpillar__wheel {
  width: 44px;
  height: 44px;
  background: var(--rebar-grey);
  border: 3px solid var(--hi-vis-yellow);
  border-radius: 50%;
  position: relative;
}

.caterpillar__wheel::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 2px solid var(--hi-vis-yellow);
  border-radius: 50%;
}


/* tossed bricks --- look like the cat just dropped them */

.brick-pile {
  position: absolute;
  bottom: 50px;
  right: 8%;
  width: 200px;
  height: 110px;
}

.brick {
  position: absolute;
  background: var(--safety-orange);
  border: 3px solid var(--asphalt);
}

.brick--a { width: 70px; height: 30px; bottom: 0;  left: 30px;             }
.brick--b { width: 60px; height: 28px; bottom: 30px; left: 56px; transform: rotate(4deg); }
.brick--c { width: 56px; height: 26px; bottom: 0;  left: 110px; background: var(--hi-vis-amber); }
.brick--d { width: 64px; height: 28px; bottom: 56px; left: 46px; transform: rotate(-7deg); }


.dig-zone__warning-tape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: repeating-linear-gradient(
    -45deg,
    var(--hi-vis-yellow) 0 22px,
    var(--asphalt) 22px 44px
  );
  height: 26px;
  overflow: hidden;
}

.dig-zone__warning-tape span {
  display: inline-block;
  padding: 0 30px;
  line-height: 26px;
  color: var(--asphalt);
  font-family: var(--body-stack);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  top: 0;
}




/* ====================================================================
   G A M E   C A R D — "game-card-zone"
   ==================================================================== */

.game-card-zone {
  background: var(--site-paper);
  padding: 100px 0;
}

.game-card-zone__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.game-card-zone__heading { max-width: 740px; margin-bottom: 56px; }


.promo-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: #fff;
  border: 3px solid var(--asphalt);
  box-shadow: 12px 12px 0 var(--hi-vis-yellow);
  overflow: hidden;
}


.promo-card__visual {
  background: var(--crushed-stone);
  padding: 36px 32px 26px;
  position: relative;
  border-right: 3px solid var(--asphalt);
}

.promo-card__screen {
  background: var(--asphalt);
  border: 2px solid var(--rebar-grey);
  height: 320px;
  padding: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.promo-card__ui-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.promo-card__ui-chip {
  font-family: var(--body-stack);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--rebar-grey);
  color: var(--site-paper);
  padding: 4px 9px;
}

.promo-card__ui-chip--score {
  background: var(--hi-vis-yellow);
  color: var(--asphalt);
}

.promo-card__tower {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 3px;
}

.promo-card__tower-piece {
  width: var(--w);
  max-width: 80%;
  height: 22px;
  background: var(--hi-vis-yellow);
  border: 2px solid var(--asphalt);
}

.promo-card__tower-piece:nth-child(odd)  { background: var(--hi-vis-amber); }
.promo-card__tower-piece:nth-child(3n)   { background: var(--safety-orange); }

.promo-card__tower-piece--falling {
  position: absolute;
  top: 30px;
  right: 8%;
  transform: rotate(20deg);
  opacity: 0.85;
}

.promo-card__ground {
  height: 6px;
  background: var(--hi-vis-yellow);
  margin-top: 8px;
}

.promo-card__visual-label {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--concrete-light);
  text-align: center;
}


.promo-card__body { padding: 44px 42px; }

.promo-card__title {
  font-family: var(--display-stack);
  font-size: 38px;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--asphalt);
}

.promo-card__sub {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rebar-grey);
  margin-bottom: 22px;
}

.promo-card__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--asphalt);
  margin-bottom: 16px;
}

.promo-card__specs {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 26px 0;
  border: 2px solid var(--asphalt);
}

.promo-card__specs li {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  font-size: 13px;
  border-bottom: 1px solid var(--concrete-light);
}

.promo-card__specs li:nth-child(even) { border-left: 1px solid var(--concrete-light); }
.promo-card__specs li:nth-last-child(-n+2) { border-bottom: 0; }

.promo-card__spec-key {
  font-weight: 600;
  color: var(--rebar-grey);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
}

.promo-card__spec-val {
  font-weight: 700;
  color: var(--asphalt);
}


.promo-card__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.promo-card__fine {
  font-size: 12px;
  color: var(--concrete-mid);
  font-style: italic;
  border-top: 1px solid var(--concrete-light);
  padding-top: 14px;
}




/* ====================================================================
   W H A T   T H I S   I S   /   I S N ' T
   ==================================================================== */

.what-this-is {
  background: var(--site-paper-warm);
  padding: 100px 0;
}

.what-this-is__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.what-this-is__head { max-width: 720px; margin-bottom: 50px; }


.dual-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.dual-column__col {
  padding: 38px 36px;
  border: 3px solid var(--asphalt);
  background: #fff;
}

.dual-column__col--green { border-left: 12px solid var(--grass-green); }

.dual-column__col--red { border-left: 12px solid var(--warn-red); }

.dual-column__title {
  font-family: var(--display-stack);
  font-size: 26px;
  margin-bottom: 18px;
  color: var(--asphalt);
}

.dual-column__col p {
  font-size: 15.5px;
  line-height: 1.65;
  margin-bottom: 14px;
}

.dual-column__pull {
  font-size: 16px !important;
  font-weight: 600;
  border-top: 2px solid var(--asphalt);
  padding-top: 16px;
  margin-top: 18px;
}

.dual-column__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 6px;
}

.dual-column__list li {
  font-size: 15px;
  line-height: 1.6;
  padding-left: 18px;
  border-left: 3px solid var(--warn-red);
}




/* ====================================================================
   P L A Y   S M A R T   /   R E S P O N S I B L Y
   ==================================================================== */

.play-smart {
  background: var(--asphalt);
  color: var(--site-paper);
  padding: 110px 0;
  position: relative;
}

.play-smart::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 18px;
  background: repeating-linear-gradient(
    -45deg,
    var(--hi-vis-yellow) 0 18px,
    var(--asphalt) 18px 36px
  );
}

.play-smart__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}


.play-smart__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: end;
}

.play-smart__head-right p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--concrete-light);
}


.reminder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.reminder-card {
  background: var(--crushed-stone);
  border: 2px solid var(--rebar-grey);
  padding: 30px 26px;
  position: relative;
}

.reminder-card__num {
  font-family: var(--display-stack);
  font-size: 36px;
  color: var(--hi-vis-yellow);
  margin-bottom: 8px;
  line-height: 1;
}

.reminder-card__title {
  font-family: var(--display-stack);
  font-size: 18px;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--site-paper);
}

.reminder-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--concrete-light);
}

.reminder-card--cta {
  background: var(--hi-vis-yellow);
  border-color: var(--hi-vis-yellow);
  color: var(--asphalt);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.reminder-card--cta .reminder-card__title { color: var(--asphalt); }

.reminder-card--cta p {
  color: var(--asphalt);
  margin-bottom: 18px;
}




/* ====================================================================
   H O W   I T   W O R K S
   ==================================================================== */

.how-it-works {
  background: var(--site-paper);
  padding: 100px 0;
}

.how-it-works__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

.how-it-works__head {
  text-align: left;
  margin-bottom: 60px;
  max-width: 700px;
}


.step-track {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.step-track::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 30px;
  bottom: 30px;
  width: 4px;
  background: repeating-linear-gradient(
    180deg,
    var(--hi-vis-yellow) 0 12px,
    transparent 12px 24px
  );
}

.step-track__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  padding: 28px 0;
  align-items: start;
  position: relative;
}

.step-track__item:not(:last-child) {
  border-bottom: 1px dashed var(--concrete-light);
}

.step-track__num {
  width: 70px;
  height: 70px;
  background: var(--asphalt);
  color: var(--hi-vis-yellow);
  font-family: var(--display-stack);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  border: 3px solid var(--hi-vis-yellow);
}

.step-track__title {
  font-family: var(--display-stack);
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--asphalt);
}

.step-track__body p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--rebar-grey);
}




/* ====================================================================
   N U M B E R S   S T R I P
   ==================================================================== */

.numbers-strip {
  background: var(--hi-vis-yellow);
  border-top: 3px solid var(--asphalt);
  border-bottom: 3px solid var(--asphalt);
  padding: 50px 0;
}

.numbers-strip__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.numbers-strip__cell {
  text-align: center;
  border-right: 2px dashed var(--asphalt);
  padding: 6px 8px;
}

.numbers-strip__cell:last-child { border-right: 0; }

.numbers-strip__num {
  font-family: var(--display-stack);
  font-size: clamp(34px, 4vw, 54px);
  color: var(--asphalt);
  line-height: 1;
  margin-bottom: 8px;
}

.numbers-strip__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--asphalt);
  font-weight: 600;
}




/* ====================================================================
   P L A Y E R   W O R D S
   ==================================================================== */

.player-words {
  background: var(--site-paper-warm);
  padding: 100px 0;
}

.player-words__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.player-words__head { max-width: 700px; margin-bottom: 50px; }


.word-grid {
  columns: 3;
  column-gap: 26px;
}

.word-card {
  break-inside: avoid;
  background: #fff;
  border: 2px solid var(--asphalt);
  padding: 26px 24px;
  margin-bottom: 26px;
  display: inline-block;
  width: 100%;
  position: relative;
}

.word-card::before {
  content: '"';
  position: absolute;
  top: -14px;
  left: 16px;
  font-family: var(--display-stack);
  font-size: 48px;
  color: var(--hi-vis-yellow);
  background: #fff;
  padding: 0 8px;
  line-height: 1;
}

.word-card blockquote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--asphalt);
  margin-bottom: 14px;
}

.word-card figcaption {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rebar-grey);
  font-weight: 600;
  border-top: 1px dashed var(--concrete-light);
  padding-top: 12px;
}

.word-card--shortest blockquote { font-size: 18px; font-weight: 600; }

.word-card--short blockquote    { font-size: 16px; }

.word-card--medium blockquote   { font-size: 14.5px; }

.word-card--tall                { background: var(--hi-vis-yellow); }

.word-card--tall::before        { background: var(--hi-vis-yellow); }




/* ====================================================================
   F A Q
   ==================================================================== */

.faq-block { background: var(--site-paper); padding: 100px 0; }

.faq-block__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 28px;
}

.faq-block__head { margin-bottom: 50px; }

.faq-block__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 2px solid var(--asphalt);
}


.faq-row {
  border-bottom: 2px solid var(--asphalt);
  background: #fff;
}

.faq-row[open] { background: var(--hi-vis-yellow); }

.faq-row__q {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--body-stack);
  font-weight: 600;
  font-size: 17px;
  color: var(--asphalt);
}

.faq-row__q::-webkit-details-marker { display: none; }

.faq-row__indicator {
  position: relative;
  width: 22px;
  height: 22px;
  flex: none;
  border: 2px solid var(--asphalt);
  background: var(--site-paper);
}

.faq-row__indicator::before,
.faq-row__indicator::after {
  content: '';
  position: absolute;
  background: var(--asphalt);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.faq-row__indicator::before { width: 12px; height: 2px; }

.faq-row__indicator::after  { width: 2px;  height: 12px; transition: transform 0.18s ease; }

.faq-row[open] .faq-row__indicator::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-row__a {
  padding: 0 26px 22px;
  border-top: 1px dashed rgba(22, 24, 28, 0.25);
  padding-top: 16px;
}

.faq-row__a p {
  font-size: 15px;
  line-height: 1.7;
}

.faq-row__inline-link {
  text-decoration: underline;
  text-underline-offset: 2px;
}


.faq-block__tail {
  margin-top: 30px;
  font-size: 14px;
  color: var(--rebar-grey);
  text-align: center;
}




/* ====================================================================
   B I G   C T A
   ==================================================================== */

.big-cta {
  background: var(--asphalt);
  padding: 90px 0;
  position: relative;
}

.big-cta__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
}


.big-cta__title {
  font-family: var(--display-stack);
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--site-paper);
  line-height: 1.1;
  margin-bottom: 14px;
}

.big-cta__desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--concrete-light);
  max-width: 620px;
}

.big-cta__action {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.big-cta__small {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--concrete-mid);
}




/* ====================================================================
   F O O T E R — "site-base"
   ==================================================================== */

.site-base {
  background: var(--crushed-stone);
  color: var(--concrete-light);
  border-top: 4px solid var(--hi-vis-yellow);
}

.site-base__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 28px 24px;
}


.site-base__top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--rebar-grey);
}

.site-base__col--brand { padding-right: 14px; }

.site-base__logo {
  display: inline-block;
  margin-bottom: 18px;
}

.site-base__logo-img { max-height: 40px; width: auto; }

.site-base__about {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 14px;
  color: var(--concrete-light);
}

.site-base__about--small { font-size: 13px; color: var(--concrete-mid); }

.site-base__col-title {
  font-family: var(--display-stack);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--hi-vis-yellow);
  margin-bottom: 18px;
}

.site-base__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.site-base__link {
  font-size: 14px;
  color: var(--concrete-light);
  transition: color 0.14s ease;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}

.site-base__link:hover {
  color: var(--hi-vis-yellow);
  border-bottom-color: var(--hi-vis-yellow);
}

.site-base__address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: var(--concrete-light);
}

.site-base__contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-base__contact-line {
  font-size: 14px;
  font-weight: 500;
  color: var(--site-paper);
  border-bottom: 1px dashed var(--rebar-grey);
  padding-bottom: 4px;
  transition: color 0.14s ease, border-color 0.14s ease;
}

.site-base__contact-line:hover {
  color: var(--hi-vis-yellow);
  border-bottom-color: var(--hi-vis-yellow);
}


.site-base__band {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--rebar-grey);
}

.age-marker {
  display: flex;
  align-items: center;
  gap: 14px;
}

.age-marker__circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--warn-red);
  color: #fff;
  font-family: var(--display-stack);
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--site-paper);
}

.age-marker__text {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--site-paper);
}

.site-base__band-right {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--concrete-mid);
}


.site-base__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  flex-wrap: wrap;
  gap: 12px;
}

.site-base__copy,
.site-base__build {
  font-size: 12px;
  color: var(--concrete-mid);
  letter-spacing: 0.06em;
}

.site-base__build { text-transform: uppercase; }




/* ====================================================================
   R E S P O N S I V E    T W E A K S
   ==================================================================== */


@media (max-width: 1080px) {

  .dig-zone__inner          { grid-template-columns: 1fr; gap: 40px; }
  .dig-zone__visual         { height: 380px; }

  .promo-card               { grid-template-columns: 1fr; }
  .promo-card__visual       { border-right: 0; border-bottom: 3px solid var(--asphalt); }

  .reminder-grid            { grid-template-columns: repeat(2, 1fr); }

  .site-base__top           { grid-template-columns: 1fr 1fr; }

  .play-smart__head         { grid-template-columns: 1fr; gap: 24px; }

  .word-grid                { columns: 2; }

  .numbers-strip__inner     { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  .numbers-strip__cell:nth-child(3) { border-right: 0; }
  .numbers-strip__cell:nth-child(4),
  .numbers-strip__cell:nth-child(5) { border-right: 2px dashed var(--asphalt); }

  .big-cta__inner           { grid-template-columns: 1fr; gap: 24px; }
  .big-cta__action          { align-items: flex-start; text-align: left; }

}


@media (max-width: 720px) {

  .hard-hat-bar__inner      { grid-template-columns: auto auto auto; gap: 14px; padding: 0 18px; }
  .hard-hat-bar__nav        { display: none; }
  .hard-hat-bar__toggle     { display: flex; }

  .dig-zone                 { padding: 56px 0 80px; }
  .dig-zone__title          { font-size: clamp(32px, 9vw, 50px); }
  .dig-zone__visual         { height: 280px; }
  .caterpillar              { transform: scale(0.7); transform-origin: bottom left; }
  .brick-pile               { transform: scale(0.8); transform-origin: bottom right; }

  .game-card-zone,
  .what-this-is,
  .play-smart,
  .how-it-works,
  .player-words,
  .faq-block,
  .big-cta                  { padding: 64px 0; }

  .promo-card__body         { padding: 30px 24px; }
  .promo-card__specs        { grid-template-columns: 1fr; }
  .promo-card__specs li:nth-child(even) { border-left: 0; }

  .dual-column              { grid-template-columns: 1fr; gap: 18px; }
  .dual-column__col         { padding: 28px 24px; }

  .reminder-grid            { grid-template-columns: 1fr; }

  .step-track__item         { grid-template-columns: 60px 1fr; gap: 18px; }
  .step-track__num          { width: 50px; height: 50px; font-size: 18px; }
  .step-track::before       { left: 25px; }

  .word-grid                { columns: 1; }

  .numbers-strip__inner     { grid-template-columns: repeat(2, 1fr); }
  .numbers-strip__cell:nth-child(odd)  { border-right: 2px dashed var(--asphalt); }
  .numbers-strip__cell:nth-child(even) { border-right: 0; }

  .faq-row__q               { font-size: 15px; padding: 18px 18px; }
  .faq-row__a               { padding: 14px 18px 18px; }

  .site-base__inner         { padding: 50px 22px 22px; }
  .site-base__top           { grid-template-columns: 1fr; gap: 32px; }
  .site-base__band          { grid-template-columns: 1fr; }
  .site-base__bottom        { flex-direction: column; align-items: flex-start; }

}




/* ====================================================================
   R E D    1 8 +    A L E R T    S T R I P   (after hero)
   ==================================================================== */

.red-strip {
  background: var(--warn-red);
  border-top: 3px solid var(--asphalt);
  border-bottom: 3px solid var(--asphalt);
}

.red-strip__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.red-strip__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display-stack);
  font-size: 14px;
  background: #fff;
  color: var(--warn-red);
  padding: 5px 11px;
  border: 2px solid var(--asphalt);
  letter-spacing: 0.04em;
  flex: none;
}

.red-strip__line {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.45;
}

.red-strip__link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  margin-left: 6px;
  white-space: nowrap;
}

.red-strip__link:hover { background: var(--asphalt); padding: 1px 6px; }




/* ====================================================================
   F O O T E R    P L A Y - R E S P O N S I B L Y    B L O C K
   + regulator logo row
   ==================================================================== */

.play-block {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  padding: 36px 0 30px;
  border-bottom: 1px solid var(--rebar-grey);
  align-items: start;
}

.play-block__heading {
  font-family: var(--display-stack);
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--hi-vis-yellow);
  margin-bottom: 14px;
  text-transform: lowercase;
}

.play-block__text {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--concrete-light);
}

.play-block__regulators {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.play-block__reg-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--concrete-mid);
  font-weight: 600;
}

.play-block__reg-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  background: var(--site-paper);
  padding: 16px 22px;
  border: 2px solid var(--asphalt);
}

.play-block__reg-link {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 4px 6px;
  transition: opacity 0.14s ease, transform 0.14s ease;
}

.play-block__reg-link:hover {
  opacity: 0.78;
  transform: translateY(-1px);
}

.play-block__reg-img {
  max-height: 36px;
  width: auto;
  display: block;
}




/* ====================================================================
   A G E    G A T E    (18+ modal)
   ==================================================================== */

html.is-locked,
html.is-locked body {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(22, 24, 28, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: gate-in 0.3s ease;
}

.age-gate.is-hidden {
  display: none;
}

@keyframes gate-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.age-gate__panel {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--site-paper);
  border: 3px solid var(--asphalt);
  box-shadow: 14px 14px 0 var(--hi-vis-yellow);
  padding: 40px 38px 32px;
  text-align: left;
  animation: gate-rise 0.32s ease;
}

@keyframes gate-rise {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.age-gate__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.age-gate__chevron {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.age-gate__chevron span {
  display: block;
  width: 38px;
  height: 5px;
  background: var(--hi-vis-yellow);
  border: 1px solid var(--asphalt);
}

.age-gate__chevron span:nth-child(1) { width: 38px; }
.age-gate__chevron span:nth-child(2) { width: 28px; background: var(--asphalt); border-color: var(--hi-vis-yellow); }
.age-gate__chevron span:nth-child(3) { width: 38px; }
.age-gate__chevron span:nth-child(4) { width: 22px; background: var(--asphalt); border-color: var(--hi-vis-yellow); }

.age-gate__circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--warn-red);
  color: #fff;
  font-family: var(--display-stack);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--asphalt);
}

.age-gate__title {
  font-family: var(--display-stack);
  font-size: 28px;
  line-height: 1.1;
  color: var(--asphalt);
  margin-bottom: 14px;
}

.age-gate__text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--rebar-grey);
  margin-bottom: 12px;
}

.age-gate__text--small {
  font-size: 12.5px;
  color: var(--concrete-mid);
}

.age-gate__link {
  color: var(--asphalt);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

.age-gate__btn {
  display: block;
  width: 100%;
  margin-top: 22px;
  padding: 17px 24px;
  font-family: var(--body-stack);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  background: var(--hi-vis-yellow);
  color: var(--asphalt);
  border: 2px solid var(--asphalt);
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--asphalt);
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}

.age-gate__btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--asphalt);
}

.age-gate__btn:active {
  transform: translate(5px, 5px);
  box-shadow: 0 0 0 var(--asphalt);
}

.age-gate__fine {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--concrete-mid);
  text-align: center;
  font-weight: 600;
}




/* ====================================================================
   C O O K I E    B A R    (GDPR)
   ==================================================================== */

.cookie-bar {
  position: fixed;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  background: var(--asphalt);
  color: var(--site-paper);
  border: 3px solid var(--hi-vis-yellow);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  transform: translateY(140%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 880px;
  margin: 0 auto;
}

.cookie-bar.is-up {
  transform: translateY(0);
}

.cookie-bar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 18px 22px;
}

.cookie-bar__icon {
  width: 44px;
  height: 44px;
  background: var(--hi-vis-yellow);
  color: var(--asphalt);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--asphalt);
  flex: none;
}

.cookie-bar__head {
  font-family: var(--display-stack);
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--hi-vis-yellow);
  letter-spacing: 0.04em;
}

.cookie-bar__text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--concrete-light);
}

.cookie-bar__link {
  color: var(--hi-vis-yellow);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-bar__buttons {
  display: flex;
  gap: 8px;
  flex: none;
}

.cookie-bar__btn {
  font-family: var(--body-stack);
  font-size: 13px;
  font-weight: 600;
  padding: 11px 16px;
  border: 2px solid var(--site-paper);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.14s ease, color 0.14s ease;
  white-space: nowrap;
}

.cookie-bar__btn--ghost {
  background: transparent;
  color: var(--site-paper);
}

.cookie-bar__btn--ghost:hover {
  background: var(--site-paper);
  color: var(--asphalt);
}

.cookie-bar__btn--solid {
  background: var(--hi-vis-yellow);
  color: var(--asphalt);
  border-color: var(--hi-vis-yellow);
}

.cookie-bar__btn--solid:hover {
  background: var(--site-paper);
  border-color: var(--site-paper);
}




/* ----- responsive overrides for new bits ----- */

@media (max-width: 1080px) {

  .play-block { grid-template-columns: 1fr; gap: 24px; }

  .cookie-bar__inner { grid-template-columns: 1fr; gap: 14px; }
  .cookie-bar__buttons { justify-content: flex-end; }

}

@media (max-width: 720px) {

  .red-strip__inner { padding: 12px 18px; gap: 12px; }
  .red-strip__line  { font-size: 13px; }

  .age-gate__panel  { padding: 30px 24px 24px; }
  .age-gate__title  { font-size: 22px; }
  .age-gate__text   { font-size: 14px; }

  .cookie-bar       { left: 12px; right: 12px; bottom: 12px; }
  .cookie-bar__inner { padding: 14px 16px; }
  .cookie-bar__buttons { flex-direction: column; }
  .cookie-bar__btn  { width: 100%; }

  .play-block__reg-row { padding: 14px 16px; gap: 14px; }
  .play-block__reg-img { max-height: 30px; }

}




/* ====================================================================
   S I T E    N O T E S    /    B L U E P R I N T   block
   ==================================================================== */

.site-notes {
  background: var(--site-paper);
  padding: 100px 0;
  position: relative;
}

.site-notes__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.site-notes__head { max-width: 720px; margin-bottom: 56px; }


.site-notes__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: 64px;
  align-items: start;
}


.site-notes__visual {
  position: relative;
  background: var(--asphalt);
  border: 3px solid var(--asphalt);
  padding: 14px;
  box-shadow: 12px 12px 0 var(--hi-vis-yellow);
}

.site-notes__img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--crushed-stone);
  border: 1px solid var(--rebar-grey);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.site-notes__visual-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 6px 4px;
}

.site-notes__visual-num {
  font-family: var(--display-stack);
  font-size: 22px;
  color: var(--hi-vis-yellow);
  letter-spacing: 0.04em;
}

.site-notes__visual-cap {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--concrete-light);
  font-style: italic;
}


.site-notes__copy { padding-top: 8px; }

.site-notes__lede {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--asphalt);
  margin-bottom: 18px;
}

.site-notes__copy p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--rebar-grey);
  margin-bottom: 18px;
}


.site-notes__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 22px 0;
  padding: 22px 24px;
  background: var(--site-paper-warm);
  border-left: 4px solid var(--asphalt);
}

.site-notes__list li {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--asphalt);
}

.site-notes__list-key {
  font-family: var(--display-stack);
  font-size: 14px;
  color: var(--asphalt);
  margin-right: 6px;
  letter-spacing: 0.02em;
}


.site-notes__quote {
  font-family: var(--display-stack);
  font-size: 19px;
  line-height: 1.35;
  color: var(--asphalt);
  border-top: 3px solid var(--hi-vis-yellow);
  padding-top: 18px;
  margin-top: 24px;
  font-weight: 400;
}




/* ====================================================================
   T O D A Y ' S    B U I L D    /    L E A D E R B O A R D    block
   ==================================================================== */

.daily-build {
  background: var(--crushed-stone);
  color: var(--site-paper);
  padding: 100px 0;
  position: relative;
}

.daily-build::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--hi-vis-yellow) 0 12px,
    var(--asphalt) 12px 24px
  );
}

.daily-build__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}


.daily-build__copy { max-width: 540px; }

.daily-build__copy .kicker {
  background: var(--asphalt);
  color: var(--hi-vis-yellow);
  border-left-color: var(--hi-vis-yellow);
}

.daily-build__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--concrete-light);
  margin-bottom: 18px;
}


.daily-build__pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.daily-build__pills li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: var(--asphalt);
  border: 1px solid var(--rebar-grey);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--concrete-light);
  font-weight: 500;
}

.daily-build__pill-dot {
  width: 8px;
  height: 8px;
  background: var(--hi-vis-yellow);
  display: inline-block;
}


.daily-build__board {
  position: relative;
  background: var(--asphalt);
  border: 3px solid var(--hi-vis-yellow);
  padding: 18px;
  transform: rotate(-1.2deg);
}

.daily-build__board:hover { transform: rotate(0); transition: transform 0.4s ease; }

.daily-build__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 13 / 12;
  object-fit: cover;
  background: var(--asphalt);
}

.daily-build__board-tag {
  margin-top: 14px;
  padding: 10px 12px;
  background: var(--hi-vis-yellow);
  color: var(--asphalt);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  border: 2px solid var(--asphalt);
}




/* ----- responsive overrides for new sections ----- */

@media (max-width: 1080px) {

  .site-notes__grid    { grid-template-columns: 1fr; gap: 48px; }
  .daily-build__inner  { grid-template-columns: 1fr; gap: 40px; }
  .daily-build__board  { transform: none; max-width: 540px; }

}

@media (max-width: 720px) {

  .site-notes,
  .daily-build         { padding: 64px 0; }

  .site-notes__list    { padding: 18px 18px; }
  .site-notes__quote   { font-size: 16px; }

  .daily-build__pills li { font-size: 12px; padding: 8px 11px; }

}




/* ====================================================================
   L E G A L   /   P L A I N - T E X T   P A G E S
   used by privacy, eula, cookies, responsibly-play
   ==================================================================== */

.text-page {
  background: var(--site-paper);
  padding: 80px 0 100px;
  min-height: 60vh;
}

.text-page__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 28px;
}

.text-page__header {
  margin-bottom: 38px;
  padding-bottom: 28px;
  border-bottom: 3px solid var(--asphalt);
}

.text-page__crumb {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rebar-grey);
  font-weight: 600;
  margin-bottom: 16px;
}

.text-page__crumb a {
  color: var(--rebar-grey);
  border-bottom: 1px solid var(--concrete-light);
}

.text-page__crumb a:hover { color: var(--asphalt); border-bottom-color: var(--asphalt); }

.text-page__crumb-sep { margin: 0 8px; color: var(--concrete-light); }

.text-page__title {
  font-family: var(--display-stack);
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.05;
  color: var(--asphalt);
  margin-bottom: 12px;
}

.text-page__meta {
  font-size: 13px;
  color: var(--rebar-grey);
  letter-spacing: 0.04em;
}

.text-page__body p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--asphalt);
  margin-bottom: 18px;
}

.text-page__body h2 {
  font-family: var(--display-stack);
  font-weight: 400;
  font-size: 22px;
  margin: 38px 0 14px;
  color: var(--asphalt);
  letter-spacing: 0.01em;
}

.text-page__body h2:first-child { margin-top: 0; }

.text-page__body a {
  color: var(--asphalt);
  text-decoration: underline;
  text-decoration-color: var(--hi-vis-yellow);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.text-page__body a:hover { background: var(--hi-vis-yellow); }

.text-page__body strong { font-weight: 700; }




/* ====================================================================
   R U L E S    P A G E    blocks (game-rules.php)
   ==================================================================== */


/* head strip */

.rules-head {
  background: var(--asphalt);
  color: var(--site-paper);
  padding: 70px 0 56px;
  border-bottom: 4px solid var(--hi-vis-yellow);
}

.rules-head__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

.rules-head .kicker {
  background: rgba(254, 201, 36, 0.12);
  color: var(--hi-vis-yellow);
  border-left-color: var(--hi-vis-yellow);
}

.rules-head__title {
  font-family: var(--display-stack);
  font-size: clamp(36px, 5.4vw, 60px);
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--site-paper);
}

.rules-head__sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--concrete-light);
  max-width: 660px;
}




/* symbol parade */

.rules-symbols {
  background: var(--site-paper);
  padding: 90px 0;
}

.rules-symbols__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.rules-symbols__h2 {
  font-family: var(--display-stack);
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
  color: var(--asphalt);
}

.rules-symbols__lede {
  font-size: 16px;
  line-height: 1.65;
  color: var(--rebar-grey);
  max-width: 720px;
  margin-bottom: 50px;
}


.symbol-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.symbol-strip__item {
  background: #fff;
  border: 3px solid var(--asphalt);
  padding: 22px 18px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
}

.symbol-strip__item::before {
  content: '';
  position: absolute;
  inset: -3px;
  border: 3px dashed transparent;
  pointer-events: none;
}

.symbol-strip__item--rare {
  background: var(--hi-vis-yellow);
  box-shadow: 6px 6px 0 var(--asphalt);
}

.symbol-strip__item--common { background: var(--site-paper-warm); }


.symbol-strip__item img {
  width: 88px;
  height: 88px;
  background: var(--site-paper);
  padding: 8px;
  border: 2px solid var(--asphalt);
}

.symbol-strip__item--rare img { background: #fff; }


.symbol-strip__name {
  display: block;
  font-family: var(--display-stack);
  font-size: 17px;
  color: var(--asphalt);
  letter-spacing: 0.04em;
}

.symbol-strip__role {
  display: block;
  font-size: 11.5px;
  color: var(--rebar-grey);
  font-style: italic;
  margin: 6px 0 10px;
  line-height: 1.45;
}

.symbol-strip__pay {
  display: block;
  font-size: 12px;
  color: var(--asphalt);
  line-height: 1.5;
  border-top: 1px solid rgba(22, 24, 28, 0.18);
  padding-top: 8px;
}

.symbol-strip__pay strong {
  color: var(--warn-red);
  font-weight: 700;
}


.rules-symbols__foot {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--rebar-grey);
  background: var(--site-paper-warm);
  padding: 18px 22px;
  border-left: 4px solid var(--hi-vis-yellow);
  max-width: 820px;
}




/* paylines */

.rules-lines {
  background: var(--site-paper-warm);
  padding: 90px 0;
}

.rules-lines__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.rules-lines__h2 {
  font-family: var(--display-stack);
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
  color: var(--asphalt);
}

.rules-lines__lede {
  font-size: 16px;
  line-height: 1.65;
  color: var(--rebar-grey);
  max-width: 720px;
  margin-bottom: 44px;
}


.line-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}


.line-card {
  background: #fff;
  border: 2px solid var(--asphalt);
  padding: 22px;
}

.line-card__diagram {
  position: relative;
  background: var(--asphalt);
  padding: 14px;
  margin-bottom: 18px;
  height: 130px;
}

.lc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 4px;
  height: 100%;
}

.lc-grid span {
  background: #2a2d33;
  border: 1px solid #3a3d44;
}

.lc-line {
  position: absolute;
  left: 14px;
  right: 14px;
  height: 4px;
  background: var(--hi-vis-yellow);
  box-shadow: 0 0 10px var(--hi-vis-yellow);
}

.lc-line--top { top: 26px; }
.lc-line--mid { top: 50%; transform: translateY(-50%); }
.lc-line--bot { bottom: 26px; }

.lc-svg {
  position: absolute;
  inset: 14px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
}


.line-card__name {
  font-family: var(--display-stack);
  font-size: 18px;
  color: var(--asphalt);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.line-card__txt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--rebar-grey);
}




/* rules list */

.rules-list {
  background: var(--site-paper);
  padding: 90px 0 100px;
}

.rules-list__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 28px;
}

.rules-list__h2 {
  font-family: var(--display-stack);
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 28px;
  color: var(--asphalt);
}

.rules-list__ol {
  list-style: none;
  counter-reset: rule;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rules-list__ol li {
  counter-increment: rule;
  position: relative;
  padding: 18px 18px 18px 78px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--asphalt);
  border-bottom: 1px dashed var(--concrete-light);
}

.rules-list__ol li::before {
  content: '0' counter(rule);
  position: absolute;
  left: 0;
  top: 16px;
  font-family: var(--display-stack);
  font-size: 22px;
  color: var(--hi-vis-yellow);
  background: var(--asphalt);
  padding: 6px 10px;
  letter-spacing: 0.04em;
  line-height: 1;
  border: 2px solid var(--asphalt);
}

.rules-list__ol li strong {
  font-weight: 700;
  color: var(--asphalt);
}

.rules-list__ol a {
  color: var(--asphalt);
  text-decoration: underline;
  text-decoration-color: var(--hi-vis-yellow);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}


.rules-list__cta {
  margin-top: 36px;
  text-align: center;
}




/* responsive for rules page */

@media (max-width: 980px) {

  .symbol-strip      { grid-template-columns: repeat(3, 1fr); }
  .symbol-strip__item:nth-child(4),
  .symbol-strip__item:nth-child(5) { grid-column: span 1; }

  .line-cards        { grid-template-columns: repeat(2, 1fr); }

}

@media (max-width: 640px) {

  .symbol-strip      { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .symbol-strip__item img { width: 70px; height: 70px; }

  .line-cards        { grid-template-columns: 1fr; }

  .rules-list__ol li { padding-left: 60px; font-size: 14px; }
  .rules-list__ol li::before { font-size: 18px; padding: 5px 8px; }

}




/* ====================================================================
   P R O M O - C A R D    image (replaces CSS-art screenshot)
   ==================================================================== */

.promo-card__screen-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 7;
  object-fit: cover;
  background: var(--asphalt);
  border: 2px solid var(--rebar-grey);
}




/* ====================================================================
   S C R E E N    P A R A D E    section
   ==================================================================== */

.screen-parade {
  background: var(--site-paper-warm);
  padding: 100px 0;
}

.screen-parade__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.screen-parade__head {
  max-width: 720px;
  margin-bottom: 50px;
}


.screen-parade__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
  grid-auto-rows: 1fr;
}

.screen-parade__grid .shot--lead {
  grid-column: 1;
  grid-row: 1 / span 2;
}


.shot {
  background: var(--asphalt);
  border: 3px solid var(--asphalt);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.shot:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--hi-vis-yellow);
}

.shot__frame {
  background: #0a0c10;
  padding: 8px;
  flex: 1;
  display: flex;
  align-items: center;
}

.shot__frame img {
  display: block;
  width: 100%;
  height: auto;
  background: #0a0c10;
  object-fit: cover;
}

.shot--lead .shot__frame img { aspect-ratio: 3 / 2; }

.shot__frame img { aspect-ratio: 27 / 20; }


.shot__cap {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--hi-vis-yellow);
  color: var(--asphalt);
  border-top: 2px solid var(--asphalt);
}

.shot__num {
  font-family: var(--display-stack);
  font-size: 22px;
  letter-spacing: 0.02em;
  flex: none;
  line-height: 1;
}

.shot__txt {
  font-size: 13.5px;
  line-height: 1.55;
  font-weight: 500;
}

.shot--lead .shot__cap { padding: 20px 22px; }
.shot--lead .shot__num { font-size: 28px; }
.shot--lead .shot__txt { font-size: 15px; }


.screen-parade__foot {
  margin-top: 32px;
  font-size: 14px;
  color: var(--rebar-grey);
  text-align: center;
}




/* responsive for screen-parade */

@media (max-width: 980px) {

  .screen-parade__grid                  { grid-template-columns: 1fr 1fr; }
  .screen-parade__grid .shot--lead      { grid-column: 1 / span 2; grid-row: auto; }

}

@media (max-width: 640px) {

  .screen-parade__grid                  { grid-template-columns: 1fr; }
  .screen-parade__grid .shot--lead      { grid-column: 1; }

}




/* ====================================================================
   W E L C O M E    S T R I P   (50vh hero, gradient bg, text only)
   replaces the old dig-zone hero
   ==================================================================== */

.welcome-strip {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 0;
  background:
    radial-gradient(circle at 22% 30%, rgba(254, 201, 36, 0.18), transparent 55%),
    radial-gradient(circle at 82% 70%, rgba(255, 107, 53, 0.14), transparent 50%),
    linear-gradient(135deg, #16181c 0%, #1f2228 40%, #2a2d33 100%);
  color: var(--site-paper);
  overflow: hidden;
  border-bottom: 4px solid var(--hi-vis-yellow);
}


.welcome-strip__inner {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
}


.welcome-strip__tag {
  display: inline-block;
  font-family: var(--body-stack);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--asphalt);
  background: var(--hi-vis-yellow);
  padding: 7px 14px;
  margin-bottom: 26px;
}


.welcome-strip__title {
  font-family: var(--display-stack);
  font-size: clamp(40px, 7.4vw, 88px);
  line-height: 1;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
  color: var(--site-paper);
  font-weight: 400;
}


.welcome-strip__lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--concrete-light);
  margin-bottom: 32px;
  max-width: 600px;
}


.welcome-strip__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.welcome-strip__actions .cta {
  border-color: var(--site-paper);
}

.welcome-strip__actions .cta--ghost {
  color: var(--site-paper);
}

.welcome-strip__actions .cta--ghost:hover {
  background: var(--site-paper);
  color: var(--asphalt);
}


@media (max-width: 720px) {

  .welcome-strip                   { min-height: 50vh; padding: 50px 0; }
  .welcome-strip__lede             { font-size: 15.5px; }

}




/* ====================================================================
   L O G O    W H I T E   filter (top nav + footer)
   ==================================================================== */

.hard-hat-bar__logo-img,
.site-base__logo-img {
  filter: brightness(0) invert(1);
}




/* ====================================================================
   R E G U L A T O R    L O G O S   (bigger + white)
   overrides earlier .play-block__reg-* sizing
   ==================================================================== */

.play-block__reg-row {
  background: transparent;
  padding: 18px 0;
  border: 0;
  border-top: 1px dashed var(--rebar-grey);
  border-bottom: 1px dashed var(--rebar-grey);
  gap: 36px;
}

.play-block__reg-link {
  height: 72px;
  padding: 6px 8px;
}

.play-block__reg-img {
  max-height: 56px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  transition: opacity 0.18s ease;
}

.play-block__reg-link:hover .play-block__reg-img {
  opacity: 1;
}

@media (max-width: 720px) {

  .play-block__reg-row    { gap: 22px; padding: 14px 0; }
  .play-block__reg-img    { max-height: 44px; }

}
