:root {
  --bg: #070b16;
  --bg-2: #0b1224;
  --bg-3: #0e1830;
  --gold: #ffc83a;
  --gold-2: #f5a623;
  --gold-deep: #9c6b12;
  --crimson: #e11d2a;
  --crimson-2: #ff3344;
  --blue: #1d6fe0;
  --blue-glow: #2a86ff;
  --text: #f4f1e6;
  --muted: #9aa6c2;
  --line: rgba(255, 200, 58, 0.16);
  --glass: rgba(255, 255, 255, 0.045);
  --radius: 18px;
  --t: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  overflow-x: hidden;
  width: 100%;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open {
  overflow: hidden;
  touch-action: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
section {
  position: relative;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
}
.disp {
  font-family: "Bungee", cursive;
  letter-spacing: 0.02em;
  line-height: 0.98;
}
.grot {
  font-family: "Space Grotesk", sans-serif;
}

/* ============ BACKDROP ============ */
.starfield {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(
      1200px 700px at 80% -10%,
      rgba(225, 29, 42, 0.1),
      transparent 60%
    ),
    radial-gradient(
      900px 600px at 10% 10%,
      rgba(29, 111, 224, 0.12),
      transparent 55%
    ),
    linear-gradient(180deg, #070b16 0%, #0a1020 45%, #070b16 100%);
}
.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.04;
  pointer-events: none;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.6) 0.5px,
    transparent 0.5px
  );
  background-size: 3px 3px;
}

