:root {
  --cream: #f7f5f1;
  --hot-red: #ff2417;
  --hero-scroll: 0;
  --cursor-x: 0;
  --cursor-y: 0;
}

/* First fold: split between passive consumption and intentional creation. */
.nav {
  position: absolute;
  height: 88px;
}

.nav,
.hero-layout {
  width: min(1360px, calc(100% - 36px));
}

.nav-cta {
  background: var(--red);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .25s ease, box-shadow .25s ease;
}

.nav-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}

.nav-cta span { color: #fff; }

.hero {
  display: block;
  min-height: max(800px, 100svh);
  padding: 0;
  background: linear-gradient(90deg, var(--cream) 0 61%, var(--black) 61% 100%);
}

.hero::after {
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(145deg, #15171c 0%, #07080b 62%);
  transform: none;
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-grid {
  opacity: .9;
  mask-image: linear-gradient(to right, #000 0 60%, transparent 80%);
}

.hero-layout {
  position: relative;
  top: auto;
  min-height: max(800px, 100svh);
  padding: 108px 0 62px;
  grid-template-columns: 1.04fr .96fr;
  gap: 12px;
}

.hero-copy {
  position: relative;
  z-index: 12;
}

.hero-copy.visible {
  opacity: calc(1 - var(--hero-scroll) * .28);
  filter: blur(calc(var(--hero-scroll) * .8px));
  transform:
    translate3d(calc(var(--hero-scroll) * -24px), calc(var(--hero-scroll) * -38px), 0)
    scale(calc(1 - var(--hero-scroll) * .018));
}

.pretitle {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  margin-bottom: 19px;
  background: #fff;
  border: 1px solid #d7d5d1;
  box-shadow: 4px 4px 0 #dedbd5;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(64px, 6.7vw, 102px);
  line-height: .89;
}

.hero h1 strong {
  color: var(--red);
  font-weight: 400;
}

.hero h1 em {
  padding: .025em .13em .06em;
  white-space: nowrap;
}

.hero-sub {
  max-width: 540px;
  margin: 22px 0 25px;
  font-size: 16px;
  line-height: 1.65;
}

.hero-conversion {
  align-items: stretch;
}

.hero-conversion .cta {
  min-height: 70px;
  padding-inline: 24px 17px;
  font-size: 11px;
}

.hero-cta-note {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 190px;
  padding-left: 18px;
  border-left: 1px solid #bbb8b2;
  color: var(--ink);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.35;
}

.hero-cta-note i {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-style: normal;
}

.hero-cta-note small {
  color: #777a81;
  font-size: 7px;
}

.hero-trust {
  max-width: 690px;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid #cfcdc8;
  border-bottom: 1px solid #cfcdc8;
}

.hero-trust > div {
  flex: 1;
  padding: 16px 14px 16px 0;
}

.hero-trust > div + div {
  padding-left: 17px;
  border-left: 1px solid #cfcdc8;
}

.hero-trust > div > span { color: var(--red); }

.hero-stage {
  min-height: 720px;
  transform:
    translate3d(
      calc(var(--cursor-x) * 10px),
      calc(var(--parallax-y, 0px) + var(--hero-scroll) * -24px + var(--cursor-y) * 7px),
      0
    );
  perspective: 1200px;
  transition: transform .18s linear;
}

.portal-rings {
  z-index: 2;
  width: 650px;
  height: 650px;
  left: 49%;
  opacity: calc(.78 + var(--hero-scroll) * .22);
  transform:
    translate(-47%, -50%)
    rotate(calc(var(--hero-scroll) * 38deg))
    scale(calc(1 + var(--hero-scroll) * .16));
  filter: drop-shadow(0 0 34px rgba(231, 0, 20, .23));
}

.avatar-halo {
  z-index: 1;
  width: 520px;
  height: 640px;
  left: 52%;
  opacity: calc(.62 + var(--hero-scroll) * .3);
  background:
    radial-gradient(ellipse at 50% 46%, rgba(255, 29, 48, .86) 0%, rgba(231, 0, 20, .34) 34%, transparent 68%);
  filter: blur(12px);
  transform:
    translate(-50%, -50%)
    scale(calc(1 + var(--hero-scroll) * .22));
}

.portrait-frame {
  --portrait-rx: 0deg;
  --portrait-ry: 0deg;
  position: absolute;
  z-index: 6;
  left: 52%;
  top: 49%;
  width: 540px;
  height: 680px;
  overflow: visible;
  transform:
    translate(-50%, -50%)
    translate3d(0, calc(var(--hero-scroll) * -56px), 0)
    perspective(1200px)
    rotateX(var(--portrait-rx))
    rotateY(var(--portrait-ry))
    rotateZ(calc(var(--hero-scroll) * -1.8deg))
    scale(calc(1 + var(--hero-scroll) * .12));
  transform-style: preserve-3d;
  clip-path: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: transform .18s ease-out;
  pointer-events: none;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 11% 1% 4%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 36, 23, .7), rgba(231, 0, 20, .18) 42%, transparent 69%);
  filter: blur(22px);
  transform: scale(calc(.92 + var(--hero-scroll) * .2));
  pointer-events: none;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 14%;
  right: 14%;
  bottom: 2%;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 30, 48, .78);
  filter: blur(22px);
  transform: perspective(260px) rotateX(72deg) scale(calc(1 + var(--hero-scroll) * .35));
}

.portrait-frame .guga-avatar {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -55px;
  width: 700px;
  height: auto;
  max-width: none;
  transform: translateX(-50%);
  filter:
    drop-shadow(0 34px 30px rgba(0, 0, 0, .68))
    drop-shadow(0 0 22px rgba(255, 29, 48, .22));
  animation: portraitBreath 8s ease-in-out infinite;
}

.photo-scan {
  position: absolute;
  z-index: 4;
  inset: 7% -8% 4%;
  pointer-events: none;
  opacity: .55;
  background: linear-gradient(180deg, transparent 0 46%, rgba(255, 255, 255, .8) 49%, rgba(255, 35, 52, .9) 50%, transparent 54%) 0 -700px / 100% 700px no-repeat;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 48%, transparent 73%);
  mask-image: radial-gradient(ellipse at center, #000 0 48%, transparent 73%);
  mix-blend-mode: screen;
  animation: photoScan 5.5s linear infinite;
}

.hero-depth-grid {
  position: absolute;
  z-index: 0;
  left: 4%;
  right: -24%;
  bottom: -12%;
  height: 58%;
  background-image:
    linear-gradient(rgba(255, 34, 56, .22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 34, 56, .22) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 23%, transparent 72%);
  mask-image: radial-gradient(ellipse at center, #000 0 23%, transparent 72%);
  transform:
    perspective(540px)
    rotateX(67deg)
    translateY(calc(22% + var(--hero-scroll) * 24%))
    scale(calc(1 + var(--hero-scroll) * .28));
  transform-origin: center bottom;
  opacity: calc(.42 + var(--hero-scroll) * .35);
}

.hero-energy-beam {
  position: absolute;
  z-index: 1;
  left: 51%;
  top: -11%;
  width: 3px;
  height: 122%;
  background: linear-gradient(180deg, transparent, var(--red) 19%, var(--red) 82%, transparent);
  box-shadow: 0 0 12px var(--red), 0 0 45px rgba(231, 0, 20, .58);
  opacity: calc(.28 + var(--hero-scroll) * .56);
  transform: translateX(-50%) scaleY(calc(.82 + var(--hero-scroll) * .18));
  transform-origin: center;
}

.hero-energy-beam::before,
.hero-energy-beam::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 140px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  box-shadow: 0 0 18px var(--red);
  transform: translateX(-50%);
}

.hero-energy-beam::before { top: 31%; }
.hero-energy-beam::after { bottom: 23%; }

.avatar-floor {
  position: absolute;
  z-index: 3;
  left: 51%;
  bottom: 5%;
  width: 510px;
  height: 150px;
  border: 2px solid rgba(255, 38, 53, .7);
  border-radius: 50%;
  box-shadow:
    0 0 0 22px rgba(255, 36, 23, .045),
    0 0 0 44px rgba(255, 36, 23, .025),
    inset 0 0 38px rgba(231, 0, 20, .32),
    0 0 55px rgba(231, 0, 20, .24);
  transform:
    translateX(-50%)
    perspective(360px)
    rotateX(70deg)
    scale(calc(.94 + var(--hero-scroll) * .32));
  opacity: calc(.6 + var(--hero-scroll) * .35);
}

.hero-scroll-status {
  position: absolute;
  z-index: 10;
  left: -11%;
  top: 35%;
  width: 205px;
  padding: 13px 14px 15px;
  background: rgba(8, 9, 12, .84);
  border: 1px solid rgba(255, 255, 255, .14);
  border-left: 4px solid var(--red);
  color: #fff;
  box-shadow: 9px 10px 0 rgba(231, 0, 20, .16), 0 18px 45px rgba(0, 0, 0, .28);
  backdrop-filter: blur(12px);
  transform: translate3d(calc(var(--hero-scroll) * -28px), calc(var(--hero-scroll) * 22px), 0);
}

.hero-scroll-status span,
.hero-scroll-status b { display: block; }
.hero-scroll-status span { color: var(--red2); font-size: 7px; font-weight: 900; letter-spacing: .16em; }
.hero-scroll-status b { margin: 6px 0 10px; font: 19px/1 var(--display); letter-spacing: .04em; }
.hero-scroll-status i { display: block; height: 3px; overflow: hidden; background: #292a30; }
.hero-scroll-status em {
  display: block;
  width: calc(8% + var(--hero-scroll) * 92%);
  height: 100%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
}

.hero-ghost-word {
  position: absolute;
  z-index: 2;
  font: 104px/.8 var(--display);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -.02em;
}

.ghost-consume {
  left: -5%;
  top: 11%;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .18);
  transform:
    translate3d(calc(var(--cursor-x) * -11px), calc(var(--hero-scroll) * -42px), 0)
    rotate(calc(-4deg - var(--hero-scroll) * 4deg));
}

.ghost-consume::after {
  content: "";
  position: absolute;
  left: -3%;
  right: -3%;
  top: 48%;
  height: 8px;
  background: var(--red);
  transform: rotate(-4deg) scaleX(0);
  transform-origin: left;
  animation: strikeWord 1s .7s cubic-bezier(.2, .8, .2, 1) forwards;
}

.ghost-create {
  right: -17%;
  bottom: 8%;
  color: var(--red);
  text-shadow: 0 0 50px rgba(231, 0, 20, .55);
  transform:
    translate3d(calc(var(--cursor-x) * 16px), calc(var(--hero-scroll) * -72px), 0)
    rotate(calc(3deg + var(--hero-scroll) * 4deg))
    scale(calc(1 + var(--hero-scroll) * .14));
}

.hud {
  border-left-width: 4px;
  background: rgba(7, 8, 11, .82);
  box-shadow: 10px 12px 0 rgba(231, 0, 20, .25), 0 20px 45px rgba(0, 0, 0, .32);
}

.hud-top {
  right: -5%;
  top: 14%;
  transform: translate3d(calc(var(--hero-scroll) * 36px), calc(var(--hero-scroll) * -30px), 0);
}
.hud-bottom {
  left: -13%;
  bottom: 11%;
  transform: translate3d(calc(var(--hero-scroll) * -42px), calc(var(--hero-scroll) * 26px), 0);
}
.hud-bottom b { font-size: 21px; }

.level-badge {
  right: -1%;
  bottom: 4%;
  translate: calc(var(--hero-scroll) * 22px) calc(var(--hero-scroll) * -28px);
  animation: badgePulse 2.6s ease-in-out infinite;
}

.block-a { left: -1%; }
.block-b { right: -8%; }

.hero-bottom {
  display: none;
}

.red-marquee {
  z-index: 15;
  margin-top: -11px;
  border-block: 2px solid var(--ink);
  box-shadow: 0 9px 0 var(--ink);
  transform: rotate(-.55deg) scale(1.01);
}

.marquee-track {
  height: 78px;
  gap: 30px;
  animation-duration: 32s;
}

.marquee-track span {
  font-size: 23px;
  letter-spacing: .01em;
}

.marquee-track span:nth-of-type(odd) { color: var(--black); }
.marquee-track span:nth-of-type(even) { color: #fff; }

/* The cards now stack like a deck while the parent scrolls through the decision. */
.shift-section { padding: 105px 0 180px; }
.shift-layout { gap: 110px; }
.shift-sticky { top: 110px; }
.shift-sticky > p:last-child { font-size: 16px; }

.shift-cards {
  gap: 0;
  perspective: 1100px;
}

.shift-card {
  position: sticky;
  top: 108px;
  min-height: 520px;
  margin-bottom: 95px;
  border: 1px solid rgba(255, 255, 255, .15);
  box-shadow: 0 35px 80px rgba(10, 10, 12, .17);
  transform-origin: 50% 15%;
}

.shift-card:nth-child(1) { top: 104px; transform: rotate(-1deg); }
.shift-card:nth-child(2) { top: 122px; transform: translateX(-28px) rotate(1deg); }
.shift-card:nth-child(3) { top: 140px; transform: rotate(-.6deg); }

.shift-card h3 { max-width: 510px; }

/* Full-screen mission timeline: odd numbers on the right, even on the left. */
.mission-section {
  padding: 175px 0 120px;
  background:
    radial-gradient(circle at 50% 35%, rgba(231, 0, 20, .09), transparent 30%),
    var(--black);
}

.mission-bg {
  z-index: 0;
  top: -24px;
  right: -2vw;
  color: rgba(231, 0, 20, .045);
  -webkit-text-stroke: 2px rgba(255, 36, 23, .36);
  text-shadow: 0 0 50px rgba(231, 0, 20, .2);
  font-size: clamp(310px, 43vw, 720px);
  opacity: 1;
}

.mission-section .wrap { position: relative; z-index: 1; }

.mission-heading {
  margin-bottom: 40px;
  padding-bottom: 70px;
  border-bottom: 1px solid #26272d;
}

.mission-path { gap: 0; }

.path-line {
  width: 2px;
  background: #2d2f36;
}

.path-line i {
  width: 4px;
  box-shadow: 0 0 22px var(--red), 0 0 50px rgba(231, 0, 20, .45);
}

.mission-step {
  min-height: min(82vh, 780px);
  gap: 62px;
  border-bottom: 1px solid #202127;
  isolation: isolate;
}

.mission-step::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8% -15%;
  opacity: 0;
  background: radial-gradient(circle at 83% 50%, rgba(231, 0, 20, .2), transparent 35%);
  transition: opacity .8s ease;
}

.mission-step.reverse::before {
  background: radial-gradient(circle at 17% 50%, rgba(231, 0, 20, .2), transparent 35%);
}

.mission-step.is-active::before { opacity: 1; }

.step-number {
  top: 50%;
  left: auto;
  right: -8px;
  width: 48%;
  transform: translateY(-50%);
  color: #101116;
  -webkit-text-stroke: 1px #2d2f37;
  font-size: clamp(190px, 21vw, 310px);
  line-height: .72;
  text-align: right;
  opacity: .42;
  transition: color .8s ease, -webkit-text-stroke-color .8s ease, transform .8s ease, opacity .8s ease;
}

.mission-step.reverse .step-number {
  right: auto;
  left: -8px;
  text-align: left;
}

.mission-step.is-active .step-number {
  color: rgba(231, 0, 20, .06);
  -webkit-text-stroke-color: rgba(231, 0, 20, .55);
  transform: translateY(-50%) translateY(-10px);
  opacity: 1;
}

.step-visual {
  width: 176px;
  height: 176px;
  box-shadow: 0 0 0 rgba(231, 0, 20, 0);
  transition: transform .65s cubic-bezier(.2, .8, .2, 1), box-shadow .65s ease, border-color .65s ease;
}

.mission-step.is-active .step-visual {
  transform: rotate(-4deg) scale(1.08);
  border-color: rgba(231, 0, 20, .8);
  box-shadow: 0 0 60px rgba(231, 0, 20, .23);
}

.mission-step > div:last-child {
  position: relative;
  z-index: 3;
  padding: 38px 0 38px 35px;
  border-left: 3px solid var(--red);
}

.mission-step.reverse > div:last-child {
  padding: 38px 35px 38px 0;
  border-right: 3px solid var(--red);
  border-left: 0;
}

.mission-step h3 { font-size: 52px; }
.mission-step p { font-size: 14px; }

/* The supplied real portrait remains exclusive to the mentor authority block. */
.guga-art::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(5, 6, 9, .82) 100%);
  pointer-events: none;
}

