/* ============================================================
   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; }
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; }

/* ============================================================
   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; }
}
.dozer__tracks { transform-origin: center; animation: spin 0.4s linear infinite; }
@keyframes spin {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-8px); }
}
.dozer__smoke { animation: smoke 1.2s ease-in-out infinite alternate; transform-origin: 400px 50px; }
@keyframes smoke {
  0% { opacity: .4; transform: translate(0,0) scale(1); }
  100% { opacity: 0.9; transform: translate(-8px,-10px) scale(1.2); }
}

/* --- 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__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; }

/* ============================================================
   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__brand { max-width: 460px; margin-bottom: 56px; }
.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(2, 200px);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.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; }

/* ============================================================
   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 */
}
