/* ============================================================
   WEBSITE BULLDOZER — styles
   Palette:
     INK     #0a0a0a   black
     STEEL   #1a1a1a   panel
     SMOKE   #6b6b6b   grey
     CHALK   #f4f1ea   off-white
     YELLOW  #FFCD00   construction
     YELLOW2 #ffb800
     EMERALD #1fb47e   "new world"
     GOLD    #d4af37   accent
============================================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #0a0a0a;
  color: #f4f1ea;
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: #FFCD00; color: #0a0a0a; }

/* ============================================================
   STICKY NAV
============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.0);
  border-bottom: 1px solid rgba(255,255,255,0);
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.nav.scrolled, body.is-subpage .nav {
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav__wrap {
  max-width: 1400px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.nav__logo {
  display: inline-flex; align-items: center; gap: 10px;
  color: #f4f1ea;
  font-family: 'Archivo Black', Impact, sans-serif;
  letter-spacing: 0.02em;
}
.nav__mark { flex: 0 0 auto; }
.nav__word {
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
}
.nav__word b { color: #FFCD00; font-weight: 900; }

.nav__menu {
  display: flex; align-items: center; gap: 28px;
}
.nav__menu a {
  color: #c7c2b8;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color .15s ease;
}
.nav__menu a:hover { color: #FFCD00; }
.nav__menu a.nav__cta {
  background: #FFCD00;
  color: #0a0a0a;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 700;
  transition: background .15s ease, transform .15s ease;
}
.nav__menu a.nav__cta:hover { background: #ffd930; color: #0a0a0a; transform: translateY(-2px); }
.nav__menu a[aria-current="page"] { color: #FFCD00; }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
}
.nav__burger span { display: block; width: 18px; height: 2px; background: #f4f1ea; transition: transform .2s ease, opacity .2s ease; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__burger { display: flex; }
  .nav__menu {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(14px);
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    /* -100% alone leaves the menu's bottom peeking: it's anchored at top:70px */
    transform: translateY(calc(-100% - 80px));
    transition: transform .25s ease;
  }
  .nav__menu.open { transform: translateY(0); }
  .nav__menu a { padding: 14px 8px; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 16px; }
  .nav__menu a.nav__cta { margin-top: 8px; text-align: center; }
}

/* Sub-page top spacing — gives clearance for the sticky nav since sub-pages don't have a hero */
body.is-subpage { padding-top: 0; }
body.is-subpage main { padding-top: 80px; }

/* ============================================================
   SCENE — the demolition hero
============================================================ */
.scene {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: #0a0a0a;
  isolation: isolate;
  transform-origin: center center;
}
.scene.snap-zoom { animation: snapZoom .55s cubic-bezier(.2,.7,.3,1) forwards; }
@keyframes snapZoom {
  0%   { transform: scale(1); }
  20%  { transform: scale(1.08); }
  55%  { transform: scale(0.985); }
  100% { transform: scale(1); }
}
body.scene-shake { animation: bodyShake .55s cubic-bezier(.36,.07,.19,.97) both; }
@keyframes bodyShake {
  0%, 100% { transform: translate(0,0); }
  10% { transform: translate(-14px, 6px); }
  20% { transform: translate(12px, -8px); }
  30% { transform: translate(-10px, 10px); }
  40% { transform: translate(14px, -6px); }
  50% { transform: translate(-8px, 8px); }
  60% { transform: translate(10px, -4px); }
  70% { transform: translate(-6px, 6px); }
  80% { transform: translate(4px, -3px); }
  90% { transform: translate(-2px, 2px); }
}

/* --- The hideous old site --- */
.oldsite {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    repeating-linear-gradient(45deg, #0a8a0a 0 12px, #0a6a0a 12px 24px);
  font-family: 'Comic Sans MS', 'Chalkboard SE', cursive;
  color: #ffff66;
  text-shadow: 2px 2px 0 #000;
  overflow: hidden;
  transition: filter .25s ease;
}
.oldsite.shake {
  animation: shake 0.18s linear infinite;
}
.oldsite.gone {
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s .2s ease;
}
.oldsite__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 18px;
  background: #ff00ff;
  border: 6px ridge #ffff00;
  margin-top: 8px;
  margin-bottom: 8px;
  min-height: calc(100vh - 16px);
}
.marq {
  display: block;
  background: #ffff00;
  color: #ff0000;
  text-shadow: none;
  font-weight: 900;
  padding: 4px 0;
  border: 3px ridge #000;
  font-family: 'Times New Roman', serif;
  font-size: 18px;
  letter-spacing: 1px;
}
.oldsite__h1 {
  text-align: center;
  font-size: clamp(28px, 5vw, 54px);
  color: #ff0000;
  background: #ffff66;
  padding: 8px;
  margin: 10px 0;
  border: 4px outset #00ffff;
  text-shadow: 3px 3px 0 #000;
  transform: skewX(-2deg);
}
.oldsite__band {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: #000080; color: #00ffff;
  padding: 6px; border: 3px inset #ff00ff;
  text-shadow: 1px 1px 0 #000;
}
.oldsite__fire { font-size: 26px; animation: flicker .35s infinite alternate; }
@keyframes flicker { from { transform: scale(1) rotate(-3deg);} to { transform: scale(1.18) rotate(4deg);} }
.oldsite__sub { font-size: 15px; }