.guga-art img {
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 17%;
  transform: none;
  filter: saturate(.75) contrast(1.08);
}

.guga-name { z-index: 5; }

.checkout-avatar img {
  inset: auto;
  left: 52%;
  bottom: -60px;
  width: 330px;
  height: auto;
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, .52));
}

.checkout-avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(231, 0, 20, .18), transparent 50%);
  pointer-events: none;
}

.checkout-card .cta,
.final-cta .cta {
  min-height: 70px;
  font-size: 11px;
}

.mobile-buy a { text-align: center; }

@keyframes portraitBreath {
  0%, 100% { transform: translateX(-50%) scale(1.025); }
  50% { transform: translateX(-50%) scale(1.055); }
}

@keyframes photoScan {
  from { background-position: 0 -700px, 0 0; }
  to { background-position: 0 700px, 0 0; }
}

@keyframes strikeWord {
  to { transform: rotate(-4deg) scaleX(1); }
}

@keyframes badgePulse {
  0%, 100% { transform: rotate(8deg) scale(1); box-shadow: 0 0 0 0 rgba(231, 0, 20, .35); }
  50% { transform: rotate(5deg) scale(1.04); box-shadow: 0 0 0 18px rgba(231, 0, 20, 0); }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: 118px 0 32px;
    background: var(--cream);
  }

  .hero::after {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 46%;
    clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%);
  }

  .hero-layout {
    position: relative;
    top: auto;
    min-height: 0;
    padding: 0;
    grid-template-columns: 1fr;
  }
  .hero-copy.visible { opacity: 1; filter: none; transform: none; }
  .hero h1 { max-width: 840px; }
  .hero-sub { max-width: 700px; }
  .hero-stage { min-height: 680px; }
  .portrait-frame { width: 500px; height: 640px; }
  .hero-scroll-status { left: 3%; top: 33%; }
  .hud-top { right: 5%; }
  .hud-bottom { left: 4%; }
  .level-badge { right: 7%; }

  .shift-card,
  .shift-card:nth-child(n) {
    position: relative;
    top: auto;
    transform: none;
  }

  .mission-step h3 { font-size: 42px; }
  .step-number { font-size: clamp(150px, 25vw, 230px); }
}