/* ============ HEADER ============ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 11, 22, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
  transition: var(--t);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 14px rgba(255, 200, 58, 0.4);
}
.brand b {
  font-family: "Bungee", cursive;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #fff, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.menu {
  display: none;
  gap: 30px;
  align-items: center;
}
.menu a {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 0.93rem;
  color: var(--muted);
  transition: var(--t);
  position: relative;
}
.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--t);
}
.menu a:hover {
  color: var(--text);
}
.menu a:hover::after {
  width: 100%;
}
.nav .nav-cta {
  display: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 22px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: var(--t);
  white-space: nowrap;
}
.btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1305;
  box-shadow: 0 8px 26px rgba(245, 166, 35, 0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(245, 166, 35, 0.5);
}
.btn-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #04190f;
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.3);
}
.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(37, 211, 102, 0.45);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  background: linear-gradient(
    145deg,
    rgba(255, 200, 58, 0.12),
    rgba(255, 255, 255, 0.035)
  );
  border: 1px solid rgba(255, 200, 58, 0.24);
  border-radius: 14px;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.24);
  transition: var(--t);
  -webkit-tap-highlight-color: transparent;
}
.burger span {
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 3px;
  transition: var(--t);
}
.burger:hover,
.burger:focus-visible {
  border-color: rgba(255, 200, 58, 0.6);
  background: rgba(255, 200, 58, 0.16);
  outline: none;
}

/* mobile sidebar */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 0.45s;
}
.overlay.show {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.drawer-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(2, 5, 12, 0.74);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s ease;
  cursor: default;
}
.overlay.show .drawer-scrim {
  opacity: 1;
}
.mobile-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 390px);
  height: 100%;
  height: 100dvh;
  padding:
    max(18px, env(safe-area-inset-top)) 18px
    max(18px, env(safe-area-inset-bottom));
  background:
    radial-gradient(
      380px 260px at 100% 0%,
      rgba(225, 29, 42, 0.16),
      transparent 65%
    ),
    radial-gradient(
      360px 320px at 20% 100%,
      rgba(29, 111, 224, 0.12),
      transparent 70%
    ),
    linear-gradient(180deg, #0d1427 0%, #080d1b 100%);
  border-left: 1px solid rgba(255, 200, 58, 0.22);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.5);
  transform: translateX(calc(100% + 24px));
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
}
.overlay.show .mobile-drawer {
  transform: translateX(0);
}
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.drawer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.drawer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  object-fit: cover;
  border: 1px solid rgba(255, 200, 58, 0.5);
  box-shadow: 0 0 18px rgba(255, 200, 58, 0.22);
}
.drawer-brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.drawer-brand strong {
  font-family: "Bungee", cursive;
  font-size: 0.98rem;
  color: var(--gold);
}
.drawer-brand small {
  margin-top: 4px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.drawer-close {
  width: 44px;
  height: 44px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
  transition: var(--t);
}
.drawer-close svg {
  width: 21px;
  height: 21px;
}
.drawer-close:hover,
.drawer-close:focus-visible {
  color: var(--gold);
  border-color: rgba(255, 200, 58, 0.5);
  outline: none;
}
.drawer-live {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 20px 0 14px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(225, 29, 42, 0.28);
  background: rgba(225, 29, 42, 0.08);
  color: #ff9ca4;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.drawer-live .dot {
  width: 8px;
  height: 8px;
  flex: none;
}
.drawer-links {
  display: grid;
  gap: 8px;
}
.drawer-link {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 9px 12px 9px 9px;
  border-radius: 15px;
  border: 1px solid transparent;
  color: var(--text);
  transition: var(--t);
  -webkit-tap-highlight-color: transparent;
}
.drawer-link:hover,
.drawer-link:focus-visible {
  background: rgba(255, 200, 58, 0.07);
  border-color: rgba(255, 200, 58, 0.22);
  transform: translateX(-3px);
  outline: none;
}
.drawer-link-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--gold);
}
.drawer-link-icon svg {
  width: 21px;
  height: 21px;
}
.drawer-link-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.25;
}
.drawer-link-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
}
.drawer-link-copy small {
  margin-top: 3px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.drawer-arrow {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.36);
}
.drawer-card {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  padding: 17px;
  border: 1px solid rgba(255, 200, 58, 0.2);
  border-radius: 17px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 200, 58, 0.12),
      rgba(225, 29, 42, 0.06)
    ),
    rgba(255, 255, 255, 0.025);
}
.drawer-card::after {
  content: "";
  position: absolute;
  right: -25px;
  bottom: -45px;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background: rgba(255, 200, 58, 0.12);
  filter: blur(4px);
}
.drawer-card span,
.drawer-card strong {
  position: relative;
  z-index: 1;
  display: block;
}
.drawer-card span {
  margin-bottom: 4px;
  color: var(--gold);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.drawer-card strong {
  max-width: 240px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
  line-height: 1.4;
}
.drawer-actions {
  margin-top: auto;
  padding-top: 18px;
}
.drawer-cta {
  width: 100%;
  min-height: 56px;
  justify-content: center;
  border-radius: 16px;
  font-size: 0.96rem;
}
.drawer-note {
  margin-top: 10px;
  text-align: center;
  color: var(--muted);
  font-size: 0.7rem;
}
.drawer-note span {
  color: #25d366;
}

/* ============ HERO ============ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 70px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.55;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(7, 11, 22, 0.55) 0%,
      rgba(7, 11, 22, 0.35) 40%,
      rgba(7, 11, 22, 0.95) 100%
    ),
    radial-gradient(60% 50% at 50% 35%, transparent, rgba(7, 11, 22, 0.6));
}
.hero-grid {
  display: grid;
  gap: 46px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-copy {
  text-align: center;
}
.live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(225, 29, 42, 0.12);
  border: 1px solid rgba(225, 29, 42, 0.4);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff8d96;
  margin-bottom: 24px;
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--crimson-2);
  box-shadow: 0 0 0 0 rgba(255, 51, 68, 0.6);
  animation: ping 1.6s infinite;
}
@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 51, 68, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 51, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 51, 68, 0);
  }
}
.hero h1 {
  font-size: clamp(3.4rem, 15vw, 7rem);
  margin-bottom: 6px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #ffe9a8 42%,
    var(--gold) 70%,
    var(--gold-deep) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 18px rgba(255, 200, 58, 0.35));
}
.hero .tcg {
  font-family: "Bungee", cursive;
  font-size: clamp(1.6rem, 7vw, 3rem);
  color: var(--crimson-2);
  letter-spacing: 0.04em;
  filter: drop-shadow(0 2px 10px rgba(225, 29, 42, 0.5));
  margin-bottom: 18px;
}
.hero p.sub {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1rem, 3.4vw, 1.22rem);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero .ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.hero .ctas .btn {
  width: 100%;
  max-width: 330px;
  justify-content: center;
  padding: 17px 26px;
  font-size: 1rem;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 46px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.stat {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 10px;
  backdrop-filter: blur(8px);
}
.stat b {
  display: block;
  font-family: "Bungee", cursive;
  font-size: clamp(1.5rem, 6vw, 2rem);
  background: linear-gradient(180deg, #fff, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* logo halo */
.hero-logo {
  position: relative;
  width: min(86vw, 440px);
  margin: 0 auto;
  aspect-ratio: 1;
}
.hero-logo .halo {
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  z-index: 0;
  background: conic-gradient(
    from 0deg,
    var(--gold),
    var(--crimson),
    var(--blue),
    var(--gold)
  );
  filter: blur(38px);
  opacity: 0.55;
  animation: spin 14s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.hero-logo img {
  position: relative;
  z-index: 2;
  border-radius: 26px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 200, 58, 0.2);
}

/* floating energy orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
}
.orb.g {
  background: radial-gradient(circle at 30% 30%, #ffe79a, var(--gold-2));
  box-shadow: 0 0 30px var(--gold-2);
}
.orb.r {
  background: radial-gradient(circle at 30% 30%, #ff7a86, var(--crimson));
  box-shadow: 0 0 30px var(--crimson);
}
.orb.b {
  background: radial-gradient(circle at 30% 30%, #9cc6ff, var(--blue));
  box-shadow: 0 0 30px var(--blue-glow);
}
.o1 {
  width: 16px;
  height: 16px;
  top: 18%;
  left: 8%;
  animation: float 7s ease-in-out infinite;
}
.o2 {
  width: 11px;
  height: 11px;
  top: 30%;
  right: 10%;
  animation: float 9s ease-in-out infinite reverse;
}
.o3 {
  width: 20px;
  height: 20px;
  bottom: 24%;
  left: 14%;
  animation: float 11s ease-in-out infinite;
}
.o4 {
  width: 9px;
  height: 9px;
  top: 60%;
  right: 18%;
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-26px);
  }
}

/* ============ MARQUEE ============ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(
    90deg,
    rgba(255, 200, 58, 0.06),
    rgba(225, 29, 42, 0.05)
  );
  padding: 16px 0;
}
.mq-track {
  display: flex;
  gap: 42px;
  white-space: nowrap;
  animation: mq 26s linear infinite;
  width: max-content;
}
.mq-track span {
  font-family: "Bungee", cursive;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 42px;
}
.mq-track span::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--crimson-2);
}
@keyframes mq {
  to {
    transform: translateX(-50%);
  }
}

/* ============ SECTIONS ============ */
.sec {
  padding: 84px 0;
}
.sec-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 54px;
}
.eyebrow {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 14px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 50px;
  background: rgba(255, 200, 58, 0.05);
}
.sec-head h2 {
  font-family: "Bungee", cursive;
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  line-height: 1.05;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #fff, #ffe9a8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sec-head p {
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
}