.oldsite__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: 14px; }
@media (max-width: 720px) { .oldsite__grid { grid-template-columns: 1fr; } }
.oldsite__col {
  background: #ffff66;
  color: #000;
  text-shadow: none;
  padding: 10px;
  border: 4px ridge #00ff00;
}
.oldsite__hdr {
  background: #ff0000; color: #ffff00; text-shadow: 1px 1px 0 #000;
  padding: 3px 6px; font-family: 'Impact', sans-serif; letter-spacing: 1px; margin-bottom: 6px;
}
.oldsite__ul { list-style: none; font-size: 14px; line-height: 1.7; }
.oldsite__construction { background: #ffcc00; color: #000; border: 3px dashed #000; padding: 6px; margin-top: 8px; text-align: center; font-weight: 900; animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: .35; } }
.oldsite__counter { background: #000; color: #00ff00; font-family: 'Courier New', monospace; font-size: 24px; padding: 4px 8px; text-align: center; border: 3px inset #888; }
.oldsite__counter span { color: #ff0; }
.oldsite__gbook { background: #fff; color: #00f; text-decoration: underline; padding: 4px; text-align: center; font-size: 14px; cursor: pointer; }
.oldsite__badge { margin: 8px auto 0; display: block; image-rendering: pixelated; }
.oldsite__footer { text-align: center; font-size: 12px; color: #fff; margin-top: 14px; }

/* --- The cracks --- */
.cracks {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity .1s ease;
}
.cracks.visible { opacity: 1; }
/* Each crack path is set up to "draw on" — stroke-dasharray/dashoffset set by JS */
.cracks__paths path {
  stroke-dasharray: var(--len, 2000);
  stroke-dashoffset: var(--len, 2000);
  transition: stroke-dashoffset .35s cubic-bezier(.25,.6,.3,1);
}
.cracks.visible .cracks__paths path {
  stroke-dashoffset: 0;
}

/* --- The bulldozer --- */
.dozer {
  position: absolute;
  z-index: 4;
  bottom: 8%;
  left: -560px;
  width: clamp(360px, 50vw, 620px);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 24px 24px rgba(0,0,0,0.45));
}
.dozer.charging {
  animation: dozerCharge 2.2s cubic-bezier(.55,.05,.6,.95) forwards;
}
.dozer.gone {
  animation: dozerLeave 1.6s ease-in forwards;
}
@keyframes dozerCharge {
  0%   { left: -560px; transform: translateY(0) rotate(0deg); }
  60%  { left: 30%; transform: translateY(0) rotate(0deg); }
  72%  { left: 32%; transform: translateY(-6px) rotate(-2deg); }
  82%  { left: 30%; transform: translateY(0) rotate(0deg); }
  100% { left: 35%; transform: translateY(0) rotate(0deg); }
}
@keyframes dozerLeave {
  0%   { left: 35%; opacity: 1; }
  100% { left: 110%; opacity: 1; }
}
/* — machine internals (hero dozer + parked mascot share these classes) — */
.t-wheel { transform-box: fill-box; transform-origin: center; }
.dozer.charging .t-wheel { animation: wheelSpin .5s linear infinite; }
.dozer.gone .t-wheel { animation: wheelSpin .4s linear infinite reverse; }
@keyframes wheelSpin { to { transform: rotate(-360deg); } }

.dozer.charging .t-tread { animation: treadRoll .35s linear infinite; }
.dozer.gone .t-tread { animation: treadRoll .28s linear infinite reverse; }
@keyframes treadRoll { to { stroke-dashoffset: -64; } }

.d-beaconGlow {
  transform-box: fill-box; transform-origin: center;
  animation: beaconPulse 1.2s ease-in-out infinite;
}
@keyframes beaconPulse {
  0%, 100% { opacity: .12; transform: scale(.8); }
  50%      { opacity: .95; transform: scale(1.25); }
}

.d-puff {
  transform-box: fill-box; transform-origin: center;
  opacity: 0;
  animation: puffRise 1.8s ease-out infinite;
}
.d-puff--2 { animation-delay: .6s; }
.d-puff--3 { animation-delay: 1.2s; }
.dozer.charging .d-puff { animation-duration: .9s; }
.dozer.charging .d-puff--2 { animation-delay: .3s; }
.dozer.charging .d-puff--3 { animation-delay: .6s; }
@keyframes puffRise {
  0%   { opacity: 0; transform: translate(0, 8px) scale(.5); }
  25%  { opacity: .75; }
  100% { opacity: 0; transform: translate(-18px, -36px) scale(1.55); }
}

.d-lampGlow { opacity: 0; }
.dozer.charging .d-lampGlow { animation: lampFlicker .16s steps(2) infinite; }
@keyframes lampFlicker { 0% { opacity: .9; } 100% { opacity: .55; } }

/* --- Rubble layer --- */
.rubble {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}
.chunk {
  position: absolute;
  background: #2a2a2a;
  border: 1px solid rgba(255,255,255,0.05);
  color: #888;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  display: flex; align-items: center; justify-content: center;
  will-change: transform, opacity;
}
.chunk.gray { background: #3a3a3a; }
.chunk.dark { background: #151515; }
.chunk.brick { background: #5a3a2a; }
.chunk.yellow { background: #FFCD00; color: #0a0a0a; }

/* --- Dust cloud --- */
.dust {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  opacity: 0;
}
.dust.active { opacity: 1; transition: opacity .25s ease; }
.dust.fading { opacity: 0; transition: opacity 1.8s ease 1.2s; }
.dust__puff {
  position: absolute;
  bottom: -10%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180,170,150,0.65) 0%, rgba(120,110,95,0.35) 35%, rgba(0,0,0,0) 70%);
  filter: blur(4px);
}
.dust__puff:nth-child(1) { left: -10%; transform: scale(0.4); animation: puff 2.5s ease-out forwards; }
.dust__puff:nth-child(2) { left: 10%; transform: scale(0.4); animation: puff 2.7s 0.1s ease-out forwards; }
.dust__puff:nth-child(3) { left: 30%; transform: scale(0.4); animation: puff 2.8s 0.05s ease-out forwards; }
.dust__puff:nth-child(4) { left: 50%; transform: scale(0.4); animation: puff 2.6s 0.15s ease-out forwards; }
.dust__puff:nth-child(5) { left: 70%; transform: scale(0.4); animation: puff 2.9s 0.2s ease-out forwards; }
@keyframes puff {
  0%   { transform: scale(0.3) translateY(20%); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: scale(1.4) translateY(-60%); opacity: 0; }
}

/* --- Sparks (yellow particles radiating from impact) --- */
.sparks {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}
.spark {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #fff48a;
  box-shadow: 0 0 12px 2px rgba(255,205,0,0.85);
  will-change: transform, opacity;
}

/* --- Embers (slow upward drift in the reveal background) --- */
.embers {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  transition: opacity .8s ease .6s;
}
.embers.active { opacity: 1; }
.ember {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,205,0,0.85);
  box-shadow: 0 0 8px 1px rgba(255,205,0,0.5);
  animation: emberRise linear infinite;
  bottom: -10px;
  will-change: transform, opacity;
}
@keyframes emberRise {
  0%   { transform: translate3d(0, 0, 0); opacity: 0; }
  10%  { opacity: 1; }
  100% { transform: translate3d(var(--drift, 0px), -110vh, 0); opacity: 0; }
}

/* --- White flash on impact --- */
.flash {
  position: absolute;
  inset: 0;
  z-index: 8;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}
.flash.fire { animation: flash .42s ease-out forwards; }
@keyframes flash {
  0%   { opacity: 0; }
  15%  { opacity: 0.92; }
  100% { opacity: 0; }
}

/* --- Sound toggle --- */
.snd {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 12;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px 8px 12px;
  background: rgba(10,10,10,0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  color: #f4f1ea;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  border-radius: 999px;
  cursor: pointer;
  opacity: 0;
  transition: opacity .4s ease, border-color .2s, color .2s;
}
.snd.visible { opacity: 1; }
.snd:hover { border-color: #FFCD00; color: #FFCD00; }
.snd .snd__on { display: none; }
.snd.on .snd__on { display: block; color: #FFCD00; }
.snd.on .snd__off { display: none; }

/* --- Reveal --- */
.reveal {
  position: absolute;
  inset: 0;
  z-index: 7;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(80% 60% at 50% 40%, rgba(31,180,126,0.12) 0%, transparent 60%),
    radial-gradient(60% 50% at 80% 80%, rgba(212,175,55,0.08) 0%, transparent 60%),
    #0a0a0a;
}
.reveal.visible { opacity: 1; pointer-events: auto; transition: opacity .8s ease .3s; }
.reveal__inner { max-width: 1100px; width: 100%; text-align: center; }

.reveal__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,205,0,0.08);
  border: 1px solid rgba(255,205,0,0.3);
  color: #FFCD00;
  padding: 8px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 3px;
  border-radius: 999px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(-180px) scale(1.3);
  animation: logoSlam .65s cubic-bezier(.2,.7,.25,1.2) .5s forwards;
}
@keyframes logoSlam {
  0%   { opacity: 0; transform: translateY(-180px) scale(1.3); }
  60%  { opacity: 1; transform: translateY(8px) scale(1.05); }
  78%  { transform: translateY(-3px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.reveal__pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #FFCD00;
  box-shadow: 0 0 0 0 rgba(255,205,0,0.7);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,205,0,0.7); }
  100% { box-shadow: 0 0 0 14px rgba(255,205,0,0); }
}

.reveal__h1 {
  font-family: 'Archivo Black', Impact, sans-serif;
  font-size: clamp(40px, 7.5vw, 110px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.reveal__h1 > span { display: inline-block; }
.reveal__strike { position: relative; opacity: 0; animation: fadeUp .8s ease .9s forwards; color: #6b6b6b; }
.reveal__strike::after {
  content: '';
  position: absolute;
  left: -2%; top: 50%;
  width: 0;
  height: 12px;
  background: #FFCD00;
  transform: translateY(-40%) rotate(-2deg);
  animation: strikeOut .6s ease 1.3s forwards;
}
@keyframes strikeOut { to { width: 104%; } }
.reveal__gradient {
  background: linear-gradient(120deg, #1fb47e 0%, #d4af37 60%, #FFCD00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  animation: fadeUp .9s ease 1.8s forwards;
}

.reveal__lede {
  max-width: 780px;
  margin: 0 auto 36px;
  font-size: clamp(16px, 1.8vw, 21px);
  color: #c7c2b8;
  line-height: 1.55;
  opacity: 0;
  animation: fadeUp .8s ease 2.2s forwards;
}
.reveal__lede strong { color: #fff; }

.reveal__cta {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s ease 2.5s forwards;
}

.reveal__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 3px;
  color: rgba(255,255,255,0.4);
  opacity: 0;
  animation: fadeUp .8s ease 3s forwards;
}
.reveal__scroll-dot { animation: scrollDot 1.6s ease-in-out infinite; }
@keyframes scrollDot { 0%,100% { transform: translateY(0); opacity: 1;} 50% { transform: translateY(10px); opacity: 0.3;} }

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

/* --- Mascot dozer parked in the corner of the reveal --- */
.mascot {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: clamp(140px, 16vw, 220px);
  height: auto;
  opacity: 0;
  transform: translateX(60px);
  filter: drop-shadow(0 16px 24px rgba(0,0,0,0.5));
  pointer-events: none;
}
.reveal.visible .mascot {
  opacity: 0.95;
  transform: translateX(0);
  transition: opacity .8s ease 3.6s, transform .9s cubic-bezier(.25,.7,.3,1) 3.6s;
  animation: mascotIdle 3.5s ease-in-out 4.6s infinite;
}
@keyframes mascotIdle {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -4px; }
}
@media (max-width: 640px) { .mascot { display: none; } }

@keyframes shake {
  0%,100% { transform: translate(0,0); }
  25% { transform: translate(-4px, 2px); }
  50% { transform: translate(3px, -3px); }
  75% { transform: translate(-2px, 4px); }
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  border-radius: 4px;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn--big { padding: 18px 32px; font-size: 17px; }
.btn--primary {
  background: #FFCD00;
  color: #0a0a0a;
}
.btn--primary:hover { transform: translateY(-2px); background: #ffd930; box-shadow: 0 12px 24px rgba(255,205,0,0.25); }
.btn--ghost {
  background: transparent;
  color: #f4f1ea;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn--ghost:hover { border-color: #FFCD00; color: #FFCD00; }
.btn--ghost-y {
  background: transparent;
  color: #FFCD00;
  border: 1.5px solid #FFCD00;
}
.btn--ghost-y:hover { background: #FFCD00; color: #0a0a0a; }


/* ============================================================
   STAT BAND
============================================================ */
.band {
  background: #FFCD00;
  color: #0a0a0a;
  border-top: 6px solid #0a0a0a;
  border-bottom: 6px solid #0a0a0a;
  padding: 32px 24px;
}
.band__row {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 800px) { .band__row { grid-template-columns: repeat(2, 1fr); } }
.band__cell { padding: 12px; }
.band__n {
  font-family: 'Archivo Black', Impact, sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
}
.band__n span { font-size: 0.55em; }
.band__l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 8px;
  opacity: 0.75;
}

/* ============================================================
   SHARED — eyebrows / H2 / wraps
============================================================ */
.prob, .how, .port, .vs, .price, .cta { padding: 120px 24px; position: relative; }
.prob__wrap, .how__wrap, .port__wrap, .vs__wrap, .price__wrap, .cta__wrap { max-width: 1200px; margin: 0 auto; }

.prob__eyebrow, .how__eyebrow, .port__eyebrow, .vs__eyebrow, .price__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 4px;
  color: #FFCD00;
  margin-bottom: 20px;
}

.prob__h2, .how__h2, .port__h2, .vs__h2, .price__h2 {
  font-family: 'Archivo Black', Impact, sans-serif;
  font-size: clamp(36px, 5.5vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

/* ============================================================
   PROBLEM
============================================================ */
.prob { background: #0a0a0a; }
.prob__lede { font-size: clamp(17px, 1.6vw, 21px); color: #c7c2b8; max-width: 780px; margin-bottom: 80px; }
.prob__lede em { color: #FFCD00; font-style: normal; }

.prob__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 800px) { .prob__list { grid-template-columns: 1fr; } }
.prob__item {
  padding: 48px 36px 48px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  position: relative;
  transition: background .2s ease;
}
.prob__item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); padding-right: 36px; }
.prob__item:nth-child(even) { padding-left: 36px; }
@media (max-width: 800px) {
  .prob__item:nth-child(odd) { border-right: 0; padding-right: 0; }
  .prob__item:nth-child(even) { padding-left: 0; }
}
.prob__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: #FFCD00;
  margin-bottom: 16px;
}
.prob__item h3 {
  font-family: 'Archivo Black', Impact, sans-serif;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.prob__item p { color: #c7c2b8; font-size: 16px; line-height: 1.55; }

/* ============================================================
   HOW
============================================================ */
.how { background: #f4f1ea; color: #0a0a0a; }
.how__eyebrow { color: #c08800; }
.how__accent { color: #FFCD00; -webkit-text-stroke: 1.5px #0a0a0a; text-stroke: 1.5px #0a0a0a; }
.how__lede { font-size: clamp(17px, 1.6vw, 21px); color: #555; max-width: 780px; margin-bottom: 80px; }

.how__steps { list-style: none; counter-reset: steps; }
.how__step {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 36px;
  padding: 36px 0;
  border-top: 2px solid #0a0a0a;
  align-items: start;
}
.how__step:last-child { border-bottom: 2px solid #0a0a0a; }
@media (max-width: 720px) { .how__step { grid-template-columns: 1fr; gap: 12px; } }
.how__d {
  font-family: 'Archivo Black', Impact, sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  background: #0a0a0a;
  color: #FFCD00;
  padding: 8px 14px;
  display: inline-block;
  width: max-content;
  letter-spacing: 0.04em;
}
.how__step h3 {
  font-family: 'Archivo Black', Impact, sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.how__step p { color: #444; font-size: 17px; max-width: 720px; }

/* ============================================================
   PORTFOLIO
============================================================ */
.port { background: #0a0a0a; }
.port__accent { color: #FFCD00; }
.port__lede { color: #c7c2b8; font-size: clamp(16px, 1.5vw, 19px); max-width: 760px; margin-top: 6px; }
.port__cta { text-align: center; margin-top: 56px; }
.port__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}
@media (max-width: 900px) { .port__grid { grid-template-columns: 1fr; } }
.port__card {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  display: block;
}
.port__card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,205,0,0.4);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,205,0,0.15);
}
.port__shot {
  aspect-ratio: 16 / 10;
  background: #1a1a1a;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.port__mock {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  font-family: 'Inter', sans-serif;
}
.port__chrome {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  background: #232323;
  border-bottom: 1px solid #0a0a0a;
}
.port__chrome span {
  width: 10px; height: 10px; border-radius: 50%; background: #444;
}
.port__chrome span:nth-child(1) { background: #ff5f57; }
.port__chrome span:nth-child(2) { background: #febc2e; }
.port__chrome span:nth-child(3) { background: #28c840; }
.port__chrome div {
  margin-left: 14px;
  flex: 1;
  background: #0e0e0e;
  border-radius: 4px;
  padding: 3px 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #999;
}
.port__body { flex: 1; padding: 18px; overflow: hidden; }
.port__navline {
  height: 2px; background: rgba(255,255,255,0.1); width: 100%; margin-bottom: 16px;
}

/* Cavmir mock */
.port__mock--cavmir { background: linear-gradient(135deg, #3a0a1a 0%, #1a0508 100%); color: #f4d4d4; }
.port__body--cavmir { display: flex; flex-direction: column; gap: 12px; }
.port__hero-cm .port__h { font-family: 'Archivo Black', sans-serif; font-size: clamp(14px, 2vw, 26px); line-height: 1.1; }
.port__hero-cm .port__sub { color: #c9a0a0; font-size: 12px; margin-top: 6px; }
.port__strip { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }
.port__strip span { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 2px; color: #d4af37; padding: 4px 8px; border: 1px solid #d4af37; border-radius: 2px; }

/* Via Avantgarde mock */
.port__mock--via { background: linear-gradient(180deg, #0d2818 0%, #06140c 100%); color: #d4e6d4; }
.port__body--via { display: grid; grid-template-rows: auto 1fr; gap: 12px; }
.port__hero-va .port__va-tag { font-family: 'JetBrains Mono', monospace; font-size: 9px; color: #c8a55c; letter-spacing: 3px; margin-bottom: 6px; }
.port__hero-va .port__va-h { font-family: 'Archivo Black', sans-serif; font-size: clamp(14px, 2.2vw, 28px); }
.port__va-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.port__va-tile { aspect-ratio: 1; background: linear-gradient(135deg, #2a5d3f, #1a3d2a); border-radius: 3px; }
.port__va-tile:nth-child(2) { background: linear-gradient(135deg, #c2935f, #7a5634); }
.port__va-tile:nth-child(3) { background: linear-gradient(135deg, #4d6a8e, #2a3f5a); }
.port__va-tile:nth-child(4) { background: linear-gradient(135deg, #8e5d4d, #5a3a2a); }

/* Lux Vidigal mock */
.port__mock--lux { background: linear-gradient(180deg, #1a1a2e 0%, #0a0a1a 100%); color: #f4f0d4; }
.port__body--lux { display: flex; }
.port__lux-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 8px; width: 100%; }
.port__lux-big { background: linear-gradient(135deg, #d4af37, #8a6f1f); padding: 14px; border-radius: 4px; color: #0a0a1a; display: flex; flex-direction: column; justify-content: flex-end; }
.port__lux-h { font-family: 'Archivo Black', sans-serif; font-size: clamp(18px, 2.6vw, 34px); letter-spacing: 0.05em; }
.port__lux-sub { font-size: 11px; margin-top: 4px; }
.port__lux-side { display: grid; grid-template-rows: 1fr 1fr; gap: 8px; }
.port__lux-tile { background: linear-gradient(135deg, #4a5d8e, #2a3f5a); border-radius: 4px; }
.port__lux-tile:nth-child(2) { background: linear-gradient(135deg, #5d8e4a, #3f5a2a); }

/* BuyInRio mock */
.port__mock--buy { background: linear-gradient(180deg, #0a3038 0%, #04181c 100%); color: #d4f0e8; }
.port__buy-h { font-family: 'Archivo Black', sans-serif; font-size: clamp(14px, 2vw, 26px); line-height: 1.1; margin-bottom: 14px; }
.port__buy-bars { display: flex; flex-direction: column; gap: 6px; font-family: 'JetBrains Mono', monospace; font-size: 11px; }
.port__buy-bars > div { display: grid; grid-template-columns: 1fr 80px; gap: 10px; align-items: center; }
.port__buy-bars > div span { display: block; height: 6px; background: #1fb47e; border-radius: 2px; width: 92%; }

/* ADV mock */
.port__mock--adv { background: linear-gradient(135deg, #f4f1ea 0%, #d4cfc2 100%); color: #0a0a0a; }
.port__adv-h { font-family: 'Archivo Black', sans-serif; font-size: clamp(22px, 3vw, 42px); letter-spacing: 0.15em; line-height: 1; }
.port__adv-h span { font-family: 'Inter', serif; font-style: italic; font-weight: 400; }
.port__adv-sub { font-size: 12px; color: #555; margin-top: 8px; margin-bottom: 18px; }
.port__adv-pins { display: flex; gap: 8px; flex-wrap: wrap; }
.port__adv-pins span { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 2px; padding: 4px 8px; background: #0a0a0a; color: #FFCD00; border-radius: 2px; }

/* Brazilkeys mock */
.port__mock--bk { background: linear-gradient(180deg, #02261e 0%, #011510 100%); color: #d4f0d4; }
.port__bk-h { font-family: 'Archivo Black', sans-serif; font-size: clamp(16px, 2.2vw, 28px); margin-bottom: 14px; }
.port__bk-map {
  position: relative; flex: 1;
  background: linear-gradient(135deg, #0d3a2a, #052015);
  border-radius: 4px;
  height: 100%; min-height: 140px;
  background-image:
    radial-gradient(circle at 60% 35%, rgba(31,180,126,0.25), transparent 30%),
    radial-gradient(circle at 38% 70%, rgba(212,175,55,0.18), transparent 30%);
}
.port__bk-pin {
  position: absolute;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  padding: 3px 6px;
  background: #FFCD00;
  color: #0a0a0a;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 1px;
  transform: translate(-50%, -50%);
}

.port__meta { padding: 22px 24px 24px; }
.port__title { font-family: 'Archivo Black', sans-serif; font-size: 22px; margin-bottom: 6px; }
.port__tag { color: #888; font-size: 13px; }

/* real-imagery layer for the archetype mocks */
.port__mock--img {
  background-color: #101010;
  background-image:
    linear-gradient(165deg, rgba(8,8,8,.78) 0%, rgba(8,8,8,.34) 52%, rgba(8,8,8,.68) 100%),
    var(--mock-img);
  background-size: cover;
  background-position: center;
  color: #f4f1ea;
}
.port__mock--img .port__sub { color: #d8d2c6; }
.port__mock--img .port__hero-cm .port__h { text-shadow: 0 2px 16px rgba(0,0,0,.6); }
.port__mock--img .port__strip span { background: rgba(10,10,10,.45); }
.port__mock--img .port__hero-va .port__va-tag { color: #e8c478; }
.port__mock--img.port__mock--adv { color: #f4f1ea; }
.port__mock--img .port__adv-sub { color: #d8d2c6; }
.port__mock--img .port__va-tile,
.port__mock--img .port__lux-tile {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
  border-radius: 4px;
}
.port__mock--img .port__buy-h,
.port__mock--img .port__bk-h,
.port__mock--img .port__adv-h { text-shadow: 0 2px 16px rgba(0,0,0,.6); }

/* ============================================================
   VS / COMPARISON
============================================================ */
.vs { background: #0a0a0a; }
.vs__accent {
  background: linear-gradient(120deg, #FFCD00 0%, #ffb800 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vs__table {
  margin-top: 64px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
}
.vs__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.vs__row:last-child { border-bottom: 0; }
.vs__row--head {
  background: #141414;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.vs__row--head > div {
  padding: 22px 18px;
  border-right: 1px solid rgba(255,255,255,0.08);
  color: #888;
}
.vs__row--head .vs__col-us { color: #FFCD00; background: rgba(255,205,0,0.06); border-right: 0; }
.vs__lbl {
  padding: 22px 24px;
  font-weight: 700;
  color: #c7c2b8;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.vs__cell {
  padding: 22px 18px;
  color: #999;
  font-size: 15px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.vs__cell:last-child { border-right: 0; }
.vs__cell--us {
  background: rgba(255,205,0,0.05);
  color: #FFCD00;
  font-weight: 700;
}
@media (max-width: 800px) {
  .vs__row { grid-template-columns: 1fr 1fr; font-size: 13px; }
  .vs__row > div:nth-child(2), .vs__row > div:nth-child(3) { display: none; }
  .vs__row--head > div:nth-child(4) { border-right: 0; }
}

/* ============================================================
   PRICING
============================================================ */
.price { background: #f4f1ea; color: #0a0a0a; }
.price .price__eyebrow { color: #c08800; }
.price__lede { font-size: clamp(17px, 1.6vw, 21px); color: #555; max-width: 780px; margin-bottom: 64px; }

.price__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 900px) { .price__grid { grid-template-columns: 1fr; } }

.price__card {
  background: #fff;
  border: 2px solid #0a0a0a;
  padding: 36px 30px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.price__card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(0,0,0,0.15); }

.price__card--featured {
  background: #0a0a0a;
  color: #f4f1ea;
  border-color: #FFCD00;
  transform: scale(1.04);
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}
.price__card--featured:hover { transform: scale(1.04) translateY(-6px); }
.price__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: #FFCD00; color: #0a0a0a;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 3px;
  padding: 6px 14px; border-radius: 999px;
  font-weight: 700;
}

.price__tier {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 4px;
  margin-bottom: 14px;
  color: #c08800;
}
.price__card--featured .price__tier { color: #FFCD00; }

.price__amt {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  margin-bottom: 8px;
}
.price__pay {
  color: #888;
  font-size: 13px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 1px;
  margin-bottom: 28px;
}
.price__card--featured .price__pay { color: #aaa; }

.price__list {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.price__list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 14px;
  padding-left: 24px;
  position: relative;
}
.price__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #FFCD00;
  font-weight: 700;
}
.price__card--featured .price__list li {
  border-bottom-color: rgba(255,255,255,0.1);
  color: #c7c2b8;
}
.price__card--featured .price__list li strong { color: #fff; }

/* ============================================================
   CTA
============================================================ */
.cta { background: #FFCD00; color: #0a0a0a; }
.cta__wrap { text-align: center; max-width: 780px; }
.cta__h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 6.5vw, 90px);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.cta__sub {
  font-size: clamp(17px, 1.8vw, 22px);
  margin-bottom: 48px;
}
.cta__form {
  display: grid;
  grid-template-columns: 1.4fr 1.4fr auto;
  gap: 12px;
  background: #0a0a0a;
  padding: 12px;
  border-radius: 4px;
  max-width: 780px;
  margin: 0 auto;
}
@media (max-width: 720px) { .cta__form { grid-template-columns: 1fr; } }
.cta__form input {
  background: #141414;
  color: #fff;
  border: 1px solid #2a2a2a;
  padding: 16px 18px;
  font: inherit;
  font-size: 16px;
  border-radius: 3px;
  outline: none;
}
.cta__form input:focus { border-color: #FFCD00; }
.cta__form input::placeholder { color: #777; }
.cta__form .btn { border-radius: 3px; }
.cta__small {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: 24px;
  opacity: 0.7;
}

/* ============================================================
   FOOTER
============================================================ */
.foot {
  background: #050505;
  color: #888;
  padding: 80px 24px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.foot__wrap { max-width: 1200px; margin: 0 auto; }
.foot__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 800px) { .foot__top { grid-template-columns: 1fr; gap: 32px; } }
.foot__brand { max-width: 360px; }
.foot__logo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  line-height: 1;
  color: #f4f1ea;
  margin-bottom: 16px;
}
.foot__logo span { color: #FFCD00; }
.foot__brand p { font-size: 15px; line-height: 1.55; }

.foot__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 640px) { .foot__cols { grid-template-columns: repeat(2, 1fr); } }
.foot__h {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: #FFCD00;
  margin-bottom: 18px;
}
.foot__col a {
  display: block;
  font-size: 15px;
  color: #c7c2b8;
  padding: 6px 0;
  transition: color .15s;
}
.foot__col a:hover { color: #FFCD00; }

.foot__legal {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding-top: 32px;
  font-size: 13px;
}
.foot__legal a { color: #FFCD00; text-decoration: none; }
.foot__legal a:hover { text-decoration: underline; }

/* ============================================================
   SUB-PAGE LAYOUTS
============================================================ */
.page-hero {
  background: #0a0a0a;
  padding: 120px 24px 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero__wrap { max-width: 1200px; margin: 0 auto; }
.page-hero__crumbs {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: #888;
  margin-bottom: 22px;
}
.page-hero__crumbs a { color: #FFCD00; }
.page-hero__crumbs a:hover { text-decoration: underline; }
.page-hero__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 4px;
  color: #FFCD00;
  margin-bottom: 18px;
}
.page-hero__h1 {
  font-family: 'Archivo Black', Impact, sans-serif;
  font-size: clamp(42px, 6.5vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 1000px;
}
.page-hero__lede {
  font-size: clamp(18px, 1.7vw, 22px);
  color: #c7c2b8;
  max-width: 780px;
  line-height: 1.55;
}
.page-hero__lede strong { color: #fff; }

.page-body { background: #0a0a0a; padding: 80px 24px 120px; }
.page-body__wrap { max-width: 1100px; margin: 0 auto; }
.page-body__wrap--narrow { max-width: 780px; margin: 0 auto; }

.page-body h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 64px 0 20px;
  color: #f4f1ea;
}
.page-body h2:first-child { margin-top: 0; }
.page-body h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  margin: 40px 0 12px;
  color: #FFCD00;
}
.page-body p {
  font-size: 17px;
  line-height: 1.7;
  color: #c7c2b8;
  margin-bottom: 18px;
  max-width: 780px;
}
.page-body p strong { color: #fff; }
.page-body ul, .page-body ol {
  margin: 18px 0 24px;
  padding-left: 0;
  list-style: none;
  max-width: 780px;
}
.page-body li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: #c7c2b8;
  line-height: 1.6;
  font-size: 16px;
}
.page-body li::before {
  content: '→';
  position: absolute;
  left: 0; top: 8px;
  color: #FFCD00;
  font-weight: 700;
}
.page-body a { color: #FFCD00; }
.page-body a:hover { text-decoration: underline; }

/* FAQ accordion */
.faq__item {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}
.faq__item:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq__q {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
  width: 100%;
  text-align: left;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
  color: #f4f1ea;
  cursor: pointer;
  padding: 0;
}
.faq__q::after {
  content: '+';
  color: #FFCD00;
  font-size: 28px;
  line-height: 1;
  flex: 0 0 auto;
  transition: transform .2s ease;
}
.faq__item.open .faq__q::after { content: '−'; }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq__item.open .faq__a { max-height: 800px; padding-top: 18px; }
.faq__a p { color: #c7c2b8; font-size: 16px; line-height: 1.65; margin-bottom: 12px; }

/* Archetype detail sections (used on /work/) */
.arch {
  padding: 80px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  scroll-margin-top: 100px;
}
.arch:first-of-type { border-top: 0; }
.arch__wrap { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center; }
@media (max-width: 800px) { .arch__wrap { grid-template-columns: 1fr; gap: 32px; } }
.arch__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 3px;
  color: #FFCD00;
  margin-bottom: 14px;
}
.arch__h {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.arch__lede { color: #c7c2b8; font-size: 17px; line-height: 1.6; margin-bottom: 20px; }
.arch__list { list-style: none; }
.arch__list li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #c7c2b8;
  font-size: 15px;
}
.arch__list li::before {
  content: '✓';
  position: absolute; left: 0; top: 8px;
  color: #FFCD00;
  font-weight: 700;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 36px;
  border-radius: 6px;
}
.contact-form label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: #FFCD00;
  margin-bottom: 8px;
  margin-top: 22px;
}
.contact-form label:first-child { margin-top: 0; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  background: #0a0a0a;
  color: #f4f1ea;
  border: 1px solid #2a2a2a;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  border-radius: 4px;
  outline: none;
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: #FFCD00; }
.contact-form button { margin-top: 28px; width: 100%; }
.contact-side h3 { font-family: 'Archivo Black', sans-serif; font-size: 22px; margin-bottom: 14px; color: #FFCD00; }
.contact-side p { color: #c7c2b8; margin-bottom: 18px; line-height: 1.55; }
.contact-side a { color: #FFCD00; }

/* ============================================================
   REVEAL ON SCROLL
============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }
.fade-up-delay-4 { transition-delay: .4s; }

@media (prefers-reduced-motion: no-preference) {
  /* keep motion as designed */
}

/* ============================================================
   V3 LAYER — tech-feel upgrade (homepage)
============================================================ */

/* --- Scroll progress bar --- */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  z-index: 200;
  background: linear-gradient(90deg, #ffb800, #FFCD00);
  box-shadow: 0 0 12px rgba(255,205,0,.7);
  pointer-events: none;
}

/* --- CONDEMNED stamp --- */
.condemned {
  position: absolute;
  z-index: 3;
  top: 18%;
  left: 50%;
  font-family: 'Archivo Black', Impact, sans-serif;
  font-size: clamp(40px, 9vw, 130px);
  letter-spacing: 0.06em;
  color: #d40000;
  border: 6px solid #d40000;
  border-radius: 8px;
  padding: 4px 28px;
  transform: translateX(-50%) rotate(-9deg) scale(3);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  text-shadow: 0 0 1px #d40000;
}
.condemned.stamped { animation: stampDown .42s cubic-bezier(.2,.9,.3,1.3) forwards; }
@keyframes stampDown {
  0%   { opacity: 0; transform: translateX(-50%) rotate(-9deg) scale(3); filter: blur(6px); }
  70%  { opacity: 1; transform: translateX(-50%) rotate(-9deg) scale(.96); filter: blur(0); }
  100% { opacity: .92; transform: translateX(-50%) rotate(-9deg) scale(1); }
}

/* --- Shockwave rings at impact --- */
.shockwave {
  position: absolute;
  z-index: 7;
  width: 10px; height: 10px;
  pointer-events: none;
  opacity: 0;
}
.shockwave::before, .shockwave::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 10px; height: 10px;
  border-radius: 50%;
  transform: translate(-50%,-50%) scale(0);
  opacity: 0;
}
.shockwave::before { border: 4px solid rgba(255,205,0,.9); }
.shockwave::after  { border: 2px solid rgba(255,255,255,.8); }
.shockwave.fire { opacity: 1; }
.shockwave.fire::before { animation: shockRing .7s cubic-bezier(.1,.6,.3,1) forwards; }
.shockwave.fire::after  { animation: shockRing .9s cubic-bezier(.1,.6,.3,1) .08s forwards; }
@keyframes shockRing {
  0%   { transform: translate(-50%,-50%) scale(0); opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(60); opacity: 0; }
}

/* --- CRT treatment on the 1998 site --- */
.oldsite::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(0,0,0,.16) 0 2px, transparent 2px 4px),
    radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,.45) 100%);
}
.oldsite { animation: crtFlicker 3.2s steps(1) infinite; }
@keyframes crtFlicker {
  0%, 100% { filter: brightness(1); }
  7%  { filter: brightness(1.06); }
  8%  { filter: brightness(.97); }
  9%  { filter: brightness(1); }
  54% { filter: brightness(1.04); }
  55% { filter: brightness(1); }
}
.oldsite.shake { animation: shake 0.18s linear infinite; }

/* --- Reveal: blueprint grid + perspective floor --- */
.reveal__inner { position: relative; z-index: 2; }
.mascot { z-index: 2; }
.reveal__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,205,0,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,205,0,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 45%, #000 30%, transparent 75%);
  mask-image: radial-gradient(120% 90% at 50% 45%, #000 30%, transparent 75%);
  opacity: 0;
}
.reveal.visible .reveal__grid { opacity: 1; transition: opacity 1.4s ease .6s; }
/* perspective floor — transform-only animation (cheap on the compositor) */
.reveal__floor {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 42%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  perspective: 640px;
  opacity: 0;
  -webkit-mask-image: linear-gradient(transparent 0%, #000 60%);
  mask-image: linear-gradient(transparent 0%, #000 60%);
}
.reveal.visible .reveal__floor { opacity: 1; transition: opacity 1.4s ease .8s; }
.reveal__floor::after {
  content: '';
  position: absolute;
  left: -25%; right: -25%; top: -40%; bottom: -70%;
  background:
    linear-gradient(rgba(255,205,0,.16) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255,205,0,.12) 2px, transparent 2px);
  background-size: 90px 56px;
  transform: rotateX(62deg) translateY(0);
  will-change: transform;
  animation: floorScroll 2.8s linear infinite;
}
@keyframes floorScroll { to { transform: rotateX(62deg) translateY(56px); } }

.reveal__scanline {
  position: absolute;
  left: 0; right: 0;
  top: -140px;
  height: 140px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(255,205,0,.07), transparent);
  opacity: 0;
  will-change: transform;
}
.reveal.visible .reveal__scanline { opacity: 1; animation: scanSweep 7s linear infinite 1.2s; }
@keyframes scanSweep { 0% { transform: translateY(0); } 100% { transform: translateY(130vh); } }

/* --- HUD frame brackets --- */
.hud {
  position: absolute;
  top: 86px; left: 22px; right: 22px; bottom: 22px;
  z-index: 3;
  pointer-events: none;
}
.hud i {
  position: absolute;
  width: 30px; height: 30px;
  border: 2px solid rgba(255,205,0,.55);
  opacity: 0;
  transform: scale(1.6);
}
.hud i:nth-child(1) { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hud i:nth-child(2) { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.hud i:nth-child(3) { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.hud i:nth-child(4) { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.reveal.visible .hud i {
  opacity: 1;
  transform: scale(1);
  transition: opacity .5s ease 1s, transform .5s cubic-bezier(.2,.7,.3,1.2) 1s;
}
.hud__tag {
  position: absolute;
  top: 6px; left: 44px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255,205,0,.6);
  opacity: 0;
}
.reveal.visible .hud__tag { opacity: 1; transition: opacity .6s ease 1.4s; }
@media (max-width: 640px) { .hud { display: none; } }

/* --- Build-log terminal --- */
.bootlog {
  position: absolute;
  left: 26px; bottom: 26px;
  z-index: 3;
  width: 310px;
  background: rgba(8,8,8,.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,205,0,.28);
  border-radius: 8px;
  overflow: hidden;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  opacity: 0;
  transform: translateY(16px);
  box-shadow: 0 24px 48px rgba(0,0,0,.5);
}
.reveal.visible .bootlog {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s ease .3s, transform .5s ease .3s;
}
.bootlog__bar {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.bootlog__bar span { width: 9px; height: 9px; border-radius: 50%; background: #333; }
.bootlog__bar span:nth-child(1) { background: #ff5f57; }
.bootlog__bar span:nth-child(2) { background: #febc2e; }
.bootlog__bar span:nth-child(3) { background: #28c840; }
.bootlog__bar em {
  font-style: normal;
  margin-left: 8px;
  color: #777;
  letter-spacing: 1px;
  font-size: 10px;
}
.bootlog__body { padding: 12px 14px 14px; min-height: 148px; font-size: 10.5px; }
.bl__line {
  display: flex; align-items: baseline; gap: 8px;
  color: #9a958a;
  line-height: 1.9;
  white-space: nowrap;
  overflow: hidden;
}
.bl__line b { margin-left: auto; color: #FFCD00; font-weight: 700; }
.bl__line.cmd { color: #f4f1ea; }
.bl__line.cmd::before { content: '$'; color: #1fb47e; margin-right: 2px; }
.bl__line.pass b { color: #1fb47e; }
.bl__line.live { color: #FFCD00; }
.bl__line.live b { color: #1fb47e; }
.bl__cursor {
  display: inline-block;
  width: 7px; height: 13px;
  background: #FFCD00;
  vertical-align: -2px;
  animation: cursorBlink .9s steps(2) infinite;
}
@keyframes cursorBlink { 50% { opacity: 0; } }
@media (max-width: 1180px) { .bootlog { display: none; } }
@media (max-height: 780px) { .reveal__scroll { display: none; } }

/* --- Metrics chips under the hero CTA --- */
.reveal__metrics {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin-top: 30px;
  opacity: 0;
  animation: fadeUp .8s ease 2.9s forwards;
}
.m-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: #8a857a;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  padding: 8px 13px;
  border-radius: 4px;
}
.m-chip b { color: #f4f1ea; font-weight: 700; }
.m-chip i {
  width: 6px; height: 6px; border-radius: 50%;
  background: #1fb47e;
  box-shadow: 0 0 8px rgba(31,180,126,.8);
  animation: cursorBlink 1.6s steps(2) infinite;
}

/* --- Ticker strip --- */
.ticker {
  background: #0a0a0a;
  border-top: 2px solid #1c1c1c;
  border-bottom: 2px solid #1c1c1c;
  padding: 20px 0;
  overflow: hidden;
}
.ticker__track {
  display: inline-flex;
  white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track span {
  font-family: 'Archivo Black', Impact, sans-serif;
  font-size: clamp(20px, 2.6vw, 30px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,205,0,.75);
}
@keyframes tickerScroll { to { transform: translateX(-50%); } }

/* --- Headline glitch pop --- */
.reveal__gradient {
  animation: fadeUp .9s ease 1.8s forwards, glitchPop .5s steps(1) 2.45s;
}
@keyframes glitchPop {
  0%  { text-shadow: 4px 0 #ff3355, -4px 0 #22ddff; transform: translateX(-3px) skewX(-4deg); }
  25% { text-shadow: -4px 0 #ff3355, 4px 0 #22ddff; transform: translateX(3px) skewX(3deg); }
  50% { text-shadow: 3px 2px #ff3355, -3px -2px #22ddff; transform: translateX(-2px); }
  75% { text-shadow: -2px 0 #ff3355, 2px 0 #22ddff; transform: translateX(1px); }
  100% { text-shadow: none; transform: none; }
}

/* --- Eyebrows get a terminal cursor --- */
.prob__eyebrow::after, .how__eyebrow::after, .port__eyebrow::after,
.vs__eyebrow::after, .price__eyebrow::after, .where__eyebrow::after {
  content: '▌';
  margin-left: 6px;
  animation: cursorBlink 1.1s steps(2) infinite;
}

/* --- Diagnosis section: faint engineering grid + hover state --- */
.prob {
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
}
.prob__item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: #FFCD00;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s ease;
}
.prob__item:nth-child(even)::before { left: -1px; }
.prob__item:hover { background: rgba(255,205,0,.025); }
.prob__item:hover::before { transform: scaleY(1); }
.prob__item:hover .prob__num { color: #ff3355; }
.prob__num { transition: color .25s ease; }

/* --- Process: line draw + day-chip slam per step --- */
.how__step { position: relative; }
.how__step::before {
  content: '';
  position: absolute;
  top: -2px; left: 0;
  height: 2px;
  width: 0;
  background: #FFCD00;
  z-index: 1;
}
.how__step.in::before { width: 100%; transition: width .9s cubic-bezier(.2,.7,.3,1) .15s; }
/* keep heading + body together in the right column (chip owns the left) */
.how__step { row-gap: 4px; }
.how__step h3, .how__step p { grid-column: 2; }
.how__step .how__d { grid-row: 1 / span 2; }
@media (max-width: 720px) {
  .how__step h3, .how__step p { grid-column: 1; }
  .how__step .how__d { grid-row: auto; }
}
.how__step.in .how__d { animation: chipSlam .5s cubic-bezier(.2,.7,.3,1.35) .25s backwards; }
@keyframes chipSlam {
  0%   { transform: translateY(-16px) scale(1.15); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* --- Portfolio cards: shine sweep + living mockups --- */
.port__shot { position: relative; }
.port__shot::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 42%, rgba(255,255,255,.16) 50%, transparent 58%);
  transform: translateX(-130%) skewX(-8deg);
}
.port__card:hover .port__shot::after { animation: shineSweep .8s ease forwards; }
@keyframes shineSweep { to { transform: translateX(130%) skewX(-8deg); } }
.port__mock { transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.port__card:hover .port__mock { transform: scale(1.035); }

.port__buy-bars > div span { transform-origin: left center; }
.port__card:hover .port__buy-bars > div:nth-child(1) span { animation: barGrow .7s cubic-bezier(.2,.7,.3,1) both; }
.port__card:hover .port__buy-bars > div:nth-child(2) span { animation: barGrow .7s cubic-bezier(.2,.7,.3,1) .1s both; }
.port__card:hover .port__buy-bars > div:nth-child(3) span { animation: barGrow .7s cubic-bezier(.2,.7,.3,1) .2s both; }
.port__card:hover .port__buy-bars > div:nth-child(4) span { animation: barGrow .7s cubic-bezier(.2,.7,.3,1) .3s both; }
@keyframes barGrow { from { transform: scaleX(.15); } to { transform: scaleX(1); } }

.port__card:hover .port__bk-pin { animation: pinPop .45s cubic-bezier(.2,.7,.3,1.5) both; }
.port__card:hover .port__bk-pin:nth-child(2) { animation-delay: .08s; }
.port__card:hover .port__bk-pin:nth-child(3) { animation-delay: .16s; }
.port__card:hover .port__bk-pin:nth-child(4) { animation-delay: .24s; }
.port__card:hover .port__bk-pin:nth-child(5) { animation-delay: .32s; }
@keyframes pinPop {
  0% { transform: translate(-50%,-50%) scale(0); }
  100% { transform: translate(-50%,-50%) scale(1); }
}

.port__card:hover .port__va-tile { animation: tileGlow 1.1s ease both; }
.port__card:hover .port__va-tile:nth-child(2) { animation-delay: .1s; }
.port__card:hover .port__va-tile:nth-child(3) { animation-delay: .2s; }
.port__card:hover .port__va-tile:nth-child(4) { animation-delay: .3s; }
@keyframes tileGlow {
  0%, 100% { filter: brightness(1); }
  40% { filter: brightness(1.5); }
}

.port__card:hover .port__strip span { animation: cursorBlink 1s steps(2) 1; }

/* --- Comparison: our column glows (opacity-only pulse) --- */
.vs__cell--us, .vs__row--head .vs__col-us { position: relative; }
.vs__cell--us::after, .vs__row--head .vs__col-us::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(60% 80% at 50% 50%, rgba(255,205,0,.12), transparent);
  opacity: 0;
  animation: usGlow 3s ease-in-out infinite;
}
@keyframes usGlow { 50% { opacity: 1; } }

/* --- Pricing: rotating energy halo on the featured card --- */
@property --wbang {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.price__card--featured::before {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 6px;
  padding: 7px;
  background: conic-gradient(from var(--wbang), #FFCD00, #1fb47e 30%, #FFCD00 50%, #d4af37 70%, #FFCD00);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  filter: blur(5px);
  opacity: .75;
  animation: haloSpin 4s linear infinite;
  pointer-events: none;
}
@keyframes haloSpin { to { --wbang: 360deg; } }

/* --- Primary button shine sweep --- */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 36%;
  left: -60%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg);
}
.btn--primary:hover::after { animation: btnShine .65s ease forwards; }
@keyframes btnShine { to { left: 130%; } }

/* --- Hazard stripes crawl (transform-only: background-position loops pin the renderer) --- */
.hazard::before { animation: hazardSlide 16s linear infinite; }
@keyframes hazardSlide { to { transform: translateX(62.23px); } }

/* ============================================================
   V4 PREMIUM LAYER
============================================================ */

/* --- Film grain over the whole page (SVG turbulence, fixed, very faint, static) --- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
}

/* --- Aurora drift behind the hero reveal --- */
.reveal__aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
}
.reveal.visible .reveal__aurora { opacity: 1; transition: opacity 2.4s ease .8s; }
.reveal__aurora::before, .reveal__aurora::after {
  content: '';
  position: absolute;
  width: 58vw; height: 58vw;
  border-radius: 50%;
}
.reveal__aurora::before {
  left: -14%; top: -22%;
  background: radial-gradient(circle, rgba(31,180,126,.15) 0%, rgba(31,180,126,.07) 34%, transparent 68%);
  animation: auroraDriftA 16s ease-in-out infinite alternate;
}
.reveal__aurora::after {
  right: -16%; bottom: -28%;
  background: radial-gradient(circle, rgba(212,175,55,.12) 0%, rgba(212,175,55,.05) 34%, transparent 68%);
  animation: auroraDriftB 21s ease-in-out infinite alternate;
}
@keyframes auroraDriftA { to { transform: translate(12vw, 9vh) scale(1.18); } }
@keyframes auroraDriftB { to { transform: translate(-10vw, -8vh) scale(1.22); } }

/* --- THE REEL — cinematic industry poster marquee --- */
.reel {
  background: #0a0a0a;
  padding: 110px 0 96px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.reel__head { max-width: 1200px; margin: 0 auto 52px; padding: 0 24px; }
.reel__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 4px;
  color: #FFCD00;
  margin-bottom: 20px;
}
.reel__eyebrow::after { content: '▌'; margin-left: 6px; animation: cursorBlink 1.1s steps(2) infinite; }
.reel__h2 {
  font-family: 'Archivo Black', Impact, sans-serif;
  font-size: clamp(36px, 5.5vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.reel__accent { color: #FFCD00; }
.reel__lede { color: #c7c2b8; font-size: clamp(16px, 1.5vw, 19px); max-width: 760px; }
.reel__rows {
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
/* edge fades as cheap overlays instead of masking the moving content */
.reel__rows::before, .reel__rows::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(40px, 7vw, 140px);
  z-index: 3;
  pointer-events: none;
}
.reel__rows::before { left: 0; background: linear-gradient(90deg, #0a0a0a, rgba(10,10,10,0)); }
.reel__rows::after { right: 0; background: linear-gradient(270deg, #0a0a0a, rgba(10,10,10,0)); }
.reel__row {
  display: flex; gap: 18px;
  width: max-content;
  animation: reelScroll 90s linear infinite;
}
.reel__row--rev { animation-direction: reverse; animation-duration: 104s; }
.reel__row:hover { animation-play-state: paused; }
@keyframes reelScroll { to { transform: translateX(-50%); } }
.reel__card {
  position: relative;
  flex: none;
  width: clamp(240px, 24vw, 320px);
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.09);
  background: #141414;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.reel__card:hover {
  border-color: rgba(255,205,0,0.6);
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(0,0,0,0.55);
  z-index: 2;
}
.reel__card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.reel__card:hover img { transform: scale(1.06); }
.reel__card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,8,0) 40%, rgba(8,8,8,.82) 100%);
  pointer-events: none;
}
.reel__name {
  position: absolute;
  left: 16px; bottom: 13px; right: 16px;
  z-index: 1;
  font-family: 'Archivo Black', Impact, sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f4f1ea;
  text-shadow: 0 2px 10px rgba(0,0,0,.7);
}
.reel__cta-word {
  position: absolute;
  right: 14px; bottom: 14px;
  z-index: 1;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: #FFCD00;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity .25s ease, transform .25s ease;
}
.reel__card:hover .reel__cta-word { opacity: 1; transform: translateX(0); }
.reel__card:hover .reel__name { right: 86px; }
.reel__foot { text-align: center; margin-top: 48px; padding: 0 24px; }

/* --- Directory headings (replaces inline styles) --- */
.where__h2 {
  font-family: 'Archivo Black', Impact, sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  text-transform: uppercase;
  color: #f4f1ea;
  margin-bottom: 14px;
}

/* --- Homepage FAQ --- */
.hfaq {
  background: #0a0a0a;
  padding: 120px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hfaq__wrap { max-width: 900px; margin: 0 auto; }
.hfaq__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 4px;
  color: #FFCD00;
  margin-bottom: 20px;
}
.hfaq__eyebrow::after { content: '▌'; margin-left: 6px; animation: cursorBlink 1.1s steps(2) infinite; }
.hfaq__h2 {
  font-family: 'Archivo Black', Impact, sans-serif;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.hfaq__h2 span { color: #FFCD00; }

/* --- Stat band: tabular numerals + texture --- */
.band__n { font-variant-numeric: tabular-nums; }
.band {
  background-image:
    repeating-linear-gradient(-45deg, rgba(0,0,0,0.035) 0 18px, transparent 18px 36px);
}

/* --- Final CTA: depth + ghost word --- */
.cta { position: relative; overflow: hidden; }
.cta::before {
  content: 'BULLDOZE';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Archivo Black', Impact, sans-serif;
  font-size: clamp(120px, 22vw, 340px);
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(10,10,10,0.07);
  pointer-events: none;
  white-space: nowrap;
}
.cta__wrap { position: relative; z-index: 1; margin: 0 auto; }

/* Reduce marquee + grain churn on small screens */
@media (max-width: 640px) {
  .reel__row { animation-duration: 56s; }
  .reel__row--rev { animation-duration: 64s; }
  body::after { animation: none; }
}