@media (max-width: 640px) {
  .nav { height: 76px; }

  .nav-proof {
    max-width: 125px;
    text-align: right;
    line-height: 1.35;
  }

  .hero {
    padding: 94px 0 25px;
  }

  .hero::after { height: 39%; }

  .pretitle {
    max-width: 100%;
    padding: 8px 9px;
    font-size: 8px;
    line-height: 1.35;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(45px, 13vw, 58px);
    line-height: .91;
  }

  .hero h1 em { white-space: normal; }
  .hero-sub { font-size: 14px; }

  .hero-conversion { gap: 15px; }
  .hero-conversion .cta { min-height: 67px; }

  .hero-cta-note {
    min-width: 0;
    padding: 13px 0 0;
    border-top: 1px solid #c9c6c0;
    border-left: 0;
  }

  .hero-trust { gap: 0; }
  .hero-trust > div { padding: 13px 8px; }
  .hero-trust > div + div { padding-left: 8px; }
  .hero-trust > div:last-child { border-top: 1px solid #cfcdc8; }

  .hero-stage {
    min-height: 565px;
    margin-top: 30px;
  }

  .portrait-frame {
    top: 49%;
    left: 50%;
    width: 318px;
    height: 505px;
    box-shadow: none;
  }

  .portrait-frame .guga-avatar {
    bottom: -48px;
    width: 470px;
  }

  .portal-rings { width: 410px; height: 410px; }
  .avatar-halo { width: 330px; height: 480px; }
  .avatar-floor { width: 350px; height: 105px; bottom: 4%; }
  .hero-depth-grid { left: -18%; right: -18%; bottom: -8%; height: 48%; }
  .hero-energy-beam { left: 50%; height: 112%; }
  .hero-scroll-status { display: none; }
  .hero-ghost-word { font-size: 70px; }
  .ghost-consume { left: -21%; top: 10%; }
  .ghost-create { right: -14%; bottom: 8%; }

  .hud { padding: 8px 9px; }
  .hud b { font-size: 18px; }
  .hud-top { right: -1%; top: 7%; }
  .hud-bottom { left: -1%; bottom: 7%; max-width: 78%; }
  .hud-bottom b { font-size: 16px; }
  .level-badge { right: 2%; bottom: 3%; }

  .red-marquee { margin-top: -3px; }
  .marquee-track { height: 69px; }
  .marquee-track span { font-size: 19px; }

  .shift-section { padding: 105px 0 120px; }
  .shift-card { min-height: 410px; margin-bottom: 28px; }

  .mission-section { padding: 105px 0 80px; }
  .mission-heading { padding-bottom: 50px; margin-bottom: 0; }
  .mission-path { gap: 0; }
  .path-line { left: 50%; }

  .mission-step,
  .mission-step.reverse {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 140px auto;
    align-content: center;
    gap: 30px;
    min-height: 620px;
    padding: 70px 0;
  }

  .mission-step .step-visual,
  .mission-step.reverse .step-visual {
    grid-column: 1;
    grid-row: 1;
    width: 118px;
    height: 118px;
    margin: auto;
  }

  .mission-step .step-visual .wire-cube { font-size: 55px; }

  .mission-step > div:last-child,
  .mission-step.reverse > div:last-child {
    grid-column: 1;
    grid-row: 2;
    width: 82%;
    margin: 0 0 0 auto;
    padding: 24px 0 24px 22px;
    border-right: 0;
    border-left: 3px solid var(--red);
    text-align: left;
  }

  .mission-step.reverse > div:last-child {
    margin: 0 auto 0 0;
    padding: 24px 22px 24px 0;
    border-right: 3px solid var(--red);
    border-left: 0;
    text-align: right;
  }

  .mission-step.reverse p { margin-left: auto; }

  .step-number,
  .mission-step.reverse .step-number {
    display: block;
    top: 54%;
    width: 70%;
    font-size: 118px;
  }

  .step-number { right: 0; left: auto; text-align: right; }
  .mission-step.reverse .step-number { right: auto; left: 0; text-align: left; }
  .mission-step h3 { font-size: 34px; }

  .guga-art img { width: 100%; height: 100%; }

  .mobile-buy {
    gap: 10px;
    padding: 9px 9px 9px 13px;
  }

  .mobile-buy b { font-size: 13px; }
  .mobile-buy a { max-width: 58%; padding: 11px 12px; line-height: 1.25; }
}

@media (prefers-reduced-motion: reduce) {
  .portrait-frame .guga-avatar,
  .photo-scan,
  .level-badge,
  .ghost-consume::after { animation: none !important; }
}

/* ─────────────────────────────────────────────────────────────
   NOVOS ELEMENTOS DE CONVERSÃO
   ───────────────────────────────────────────────────────────── */

/* Launch badge */
.launch-badge {
  display: inline-block;
  margin: -4px auto 12px;
  padding: 5px 14px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  border-radius: 2px;
  text-align: center;
  animation: badgePulse 2.6s ease-in-out infinite;
}

/* Price with strikethrough */
.price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.price-from {
  font-size: 13px;
  font-weight: 600;
  color: #888;
  letter-spacing: .04em;
  margin-bottom: 2px;
}

.price-from s {
  color: #aaa;
  text-decoration: line-through;
}

/* Guarantee block */
.guarantee-block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 16px 0 0;
  padding: 14px 16px;
  background: rgba(0, 170, 80, .08);
  border: 1px solid rgba(0, 180, 80, .25);
  border-radius: 6px;
  text-align: left;
}