/* pillars */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.pillar {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  backdrop-filter: blur(10px);
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--crimson));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--t);
}
.pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 200, 58, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.pillar:hover::before {
  transform: scaleX(1);
}
.p-ic {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 200, 58, 0.16),
    rgba(225, 29, 42, 0.12)
  );
  border: 1px solid var(--line);
  margin-bottom: 18px;
}
.p-ic svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}
.pillar h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.pillar p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* steps */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  counter-reset: s;
}
.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  backdrop-filter: blur(10px);
  transition: var(--t);
}
.step:hover {
  transform: translateX(6px);
  border-color: rgba(255, 200, 58, 0.35);
}
.step-n {
  flex: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bungee", cursive;
  font-size: 1.2rem;
  color: #1a1305;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 6px 18px rgba(245, 166, 35, 0.35);
}
.step h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  margin-bottom: 5px;
}
.step p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* vitrine holográfica */
.vitrine {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 14px;
}
.holo {
  margin: 0;
  perspective: 900px;
  text-align: center;
  will-change: transform;
}
.holo-inner {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 5/7;
  transform-style: preserve-3d;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  animation: cardfloat 6s ease-in-out infinite;
}
.holo:nth-child(2n) .holo-inner {
  animation-delay: -2s;
}
.holo:nth-child(3n) .holo-inner {
  animation-delay: -4s;
}
.holo:nth-child(4n) .holo-inner {
  animation-delay: -1s;
}
@keyframes cardfloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.holo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  backface-visibility: hidden;
}
/* brilho holográfico que varre */
.holo-inner .shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: color-dodge;
  opacity: 0.55;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 45%,
    rgba(120, 200, 255, 0.4) 50%,
    rgba(255, 120, 220, 0.35) 55%,
    transparent 70%
  );
  background-size: 260% 260%;
  background-position: 0% 50%;
  transition: opacity 0.3s ease;
}
.holo-inner .glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.45),
    transparent 45%
  );
}
.holo:hover .holo-inner {
  animation-play-state: paused;
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.6),
    0 0 30px var(--gw, rgba(255, 200, 58, 0.5)),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}