.guarantee-icon {
  font-size: 26px;
  flex-shrink: 0;
  line-height: 1;
}

.guarantee-block b {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  color: #00b050;
  margin-bottom: 4px;
}

.guarantee-block small {
  font-size: 11px;
  line-height: 1.45;
  color: #666;
}

/* Payment logos */
.payment-logos {
  margin-top: 14px;
  text-align: center;
}

.payment-logos > span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #888;
  margin-bottom: 8px;
}

.logos-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.pay-badge {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  color: #555;
  background: #fff;
}

/* ─────────────────────────────────────────────────────────────
   SEÇÃO DE DEPOIMENTOS
   ───────────────────────────────────────────────────────────── */

.testimonials-section {
  padding: 100px 0 80px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(231, 0, 20, .07), transparent 50%);
  pointer-events: none;
}

.testimonials-title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  color: #fff;
  margin: 14px 0 56px;
}

.testimonials-title span {
  color: var(--red);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.testimonial-card {
  padding: 28px 24px;
  background: #0f1014;
  border: 1px solid #1e2027;
  border-radius: 4px;
  transition: border-color .3s ease, transform .3s ease;
  position: relative;
}

.testimonial-card:hover {
  border-color: rgba(231, 0, 20, .4);
  transform: translateY(-4px);
}

.featured-testimonial {
  border-color: rgba(231, 0, 20, .3);
  background: #110a0b;
}

.testimonial-stars {
  color: #f5a623;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.65;
  color: #bbb;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #1e2027;
  padding-top: 16px;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-author b {
  display: block;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 2px;
}

.testimonial-author small {
  font-size: 11px;
  color: #666;
}

.testimonials-note {
  font-size: 11px;
  color: #444;
  text-align: center;
  margin-top: 0;
  font-style: italic;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .featured-testimonial {
    grid-column: span 2;
  }
}

@media (max-width: 580px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .featured-testimonial {
    grid-column: span 1;
  }
  .testimonials-section {
    padding: 64px 0 52px;
  }
}

/* =========================================================
   HERO V3 — PLAYER → CREATOR
   A compact pinned scene: one promise, one action, one proof.
   ========================================================= */

.nav {
  z-index: 40;
  height: 86px;
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, .14);
}

.nav .logo-cube {
  border-color: #fff;
  box-shadow: 3px 3px 0 #fff;
}

.nav-proof { color: rgba(255, 255, 255, .72); }

.nav-cta {
  color: #fff;
  background: rgba(9, 10, 13, .55);
  border: 1px solid rgba(255, 255, 255, .24);
  box-shadow: 5px 5px 0 var(--red);
  backdrop-filter: blur(12px);
}

.nav-cta:hover {
  box-shadow: 8px 8px 0 var(--red);
}

.hero-v3 {
  --scene-red: #f01b18;
  display: block;
  height: 128svh;
  min-height: 960px;
  padding: 0;
  overflow: visible;
  color: #fff;
  background: #07080b;
}

.hero-v3::after { display: none; }

.hero-v3-pin {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 52%, rgba(240, 27, 24, .22), transparent 31%),
    radial-gradient(circle at 16% 82%, rgba(91, 20, 26, .24), transparent 35%),
    linear-gradient(122deg, #111319 0%, #08090d 56%, #050609 100%);
}

.hero-v3-pin::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: var(--scene-red);
  clip-path: circle(calc(16% + var(--hero-scroll) * 36%) at 78% 52%);
  opacity: .95;
  transition: clip-path .08s linear;
}

.hero-v3-pin::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(7, 8, 11, .98) 0%, rgba(7, 8, 11, .92) 42%, rgba(7, 8, 11, .22) 68%, rgba(7, 8, 11, .04) 100%);
}

.hero-v3-grid {
  position: absolute;
  z-index: 3;
  inset: 0;
  opacity: .33;
  background-image:
    linear-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .09) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 78%);
  mask-image: linear-gradient(90deg, #000, transparent 78%);
  transform: translate3d(calc(var(--hero-scroll) * -28px), calc(var(--hero-scroll) * -18px), 0);
}

.hero-v3 .hero-noise {
  z-index: 4;
  opacity: .16;
  mix-blend-mode: soft-light;
}

.hero-v3 .particles { position: absolute; z-index: 4; inset: 0; }
.hero-v3 .particle { background: #fff; opacity: .32; }

.hero-v3-number {
  position: absolute;
  z-index: 3;
  right: -2vw;
  top: 50%;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .19);
  font: clamp(260px, 34vw, 540px)/.72 var(--display);
  letter-spacing: -.06em;
  transform: translate3d(calc(var(--hero-scroll) * 45px), calc(-50% - var(--hero-scroll) * 22px), 0);
  opacity: calc(.48 + var(--hero-scroll) * .28);
  white-space: nowrap;
}

.hero-v3-word {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  white-space: nowrap;
  font: clamp(90px, 12vw, 190px)/1 var(--display);
  letter-spacing: -.035em;
}

.word-player {
  right: 25%;
  top: 16%;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .16);
  opacity: calc(.72 - var(--hero-scroll) * .56);
  transform: translate3d(calc(var(--hero-scroll) * -42px), calc(var(--hero-scroll) * -24px), 0);
}

.word-creator {
  right: -3%;
  bottom: 7%;
  color: rgba(255, 255, 255, .12);
  opacity: calc(.18 + var(--hero-scroll) * .7);
  transform: translate3d(calc(60px - var(--hero-scroll) * 60px), calc(var(--hero-scroll) * -26px), 0);
}

.hero-v3 .hero-layout {
  position: relative;
  z-index: 8;
  top: auto;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(520px, 1.06fr);
  align-items: center;
  gap: 8px;
  width: min(1420px, calc(100% - 42px));
  height: 100%;
  min-height: 0;
  padding: 86px 0 42px;
}

.hero-v3-copy {
  z-index: 15;
  max-width: 720px;
  padding-top: 10px;
}

.hero-v3 .hero-v3-copy.visible {
  opacity: 1;
  filter: none;
  transform: translate3d(calc(var(--hero-scroll) * -18px), calc(var(--hero-scroll) * -20px), 0);
}

.hero-v3 .pretitle {
  display: inline-flex;
  align-items: center;
  margin: 0 0 20px;
  padding: 8px 11px;
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: none;
  backdrop-filter: blur(9px);
}

.hero-v3 h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(62px, 6.15vw, 94px);
  line-height: .88;
  letter-spacing: -.03em;
  text-wrap: balance;
}

.hero-v3 h1 span,
.hero-v3 h1 strong {
  display: block;
  font-weight: 400;
}

.hero-v3 h1 span {
  color: rgba(255, 255, 255, .92);
  font-size: .7em;
  line-height: 1.02;
  letter-spacing: -.015em;
  margin-bottom: .14em;
}

.hero-v3 h1 strong {
  color: #fff;
  text-shadow: 0 8px 38px rgba(0, 0, 0, .38);
}

.hero-v3 h1 strong::first-line { color: var(--scene-red); }

.hero-v3 .hero-sub {
  max-width: 610px;
  margin: 22px 0 24px;
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
  line-height: 1.62;
}