.holo:hover .shine {
  opacity: 1;
  animation: holoSweep 1.6s linear infinite;
}
.holo:hover .glare {
  opacity: 1;
}
@keyframes holoSweep {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
.holo figcaption {
  margin-top: 13px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.holo figcaption b {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.2;
}
.holo figcaption .ps {
  font-family: "Bungee", cursive;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--gold);
}

/* sobre */
.sobre {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  align-items: center;
}
.sobre-img {
  position: relative;
  width: min(86vw, 420px);
  margin: 0 auto;
  aspect-ratio: 1;
}
.sobre-img .ring {
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  border: 2px dashed rgba(255, 200, 58, 0.35);
  animation: spin 30s linear infinite;
}
.sobre-img img {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 200, 58, 0.2);
}
.sobre-copy h2 {
  font-family: "Bungee", cursive;
  font-size: clamp(1.7rem, 6vw, 2.6rem);
  margin-bottom: 18px;
  line-height: 1.05;
  background: linear-gradient(180deg, #fff, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sobre-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 16px;
  font-family: "Space Grotesk", sans-serif;
}
.sobre-copy .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 50px;
  background: var(--glass);
  border: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: "Space Grotesk", sans-serif;
}
.badge svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}

/* final cta */
.final {
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      60% 80% at 50% 50%,
      rgba(225, 29, 42, 0.16),
      transparent 65%
    ),
    radial-gradient(
      50% 60% at 50% 0%,
      rgba(255, 200, 58, 0.14),
      transparent 60%
    );
}
.final h2 {
  font-family: "Bungee", cursive;
  font-size: clamp(2rem, 8vw, 3.6rem);
  line-height: 1.02;
  margin-bottom: 18px;
  background: linear-gradient(180deg, #fff, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.final p {
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 34px;
}
.final .ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.final .ctas .btn {
  width: 100%;
  max-width: 340px;
  justify-content: center;
  padding: 18px 28px;
  font-size: 1.05rem;
}

/* footer */
footer {
  border-top: 1px solid var(--line);
  padding: 54px 0 34px;
  background: var(--bg-2);
}
.f-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: center;
}
.f-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.f-brand img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 18px rgba(255, 200, 58, 0.4);
}
.f-brand b {
  font-family: "Bungee", cursive;
  font-size: 1.2rem;
  background: linear-gradient(180deg, #fff, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.f-brand span {
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 280px;
}
.f-social {
  display: flex;
  gap: 14px;
  justify-content: center;
}
.f-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  border: 1px solid var(--line);
  transition: var(--t);
}
.f-social a:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.f-social svg {
  width: 22px;
  height: 22px;
}
.f-bottom {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.9;
}
.f-bottom a {
  color: var(--gold);
  font-weight: 600;
}
.f-bottom a:hover {
  text-decoration: underline;
}