.hero-v3 .hero-conversion {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-v3 .hero-conversion .cta {
  min-height: 68px;
  padding-inline: 23px 15px;
  border: 1px solid rgba(255, 255, 255, .26);
  box-shadow: 8px 8px 0 #fff;
  font-size: 10px;
}

.hero-v3 .hero-cta-note {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
  margin: 0;
  padding: 0;
  border: 0;
  color: #fff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.35;
}

.hero-v3 .hero-cta-note i {
  background: #fff;
  color: var(--ink);
}

.hero-v3 .hero-cta-note span,
.hero-v3 .hero-cta-note small { display: block; }
.hero-v3 .hero-cta-note small { margin-top: 3px; color: rgba(255, 255, 255, .48); }

.hero-proofline {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: start;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.hero-proofline > div {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 65px;
  padding-right: 24px;
}

.hero-proofline > div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.hero-proofline b {
  color: var(--scene-red);
  font: 31px/.9 var(--display);
  letter-spacing: .01em;
  white-space: nowrap;
}

.hero-proofline span {
  color: rgba(255, 255, 255, .5);
  font-size: 7px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: .11em;
}

.hero-v3-stage {
  position: relative;
  z-index: 7;
  width: 100%;
  height: 100%;
  min-height: 680px;
  margin: 0;
  transform: translate3d(calc(var(--cursor-x) * 7px), calc(var(--hero-scroll) * -19px + var(--cursor-y) * 6px), 0);
  transition: transform .16s linear;
}

.hero-v3-portal,
.hero-v3-portal::before,
.hero-v3-portal::after,
.hero-v3-portal i {
  position: absolute;
  border-radius: 50%;
}

.hero-v3-portal {
  z-index: 1;
  left: 52%;
  top: 50%;
  width: clamp(510px, 43vw, 690px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .42);
  transform: translate(-50%, -50%) rotate(calc(var(--hero-scroll) * 24deg)) scale(calc(1 + var(--hero-scroll) * .12));
  box-shadow: inset 0 0 80px rgba(0, 0, 0, .2), 0 0 90px rgba(240, 27, 24, .25);
}

.hero-v3-portal::before,
.hero-v3-portal::after {
  content: "";
  inset: 8%;
  border: 1px dashed rgba(255, 255, 255, .36);
  animation: spin 24s linear infinite;
}

.hero-v3-portal::after {
  inset: 20%;
  border-style: solid;
  border-color: rgba(255, 255, 255, .28);
  animation-direction: reverse;
  animation-duration: 16s;
}

.hero-v3-portal i:nth-child(1) { inset: -4%; border: 1px dashed rgba(255, 255, 255, .18); animation: spin 34s linear infinite; }
.hero-v3-portal i:nth-child(2) { inset: 32%; border: 2px solid rgba(255, 255, 255, .7); }
.hero-v3-portal i:nth-child(3) { inset: 44%; background: rgba(255, 255, 255, .92); box-shadow: 0 0 70px #fff; }

.hero-v3-core {
  position: absolute;
  z-index: 2;
  left: 52%;
  top: 52%;
  width: clamp(390px, 32vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .72) 0 4%, rgba(255, 255, 255, .18) 5%, rgba(240, 27, 24, .66) 33%, rgba(91, 0, 8, .2) 65%, transparent 73%);
  filter: blur(12px);
  transform: translate(-50%, -50%) scale(calc(.94 + var(--hero-scroll) * .18));
  opacity: .9;
}

.hero-v3 .portrait-frame {
  --portrait-rx: 0deg;
  --portrait-ry: 0deg;
  position: absolute;
  z-index: 6;
  left: 52%;
  top: 51%;
  width: min(770px, 55vw);
  height: min(850px, 94vh);
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  clip-path: none;
  pointer-events: none;
  transform:
    translate(-50%, -50%)
    perspective(1200px)
    rotateX(var(--portrait-rx))
    rotateY(var(--portrait-ry))
    translateY(calc(var(--hero-scroll) * -28px))
    scale(calc(1 + var(--hero-scroll) * .075));
  transform-style: preserve-3d;
  transition: transform .16s ease-out;
}

.hero-v3 .portrait-frame::before,
.hero-v3 .portrait-frame::after { display: none; }

.hero-v3 .portrait-frame .guga-avatar {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: -6%;
  width: min(790px, 57vw);
  height: auto;
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 34px 35px rgba(0, 0, 0, .62)) drop-shadow(0 0 20px rgba(255, 255, 255, .12));
  animation: heroV3Float 5.6s ease-in-out infinite;
}

.hero-v3-card {
  position: absolute;
  z-index: 12;
  min-width: 188px;
  padding: 12px 14px 13px;
  color: #fff;
  background: rgba(6, 7, 10, .8);
  border: 1px solid rgba(255, 255, 255, .2);
  border-left: 4px solid #fff;
  box-shadow: 9px 10px 0 rgba(7, 8, 11, .24);
  backdrop-filter: blur(12px);
}

.hero-v3-card small,
.hero-v3-card b,
.hero-v3-card span { display: block; }
.hero-v3-card small { color: #ffb8b7; font-size: 7px; font-weight: 900; letter-spacing: .17em; }
.hero-v3-card b { margin: 4px 0; font: 25px/1 var(--display); letter-spacing: .02em; }
.hero-v3-card span { color: rgba(255, 255, 255, .5); font-size: 7px; font-weight: 900; letter-spacing: .1em; }

.mentor-card {
  right: -1%;
  top: 19%;
  transform: translate3d(calc(var(--hero-scroll) * 26px), calc(var(--hero-scroll) * -18px), 0);
}

.mission-card {
  left: -3%;
  bottom: 13%;
  transform: translate3d(calc(var(--hero-scroll) * -24px), calc(var(--hero-scroll) * 18px), 0);
}

.hero-v3-pixel {
  position: absolute;
  z-index: 10;
  width: 28px;
  aspect-ratio: 1;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .62);
  box-shadow: inset -7px -7px 0 rgba(240, 27, 24, .62), 0 0 32px rgba(255, 255, 255, .36);
  animation: float 4.5s ease-in-out infinite;
}

.pixel-one { left: 9%; top: 20%; transform: rotate(16deg); }
.pixel-two { right: 4%; bottom: 25%; width: 18px; animation-delay: -2s; }

.hero-v3-status {
  position: absolute;
  z-index: 20;
  left: auto;
  right: 21px;
  bottom: 22px;
  display: grid;
  grid-template-columns: auto minmax(170px, 1fr) auto;
  align-items: center;
  gap: 13px;
  width: min(660px, calc(50% - 21px));
  transform: none;
  color: rgba(255, 255, 255, .58);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .15em;
}

.hero-v3-status b { color: #fff; }
.hero-v3-status i { display: block; height: 2px; overflow: hidden; background: rgba(255, 255, 255, .17); }
.hero-v3-status em {
  display: block;
  width: calc(8% + var(--hero-scroll) * 92%);
  height: 100%;
  background: #fff;
  box-shadow: 0 0 18px #fff;
}
.hero-v3-status small { display: none; }

@keyframes heroV3Float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@media (max-width: 1080px) {
  .hero-v3 .hero-layout { grid-template-columns: minmax(0, 1fr) minmax(460px, .9fr); }
  .hero-v3 h1 { font-size: clamp(59px, 6.5vw, 78px); }
  .hero-v3 .hero-sub { max-width: 540px; }
  .hero-v3 .portrait-frame { width: 650px; }
  .hero-v3 .portrait-frame .guga-avatar { width: 680px; }
  .hero-v3-card { min-width: 168px; }
}

@media (max-width: 900px) {
  .hero-v3 {
    height: auto;
    min-height: 0;
  }

  .hero-v3-pin {
    position: relative;
    height: auto;
    min-height: 0;
    padding: 102px 0 42px;
  }

  .hero-v3-pin::before { clip-path: circle(38% at 62% 73%); }
  .hero-v3-pin::after { background: linear-gradient(180deg, rgba(7, 8, 11, .98) 0%, rgba(7, 8, 11, .92) 43%, rgba(7, 8, 11, .22) 74%, rgba(7, 8, 11, .12)); }

  .hero-v3 .hero-layout {
    grid-template-columns: 1fr;
    width: min(720px, calc(100% - 40px));
    height: auto;
    padding: 0;
  }

  .hero-v3-copy { max-width: none; padding: 18px 0 0; }
  .hero-v3 .hero-v3-copy.visible { transform: none; }
  .hero-v3 h1 { max-width: 760px; font-size: clamp(62px, 10.6vw, 88px); }
  .hero-v3 .hero-sub { max-width: 650px; }

  .hero-v3-stage {
    height: 680px;
    min-height: 680px;
    margin-top: 20px;
    transform: none;
  }

  .hero-v3 .portrait-frame { left: 52%; width: 690px; height: 730px; transform: translate(-50%, -50%); }
  .hero-v3 .portrait-frame .guga-avatar { width: 700px; }
  .hero-v3-portal { width: 610px; }
  .hero-v3-core { width: 470px; }
  .mentor-card { right: 1%; }
  .mission-card { left: 0; }
  .hero-v3-number { top: 72%; right: -9%; }
  .word-player { right: 12%; top: 52%; }
  .word-creator { bottom: 4%; }
  .hero-v3-status { display: none; }

  .shift-section { padding-top: 58px; }
  .shift-sticky { top: 0; }
}

@media (max-width: 640px) {
  .nav { height: 74px; }
  .nav .logo-cube { width: 31px; height: 31px; }

  .hero-v3-pin { padding: 88px 0 12px; }
  .hero-v3 .hero-layout { width: calc(100% - 28px); }
  .hero-v3-copy { padding-top: 10px; }

  .hero-v3 .pretitle {
    margin-bottom: 15px;
    padding: 7px 8px;
    font-size: 7px;
    letter-spacing: .12em;
  }

  .hero-v3 h1 {
    font-size: clamp(43px, 12.2vw, 57px);
    line-height: .9;
  }

  .hero-v3 h1 span { font-size: .68em; }
  .hero-v3 .hero-sub { margin: 17px 0 20px; font-size: 13px; line-height: 1.55; }

  .hero-v3 .hero-conversion {
    display: grid;
    gap: 15px;
  }

  .hero-v3 .hero-conversion .cta {
    width: 100%;
    min-height: 63px;
    padding-inline: 16px 12px;
    box-shadow: 5px 5px 0 #fff;
    font-size: 9px;
  }

  .hero-v3 .hero-cta-note { min-width: 0; }

  .hero-proofline { margin-top: 22px; }
  .hero-proofline > div { min-height: 58px; padding-right: 12px; gap: 7px; }
  .hero-proofline > div + div { padding-left: 12px; }
  .hero-proofline b { font-size: 23px; }
  .hero-proofline span { font-size: 5.8px; }

  .hero-v3-stage {
    height: 490px;
    min-height: 490px;
    margin-top: 8px;
  }

  .hero-v3 .portrait-frame {
    left: 50%;
    top: 51%;
    width: 500px;
    height: 530px;
  }

  .hero-v3 .portrait-frame .guga-avatar {
    bottom: -4%;
    width: 510px;
  }

  .hero-v3-portal { left: 50%; top: 51%; width: 430px; }
  .hero-v3-core { left: 50%; top: 53%; width: 330px; }
  .hero-v3-number { right: -16%; top: 76%; font-size: 210px; }
  .hero-v3-word { font-size: 74px; }
  .word-player { right: 0; top: 55%; }
  .word-creator { right: -12%; bottom: 5%; }

  .hero-v3-card {
    min-width: 0;
    padding: 9px 10px;
    box-shadow: 6px 7px 0 rgba(7, 8, 11, .22);
  }
  .hero-v3-card b { font-size: 17px; }
  .hero-v3-card small,
  .hero-v3-card span { font-size: 5.5px; }
  .mentor-card { right: 0; top: 9%; }
  .mission-card { left: 0; bottom: 7%; }
  .pixel-one { left: 2%; top: 23%; }
  .pixel-two { right: 2%; bottom: 31%; }

  .mobile-buy {
    transition: transform .35s ease, opacity .25s ease;
  }

  .mobile-buy.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-v3 { height: auto; min-height: 100svh; }
  .hero-v3-pin { position: relative; }
  .hero-v3 .portrait-frame,
  .hero-v3-stage,
  .hero-v3 .hero-v3-copy.visible,
  .hero-v3-number,
  .hero-v3-word { transform: none; }
}

/* =========================================================
   HERO V4 — FUTURISTA, CLEAN E DIRETA
   ========================================================= */

.hero-clean {
  height: 116svh;
  min-height: 870px;
}

.hero-clean .hero-v3-pin {
  background:
    radial-gradient(circle at 77% 53%, rgba(231, 0, 20, .16), transparent 30%),
    linear-gradient(118deg, #0d0f14 0%, #07080b 58%, #050609 100%);
}

.hero-clean .hero-v3-pin::before {
  opacity: .88;
  clip-path: circle(calc(12% + var(--hero-scroll) * 25%) at 77% 53%);
}

.hero-clean .hero-v3-pin::after {
  background: linear-gradient(90deg, rgba(7, 8, 11, .99) 0%, rgba(7, 8, 11, .9) 40%, rgba(7, 8, 11, .2) 64%, transparent 100%);
}

.hero-clean .hero-v3-grid {
  opacity: .17;
  background-size: 80px 80px;
  -webkit-mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, .65) 55%, transparent 92%);
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, .65) 55%, transparent 92%);
}

.hero-clean .hero-noise { opacity: .09; }

.hero-clean .hero-layout {
  grid-template-columns: minmax(0, .82fr) minmax(560px, 1.18fr);
  gap: 0;
  width: min(1380px, calc(100% - 56px));
  padding: 92px 0 38px;
}

.hero-clean .hero-v3-copy {
  max-width: 640px;
  padding-top: 0;
}

.hero-clean .hero-v3-copy.visible {
  transform: translate3d(calc(var(--hero-scroll) * -10px), calc(var(--hero-scroll) * -12px), 0);
}

.hero-clean .pretitle {
  margin: 0 0 24px;
  padding: 0;
  color: rgba(255, 255, 255, .48);
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  font-size: 9px;
  letter-spacing: .2em;
}

.hero-clean .pretitle span { color: var(--scene-red); }

.hero-clean h1 {
  max-width: 630px;
  font-size: clamp(76px, 7vw, 108px);
  line-height: .84;
  letter-spacing: -.035em;
  text-wrap: initial;
}

.hero-clean h1 span,
.hero-clean h1 strong,
.hero-clean h1 em {
  display: block;
  margin: 0;
  padding: 0;
  color: #fff;
  background: transparent;
  font: inherit;
  font-weight: 400;
  font-style: normal;
  line-height: inherit;
  letter-spacing: inherit;
  text-shadow: none;
  transform: none;
  white-space: nowrap;
}

.hero-clean h1 span { font-size: 1em; }
.hero-clean h1 strong { color: var(--scene-red); }
.hero-clean h1 strong::first-line { color: inherit; }
.hero-clean h1 em { color: rgba(255, 255, 255, .92); }
.hero-clean h1 em::after { display: none; }

.hero-clean .hero-sub {
  max-width: 510px;
  margin: 25px 0 28px;
  color: rgba(255, 255, 255, .58);
  font-size: 15px;
  line-height: 1.55;
}

.hero-clean .hero-conversion { display: block; }

.hero-clean .hero-conversion .cta {
  min-width: 270px;
  min-height: 64px;
  padding-inline: 21px 13px;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 18px 55px rgba(231, 0, 20, .22);
  font-size: 10px;
}

.hero-clean .hero-conversion .cta b {
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
}

.hero-clean-proof {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .38);
  font-size: 8px;
  letter-spacing: .06em;
}

.hero-clean-proof b {
  color: #fff;
  font-size: 9px;
  letter-spacing: .11em;
}

.hero-clean-proof span::before,
.hero-clean-proof em::before {
  content: "•";
  margin-right: 9px;
  color: var(--scene-red);
}

.hero-clean-proof em {
  color: rgba(255, 255, 255, .62);
  font-style: normal;
  font-weight: 800;
}

.hero-clean .hero-v3-stage {
  min-height: 690px;
  transform: translate3d(calc(var(--cursor-x) * 5px), calc(var(--hero-scroll) * -14px + var(--cursor-y) * 4px), 0);
}

.hero-clean .hero-v3-portal {
  left: 54%;
  top: 52%;
  width: clamp(540px, 44vw, 700px);
  border-color: rgba(255, 255, 255, .24);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, .2), 0 0 100px rgba(231, 0, 20, .16);
  transform: translate(-50%, -50%) rotate(calc(var(--hero-scroll) * 14deg)) scale(calc(1 + var(--hero-scroll) * .075));
}

.hero-clean .hero-v3-portal::before {
  inset: 10%;
  border-color: rgba(255, 255, 255, .19);
  animation-duration: 34s;
}

.hero-clean .hero-v3-portal::after {
  inset: 25%;
  border-color: rgba(255, 255, 255, .13);
  animation-duration: 26s;
}

.hero-clean .hero-v3-portal i:nth-child(1) {
  inset: -5%;
  border-color: rgba(255, 255, 255, .1);
}

.hero-clean .hero-v3-portal i:nth-child(2),
.hero-clean .hero-v3-portal i:nth-child(3) { display: none; }

.hero-clean .hero-v3-core {
  left: 54%;
  top: 54%;
  width: clamp(400px, 31vw, 510px);
  opacity: .65;
  filter: blur(18px);
  background: radial-gradient(circle, rgba(255, 255, 255, .18), rgba(231, 0, 20, .48) 34%, rgba(91, 0, 8, .12) 63%, transparent 72%);
  transform: translate(-50%, -50%) scale(calc(.94 + var(--hero-scroll) * .13));
}

.hero-clean .portrait-frame {
  left: 54%;
  top: 52%;
  width: min(790px, 57vw);
  height: min(860px, 96vh);
  transform:
    translate(-50%, -50%)
    perspective(1200px)
    rotateX(var(--portrait-rx))
    rotateY(var(--portrait-ry))
    translateY(calc(var(--hero-scroll) * -20px))
    scale(calc(1 + var(--hero-scroll) * .055));
}

.hero-clean .portrait-frame .guga-avatar {
  bottom: -7%;
  width: min(810px, 59vw);
  filter: drop-shadow(0 34px 36px rgba(0, 0, 0, .66));
  animation-duration: 7s;
}

.hero-clean-scan {
  position: absolute;
  z-index: 5;
  left: 8%;
  right: -4%;
  top: 17%;
  height: 1px;
  opacity: .45;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .75), transparent);
  box-shadow: 0 0 18px rgba(255, 255, 255, .25);
  transform: translateY(calc(var(--hero-scroll) * 430px));
}

.hero-clean-progress {
  position: absolute;
  z-index: 20;
  right: 28px;
  bottom: 24px;
  width: min(420px, 34vw);
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .14);
}

.hero-clean-progress i {
  display: block;
  width: calc(8% + var(--hero-scroll) * 92%);
  height: 100%;
  background: var(--scene-red);
  box-shadow: 0 0 14px var(--scene-red);
}

.hero-clean + .red-marquee {
  margin-top: -6px;
  box-shadow: 0 5px 0 var(--ink);
  transform: none;
}

.hero-clean + .red-marquee .marquee-track {
  height: 62px;
  gap: 28px;
  animation-duration: 38s;
}

.hero-clean + .red-marquee .marquee-track span {
  color: #fff;
  font-size: 19px;
  letter-spacing: .025em;
}

.hero-clean + .red-marquee .marquee-track b { color: var(--black); }

@media (max-width: 1080px) {
  .hero-clean .hero-layout { grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr); }
  .hero-clean h1 { font-size: clamp(70px, 7.2vw, 86px); }
  .hero-clean .portrait-frame { width: 700px; }
  .hero-clean .portrait-frame .guga-avatar { width: 720px; }
}

@media (max-width: 900px) {
  .hero-clean {
    height: auto;
    min-height: 0;
  }

  .hero-clean .hero-v3-pin {
    padding: 98px 0 26px;
  }

  .hero-clean .hero-v3-pin::before { clip-path: circle(33% at 54% 75%); }
  .hero-clean .hero-v3-pin::after { background: linear-gradient(180deg, rgba(7, 8, 11, .99) 0%, rgba(7, 8, 11, .9) 43%, rgba(7, 8, 11, .18) 70%, transparent 100%); }

  .hero-clean .hero-layout {
    grid-template-columns: 1fr;
    width: min(720px, calc(100% - 40px));
    padding: 0;
  }

  .hero-clean .hero-v3-copy { max-width: 660px; }
  .hero-clean .hero-v3-copy.visible { transform: none; }
  .hero-clean h1 { max-width: 690px; font-size: clamp(70px, 11vw, 90px); }
  .hero-clean .hero-sub { max-width: 560px; }

  .hero-clean .hero-v3-stage {
    height: 650px;
    min-height: 650px;
    margin-top: 4px;
    transform: none;
  }

  .hero-clean .hero-v3-portal { left: 50%; width: 590px; }
  .hero-clean .hero-v3-core { left: 50%; width: 450px; }
  .hero-clean .portrait-frame { left: 50%; width: 680px; height: 720px; transform: translate(-50%, -50%); }
  .hero-clean .portrait-frame .guga-avatar { width: 690px; }
  .hero-clean-progress { display: none; }
}