/* whatsapp float */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  animation: wapulse 2.4s infinite;
  transition: var(--t);
}
.wa-float .ic {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.wa-float .ic svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
.wa-float .lbl {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition:
    max-width 0.4s ease,
    padding 0.4s ease;
  padding-right: 0;
}
.wa-float:hover .lbl {
  max-width: 200px;
  padding-right: 22px;
}
@keyframes wapulse {
  0%,
  100% {
    box-shadow:
      0 10px 30px rgba(37, 211, 102, 0.45),
      0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow:
      0 10px 30px rgba(37, 211, 102, 0.45),
      0 0 0 14px rgba(37, 211, 102, 0);
  }
}

/* reveal */
.rv {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.rv.on {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 959px) {
  section[id] {
    scroll-margin-top: 76px;
  }
  .nav {
    height: 64px;
  }
  .brand img {
    width: 38px;
    height: 38px;
  }
  .brand b {
    font-size: 0.98rem;
  }
}
@media (max-width: 679px) {
  .wrap {
    padding: 0 16px;
  }
  header {
    background: rgba(7, 11, 22, 0.9);
    backdrop-filter: blur(18px);
  }
  .hero {
    min-height: auto;
    padding: 94px 0 56px;
  }
  .hero-grid {
    gap: 28px;
  }
  .hero-logo {
    order: -1;
    width: min(58vw, 220px);
  }
  .hero-logo .halo {
    inset: -7%;
    filter: blur(28px);
    opacity: 0.48;
  }
  .hero-logo img {
    border-radius: 20px;
    box-shadow:
      0 22px 54px rgba(0, 0, 0, 0.58),
      0 0 0 1px rgba(255, 200, 58, 0.22);
  }
  .live {
    max-width: 100%;
    justify-content: center;
    margin-bottom: 16px;
    padding: 7px 12px;
    font-size: 0.68rem;
    line-height: 1.4;
    letter-spacing: 0.055em;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
    line-height: 1;
  }
  .hero .tcg {
    margin-bottom: 14px;
    font-size: clamp(1.28rem, 6.6vw, 1.8rem);
  }
  .hero p.sub {
    margin-bottom: 26px;
    font-size: 0.98rem;
    line-height: 1.58;
  }
  .hero .ctas {
    gap: 10px;
  }
  .hero .ctas .btn,
  .final .ctas .btn {
    width: 100%;
    max-width: none;
    min-height: 54px;
    padding: 14px 18px;
    border-radius: 16px;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }
  .stats {
    gap: 8px;
    margin-top: 30px;
  }
  .stat {
    padding: 12px 4px 11px;
    border-radius: 12px;
  }
  .stat b {
    font-size: clamp(1.15rem, 6vw, 1.45rem);
  }
  .stat span {
    display: block;
    font-size: 0.6rem;
    line-height: 1.25;
    letter-spacing: 0.035em;
  }
  .o3,
  .o4 {
    display: none;
  }
  .marquee {
    padding: 12px 0;
  }
  .mq-track,
  .mq-track span {
    gap: 28px;
  }
  .mq-track span {
    font-size: 0.82rem;
  }
  .sec {
    padding: 62px 0;
  }
  .sec-head {
    margin-bottom: 34px;
  }
  .eyebrow {
    margin-bottom: 11px;
    padding: 5px 11px;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }
  .sec-head h2 {
    margin-bottom: 12px;
    font-size: clamp(1.65rem, 8vw, 2.15rem);
    line-height: 1.08;
  }
  .sec-head p {
    font-size: 0.95rem;
    line-height: 1.58;
  }
  .pillars {
    gap: 12px;
  }
  .pillar {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 14px;
    padding: 19px 18px;
    border-radius: 16px;
  }
  .p-ic {
    grid-row: span 2;
    width: 48px;
    height: 48px;
    margin: 0;
    border-radius: 12px;
  }
  .p-ic svg {
    width: 23px;
    height: 23px;
  }
  .pillar h3 {
    align-self: end;
    margin-bottom: 4px;
    font-size: 1.02rem;
    line-height: 1.25;
  }
  .pillar p {
    font-size: 0.88rem;
    line-height: 1.5;
  }
  .steps {
    gap: 12px;
  }
  .step {
    gap: 13px;
    padding: 19px 17px;
    border-radius: 16px;
  }
  .step-n {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
  .step h3 {
    font-size: 1rem;
  }
  .step p {
    font-size: 0.88rem;
    line-height: 1.5;
  }
  .vitrine {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(72vw, 250px);
    gap: 16px;
    margin: 0 -16px;
    padding: 8px 16px 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-left: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }
  .vitrine::-webkit-scrollbar {
    display: none;
  }
  .holo {
    scroll-snap-align: start;
  }
  .holo-inner {
    border-radius: 16px;
    animation: none;
  }
  .holo figcaption {
    margin-top: 11px;
    text-align: left;
  }
  .holo figcaption b {
    font-size: 0.9rem;
  }
  .sobre {
    gap: 28px;
  }
  .sobre-img {
    width: min(70vw, 280px);
  }
  .sobre-img img {
    border-radius: 20px;
  }
  .sobre-copy {
    text-align: center;
  }
  .sobre-copy h2 {
    margin-bottom: 14px;
    font-size: clamp(1.6rem, 7.8vw, 2.05rem);
  }
  .sobre-copy p {
    font-size: 0.95rem;
    line-height: 1.58;
  }
  .sobre-copy .badges {
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  .badge {
    padding: 8px 12px;
    font-size: 0.78rem;
  }
  .final {
    padding: 68px 0;
  }
  .final h2 {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }
  .final p {
    margin-bottom: 28px;
    font-size: 0.98rem;
    line-height: 1.58;
  }
  .final .ctas {
    gap: 10px;
  }
  footer {
    padding: 46px 0 calc(96px + env(safe-area-inset-bottom));
  }
  .f-grid {
    gap: 26px;
  }
  .f-bottom {
    margin-top: 28px;
    padding-top: 20px;
  }
  .wa-float {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    min-height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow:
      0 12px 34px rgba(0, 0, 0, 0.42),
      0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  .wa-float .ic {
    width: 52px;
    height: 52px;
  }
  .wa-float .ic svg {
    width: 27px;
    height: 27px;
  }
  .wa-float .lbl,
  .wa-float:hover .lbl {
    max-width: 170px;
    padding-right: 17px;
    font-size: 0.82rem;
  }
}
@media (max-width: 374px) {
  .brand b {
    font-size: 0.9rem;
  }
  .burger {
    width: 43px;
    height: 43px;
  }
  .mobile-drawer {
    width: 92vw;
    padding-right: 14px;
    padding-left: 14px;
  }
  .hero-logo {
    width: 205px;
  }
  .vitrine {
    grid-auto-columns: 76vw;
  }
}
@media (hover: none) {
  .btn:hover,
  .pillar:hover,
  .step:hover,
  .f-social a:hover {
    transform: none;
  }
  .drawer-link:hover {
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
@media (min-width: 680px) {
  .pillars,
  .depos {
    grid-template-columns: repeat(2, 1fr);
  }
  .vitrine {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px 18px;
  }
  .hero .ctas {
    flex-direction: row;
    justify-content: center;
  }
  .hero .ctas .btn {
    width: auto;
  }
  .final .ctas {
    flex-direction: row;
    justify-content: center;
  }
  .final .ctas .btn {
    width: auto;
  }
}
@media (min-width: 768px) {
  .wrap {
    padding: 0 36px;
  }
}
@media (min-width: 960px) {
  .menu,
  .nav .nav-cta {
    display: flex;
  }
  .burger {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
  }
  .hero-copy {
    text-align: left;
  }
  .hero .ctas {
    justify-content: flex-start;
  }
  .hero .stats {
    margin-left: 0;
  }
  .pillars {
    grid-template-columns: repeat(4, 1fr);
  }
  .vitrine {
    grid-template-columns: repeat(5, 1fr);
    gap: 26px 20px;
  }
  .depos {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .sobre {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
  }
  .sobre-img {
    margin: 0;
  }
  .f-grid {
    grid-template-columns: 1.4fr 1fr;
    text-align: left;
    align-items: center;
  }
  .f-brand {
    align-items: flex-start;
    text-align: left;
  }
  .f-social {
    justify-content: flex-end;
  }
}