@media (max-width: 640px) {
  .hero-clean .hero-v3-pin { padding: 86px 0 8px; }
  .hero-clean .hero-layout { width: calc(100% - 28px); }

  .hero-clean .pretitle {
    margin-bottom: 17px;
    font-size: 7px;
  }

  .hero-clean h1 {
    max-width: none;
    font-size: clamp(50px, 14.7vw, 62px);
    line-height: .85;
  }

  .hero-clean h1 span,
  .hero-clean h1 strong,
  .hero-clean h1 em { white-space: normal; }

  .hero-clean .hero-sub {
    max-width: 350px;
    margin: 20px 0 22px;
    font-size: 13px;
  }

  .hero-clean .hero-conversion .cta {
    width: 100%;
    min-width: 0;
    min-height: 60px;
    font-size: 9px;
  }

  .hero-clean-proof {
    flex-wrap: wrap;
    gap: 5px 8px;
    margin-top: 22px;
    font-size: 7px;
  }

  .hero-clean .hero-v3-stage {
    height: 470px;
    min-height: 470px;
    margin-top: 0;
  }

  .hero-clean .hero-v3-portal { top: 52%; width: 420px; }
  .hero-clean .hero-v3-core { top: 54%; width: 320px; }
  .hero-clean .portrait-frame { top: 52%; width: 500px; height: 520px; }
  .hero-clean .portrait-frame .guga-avatar { bottom: -5%; width: 510px; }
  .hero-clean-scan { left: -12%; right: -12%; }

  .hero-clean + .red-marquee .marquee-track { height: 56px; }
  .hero-clean + .red-marquee .marquee-track span { font-size: 16px; }
}

/* COPY V5 — conversa com o pai e entrega um resultado desejável para o filho. */
.copy-restored .hero-layout {
  grid-template-columns: minmax(0, .9fr) minmax(540px, 1.1fr);
}

.copy-restored .hero-v3-copy { max-width: 700px; }

.copy-restored h1 {
  max-width: 690px;
  font-size: clamp(78px, 6.7vw, 102px);
  line-height: .9;
}

.copy-restored h1 span {
  margin: 0 0 .3em;
  color: rgba(255, 255, 255, .92);
  font-size: .39em;
  line-height: 1.08;
  letter-spacing: -.005em;
  white-space: normal;
}

.copy-restored h1 strong {
  display: block;
  color: #fff;
  font-size: .7em;
  line-height: .94;
  letter-spacing: -.025em;
  white-space: normal;
}

.copy-restored h1 strong em {
  display: inline;
  color: var(--scene-red);
  font: inherit;
  line-height: inherit;
  white-space: normal;
}

.copy-restored .hero-sub {
  max-width: 590px;
  margin: 24px 0 27px;
  font-size: 14px;
  line-height: 1.58;
}

.copy-restored .hero-conversion .cta { min-width: 294px; }

.copy-restored .hero-clean-proof {
  max-width: 690px;
  margin-top: 24px;
}

@media (max-width: 1080px) {
  .copy-restored .hero-layout { grid-template-columns: minmax(0, .95fr) minmax(480px, 1.05fr); }
  .copy-restored h1 { font-size: clamp(74px, 7.15vw, 86px); }
  .copy-restored h1 span { font-size: .4em; }
  .copy-restored h1 strong { font-size: .69em; }
}

@media (max-width: 900px) {
  .copy-restored .hero-layout { grid-template-columns: 1fr; }
  .copy-restored .hero-v3-copy { max-width: 700px; }
  .copy-restored h1 { max-width: 700px; font-size: clamp(72px, 11vw, 90px); }
}

@media (max-width: 640px) {
  .copy-restored .pretitle {
    max-width: 330px;
    line-height: 1.4;
  }

  .copy-restored h1 {
    font-size: clamp(54px, 14.5vw, 61px);
    line-height: .91;
  }

  .copy-restored h1 span {
    margin-bottom: .35em;
    font-size: .48em;
    line-height: 1.08;
  }

  .copy-restored h1 strong {
    font-size: .73em;
    line-height: .96;
  }

  .copy-restored .hero-sub {
    max-width: 355px;
    margin: 20px 0 22px;
    font-size: 13px;
  }

  .copy-restored .hero-conversion .cta {
    min-width: 0;
  }

  .copy-restored .hero-clean-proof {
    max-width: 350px;
    line-height: 1.45;
  }
}

/* HERO MOBILE V6 — personagem integrado ao fundo, sem bloco de credenciais. */
@media (max-width: 640px) {
  .copy-restored {
    min-height: max(780px, 100svh);
    overflow: hidden;
    isolation: isolate;
  }

  .copy-restored .hero-v3-pin {
    min-height: max(780px, 100svh);
    padding: 84px 0 0;
    overflow: hidden;
  }

  .copy-restored .hero-v3-pin::before {
    clip-path: circle(45% at 72% 78%);
    opacity: .78;
  }

  .copy-restored .hero-v3-pin::after {
    z-index: 6;
    background:
      linear-gradient(180deg,
        rgba(7, 8, 11, .98) 0%,
        rgba(7, 8, 11, .92) 36%,
        rgba(7, 8, 11, .72) 53%,
        rgba(7, 8, 11, .16) 77%,
        rgba(7, 8, 11, 0) 100%);
  }

  .copy-restored .hero-layout {
    position: relative;
    display: block;
    width: calc(100% - 28px);
    min-height: calc(max(780px, 100svh) - 84px);
    padding: 0;
  }

  .copy-restored .hero-v3-copy {
    position: relative;
    z-index: 15;
  }

  .copy-restored .hero-clean-proof {
    display: none;
  }

  .copy-restored .hero-v3-stage {
    position: absolute;
    z-index: 3;
    inset: 0 -14px 0 -14px;
    width: auto;
    height: auto;
    min-height: 0;
    margin: 0;
    opacity: .94;
    transform: none;
    pointer-events: none;
  }

  .copy-restored .hero-v3-stage::after {
    content: "";
    position: absolute;
    z-index: 6;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(7, 8, 11, .45), transparent 56%),
      linear-gradient(180deg, rgba(7, 8, 11, .92) 0 38%, rgba(7, 8, 11, .28) 68%, transparent 100%);
  }

  .copy-restored .hero-v3-portal {
    left: 68%;
    top: 68%;
    width: 470px;
    opacity: .78;
  }

  .copy-restored .hero-v3-core {
    left: 68%;
    top: 70%;
    width: 350px;
    opacity: .72;
  }

  .copy-restored .portrait-frame {
    left: 68%;
    top: 66%;
    width: 560px;
    height: 590px;
    transform: translate(-50%, -50%);
  }

  .copy-restored .portrait-frame .guga-avatar {
    bottom: -7%;
    width: 570px;
    filter: drop-shadow(0 26px 30px rgba(0, 0, 0, .72));
  }

  .copy-restored .hero-clean-scan {
    z-index: 7;
    top: 61%;
    opacity: .25;
  }
}
