:root {
  color-scheme: dark;
  --bg: #0a0d12;
  --bg-soft: #0e1218;
  --purple: #059669;
  --purple-2: #34d99c;
  --purple-3: #0d3b2e;
  --green: #34d99c;
  --cyan: #6fffd0;
  --gold: #d4b572;
  --orange: #ff7a18;
  --text: #ffffff;
  --muted: #b7c9c1;
  --dim: #6f8d82;
  --line: rgba(52, 217, 156, .10);
  --glass: rgba(52, 217, 156, .055);
  --card: rgba(4, 14, 11, .92);
  --font: "Inter Tight", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 50% 2%, rgba(52, 217, 156, .045), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(212, 181, 114, .06), transparent 32%),
    linear-gradient(180deg, #0c1118 0%, #080a10 48%, #05070b 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(212, 181, 114, .045) 1px, transparent 1px),
    linear-gradient(rgba(212, 181, 114, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .38) 58%, transparent 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 20%), rgba(52, 217, 156, .07), transparent 18%);
}

a { color: inherit; }
button, input, select { font: inherit; }

.page {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 18px auto 0;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  background: rgba(3, 12, 9, .76);
  box-shadow: 0 18px 70px rgba(0, 184, 107, .18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 13px;
  box-shadow: 0 0 26px rgba(52, 217, 156, .22);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #34d99c, #00a964);
  box-shadow: 0 0 24px rgba(52, 217, 156, .42);
}

.brand-mark svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #03100b;
  stroke-width: 2.3;
  stroke-linecap: round;
}

.brand-name {
  font-weight: 900;
  letter-spacing: .16em;
  font-size: 20px;
  line-height: 1;
}

.brand-name small {
  display: block;
  margin-top: 4px;
  color: var(--dim);
  font: 700 10px/1 var(--mono);
  letter-spacing: .20em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-link,
.btn-primary,
.btn-secondary,
.book-btn,
.icon-btn {
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.nav-link,
.btn-secondary,
.icon-btn {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .055);
}

.nav-link {
  padding: 12px 19px;
  border-radius: 10px;
}

.btn-primary {
  min-height: 52px;
  padding: 0 25px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #00a964);
  box-shadow: 0 14px 34px rgba(52, 217, 156, .28);
}

.btn-secondary {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 12px;
}

.btn-primary:hover,
.btn-secondary:hover,
.nav-link:hover,
.book-btn:hover,
.icon-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 540px);
  align-items: center;
  gap: 46px;
  padding: 56px 0 98px;
}

.hero-copy {
  max-width: 640px;
}

.pill {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(52, 217, 156, .22);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 184, 107, .20);
  box-shadow: inset 0 0 20px rgba(52, 217, 156, .07), 0 0 26px rgba(52, 217, 156, .07);
  font-weight: 800;
  animation: floatY 4.2s ease-in-out infinite;
}

.pill span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(52, 217, 156, .88);
  color: #02100a;
  font-size: 12px;
}

h1 {
  margin: 28px 0 0;
  font-size: clamp(50px, 6.1vw, 86px);
  line-height: .98;
  letter-spacing: -.055em;
}

h1 em {
  color: var(--green);
  font-style: normal;
  text-shadow: 0 0 34px rgba(52, 217, 156, .14);
}

.subhead {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.38;
  max-width: 670px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.mini-proof span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 11px;
  color: #d7f7ea;
  background: rgba(52, 217, 156, .06);
  font: 800 12px/1 var(--mono);
}

.hero-art {
  position: relative;
  min-height: 620px;
}

.purple-shape {
  position: absolute;
  width: 460px;
  height: 560px;
  right: 0;
  top: 10px;
  background:
    radial-gradient(circle at 50% 44%, rgba(52, 217, 156, .18), transparent 32%),
    conic-gradient(from 20deg, rgba(52, 217, 156, 0), rgba(52, 217, 156, .22), rgba(215, 255, 67, .22), rgba(52, 217, 156, 0));
  border-radius: 42% 58% 46% 54% / 50% 46% 54% 50%;
  filter: drop-shadow(0 30px 90px rgba(52, 217, 156, .10)) blur(.2px);
  animation: morph 9s ease-in-out infinite;
}

.hero-cyborg {
  position: absolute;
  right: -38px;
  top: -10px;
  width: 500px;
  height: 650px;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 38px;
  filter: drop-shadow(0 34px 80px rgba(0, 0, 0, .55)) drop-shadow(0 0 34px rgba(52, 217, 156, .10));
  mask-image: linear-gradient(180deg, #000 0 76%, transparent 99%);
  animation: floatY 5.4s ease-in-out infinite;
}

.phone {
  position: absolute;
  width: 190px;
  height: 390px;
  border: 5px solid #343039;
  border-radius: 34px;
  background: #0d1117;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .16),
    0 25px 80px rgba(0, 0, 0, .58);
  overflow: hidden;
}

.phone.hero-phone {
  left: -10px;
  bottom: 30px;
  width: 240px;
  height: 540px;
  border-width: 6px;
  border-radius: 38px;
  transform: rotate(-6deg);
  animation: phoneFloat 5.8s ease-in-out infinite;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .18),
    0 35px 90px rgba(0, 0, 0, .62),
    0 0 60px rgba(52, 217, 156, .10);
}
.phone.hero-phone .phone-screen {
  inset: 6px;
  padding: 8px 8px 6px;
  border-radius: 32px;
  overflow: hidden;
}

.phone.dual-a {
  right: 250px;
  top: 58px;
  transform: rotate(-10deg);
}

.phone.dual-b {
  right: 68px;
  top: 116px;
  transform: rotate(13deg);
}

.phone-screen {
  position: absolute;
  inset: 10px;
  border-radius: 27px;
  padding: 15px 13px;
  background:
    linear-gradient(180deg, rgba(52, 217, 156, .10), transparent 28%),
    #0e131a;
}

.megazord-preview {
  padding: 12px 10px;
  background:
    linear-gradient(rgba(52, 217, 156, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 217, 156, .035) 1px, transparent 1px),
    radial-gradient(circle at 50% 0, rgba(52, 217, 156, .12), transparent 32%),
    #06110e;
  background-size: 26px 26px, 26px 26px, auto, auto;
  overflow: hidden;
}

.megazord-preview.compact {
  padding: 11px 8px;
}

.app-mobile {
  padding: 9px;
  color: #fff;
  background:
    linear-gradient(rgba(52, 217, 156, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 217, 156, .05) 1px, transparent 1px),
    #0e1218;
  background-size: 26px 26px;
  overflow: hidden;
}

.app-mobile.full {
  padding: 10px 9px;
}

/* Estados (active/large) — só aplicado quando dentro do hero-phone (mockup grande)
   Para o mockup pequeno do hero usamos a versão padrão (.app-mobile) sem este override. */
.phone.hero-phone .app-mobile.full {
  padding: 10px 9px;
}
.phone.hero-phone .app-top { font-size: 8.5px; min-height: 18px; }
.phone.hero-phone .app-top b { width: 14px; height: 14px; font-size: 8px; }
.phone.hero-phone .app-search { height: 18px; font-size: 7.5px; padding: 0 7px; margin: 4px 0 6px; }
.phone.hero-phone .app-title { margin: 4px 0 6px; }
.phone.hero-phone .app-title h3 { font-size: 13px; line-height: 1; font-weight: 800; }
.phone.hero-phone .app-title p {
  display: block;
  font-size: 6.5px;
  line-height: 1.35;
  color: #8b97a6;
  margin: 4px 0 0;
  font-weight: 500;
}
.phone.hero-phone .app-filters span { font-size: 5.4px; padding: 2px 5px; min-height: 12px; }
.phone.hero-phone .app-filters { gap: 3px; margin-bottom: 3px; }
.phone.hero-phone .app-filter-line { gap: 3px; margin-bottom: 4px; }
.phone.hero-phone .app-section { font-size: 6.4px; margin: 4px 0 4px; }
.phone.hero-phone .app-card { padding: 6px 7px; }
.phone.hero-phone .app-card-top { display: flex; justify-content: space-between; align-items: center; }
.phone.hero-phone .app-card-top span { font-size: 5.4px; letter-spacing: .12em; color: #34d99c; }
.phone.hero-phone .app-card-top b { font-size: 5.4px; padding: 2px 5px; }
.phone.hero-phone .app-card-top b.live {
  background: #d4b572; color: #0a0d12;
  border-radius: 999px; letter-spacing: .12em;
}
.phone.hero-phone .app-card h4 { font-size: 9.5px; margin: 6px 0 4px; }
.phone.hero-phone .app-odd { margin-bottom: 4px; gap: 5px; align-items: baseline; }
.phone.hero-phone .app-odd span { font-size: 5.4px; }
.phone.hero-phone .app-odd strong { font-size: 18px; }
.phone.hero-phone .app-tags { gap: 2px; margin-bottom: 4px; flex-wrap: wrap; }
.phone.hero-phone .app-tags span { font-size: 5px; padding: 2px 4px; border-radius: 999px; }
.phone.hero-phone .app-tags span.hot {
  background: #d4b572; color: #0a0d12; border-color: transparent;
}
.phone.hero-phone .app-leg {
  padding: 4px 5px; gap: 3px; margin-top: 3px; border-radius: 5px;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
}
.phone.hero-phone .app-leg.live { background: rgba(52, 217, 156, .03); border: 1px solid rgba(52, 217, 156, .08); }
.phone.hero-phone .app-leg time {
  font-size: 6.4px; line-height: 1.2;
  display: flex; flex-direction: column; gap: 4px;
}
.phone.hero-phone .app-leg time small {
  font-size: 5px; margin-top: 0;
  display: inline-flex; align-items: center; gap: 3px;
  color: #34d99c; letter-spacing: .06em;
  padding: 2px 4px;
  background: rgba(52, 217, 156, .12);
  border-radius: 3px;
  width: fit-content;
}
.phone.hero-phone .app-leg time small .dot {
  width: 4px; height: 4px; border-radius: 50%; background: #34d99c;
  box-shadow: 0 0 4px #34d99c;
  animation: legPulse 1.2s ease-in-out infinite;
}
.phone.hero-phone .app-leg p { font-size: 6px; line-height: 1.2; margin: 0; }
.phone.hero-phone .app-leg p b { font-size: 4.6px; padding: 1px 3px; margin-right: 2px; border-radius: 3px; background: #0d3621; color: #a7f3d0; }
.phone.hero-phone .app-leg p em { font-size: 5.2px; color: #8b97a6; }
.phone.hero-phone .app-leg mark {
  font-size: 4.8px; padding: 2px 3px; letter-spacing: .04em;
  background: transparent; color: #d4b572; border: 1px solid #d4b572;
  border-radius: 3px; white-space: nowrap; line-height: 1;
}
.phone.hero-phone .app-leg mark.score { color: #d4b572; border-color: #d4b572aa; }
.phone.hero-phone .app-leg button {
  grid-column: 1 / -1;
  height: 16px; font-size: 5.4px; margin-top: 3px; border-radius: 4px;
  background: linear-gradient(180deg, #3b82f6, #1d4ed8);
  border: 0; color: #fff; font-weight: 700; letter-spacing: .12em;
}

.phone.hero-phone .app-bottom-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 6px; padding: 5px 4px 2px;
  border-top: 1px solid rgba(52, 217, 156, .08);
}
.phone.hero-phone .app-bottom-nav span,
.phone.hero-phone .app-bottom-nav b {
  font-size: 5px; color: #8b97a6; letter-spacing: .04em;
  display: inline-flex; align-items: center; gap: 2px;
  position: relative;
}
.phone.hero-phone .app-bottom-nav b { color: #34d99c; font-weight: 700; }
.phone.hero-phone .app-bottom-nav .nav-badge {
  font-size: 4.4px; padding: 1px 3px; border-radius: 999px;
  background: #d4b572; color: #0a0d12; font-style: normal; font-weight: 700;
  margin-left: 2px;
}

@keyframes legPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}

.app-mobile.compact {
  padding: 9px;
}

.app-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  min-height: 22px;
  color: #dce9e4;
  font-weight: 900;
  font-size: 10px;
}

.app-top div {
  display: flex;
  gap: 5px;
}

.app-top b {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 6px;
  color: #dce9e4;
  background: rgba(6, 18, 14, .70);
  font-size: 10px;
}

.app-search {
  height: 24px;
  display: flex;
  align-items: center;
  margin: 5px 0 10px;
  padding: 0 9px;
  border: 1px solid rgba(64, 113, 181, .28);
  border-radius: 7px;
  color: #9fb1cc;
  background: #142845;
  font-size: 8.5px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-title h3 {
  margin: 0;
  color: #fff;
  font-size: 13px;
  line-height: 1;
}

.app-title p {
  margin: 5px 0 8px;
  color: #8b97a6;
  font: 800 6.2px/1.35 var(--mono);
}

.app-refresh {
  width: 100%;
  height: 23px;
  margin: 0 0 8px;
  border: 1px solid rgba(64, 113, 181, .34);
  border-radius: 6px;
  color: #fff;
  background: #142845;
  font-size: 7px;
  font-weight: 900;
}

.app-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-bottom: 7px;
}

.app-kpis div {
  min-width: 0;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 8px;
  padding: 7px;
  background: rgba(5, 13, 17, .72);
}

.app-kpis span,
.app-kpis small {
  display: block;
  color: #72877f;
  text-transform: uppercase;
  font: 800 5.4px/1.15 var(--mono);
  letter-spacing: .10em;
}

.app-kpis strong {
  display: block;
  margin: 4px 0 3px;
  color: #fff;
  font: 900 12px/1 var(--mono);
  white-space: nowrap;
}

.app-filter-line {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  flex-wrap: wrap;
}

.app-filters {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.app-filters span {
  min-height: 15px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(61, 96, 140, .45);
  border-radius: 999px;
  padding: 3px 6px;
  color: #bcc7d8;
  background: #132642;
  font: 900 5.8px/1 var(--mono);
  white-space: nowrap;
}

.app-filters span:first-child,
.app-filters .active {
  color: var(--green);
  border-color: rgba(52, 217, 156, .25);
  background: rgba(52, 217, 156, .08);
}

.app-empty {
  margin: 8px 0 9px;
  padding: 12px 4px;
  color: rgba(155, 169, 188, .42);
  text-align: center;
  font: 900 6.5px/1 var(--mono);
  letter-spacing: .18em;
}

.app-section {
  margin: 5px 0 8px;
  color: #fff;
  font-size: 8px;
  font-weight: 900;
}

.app-card {
  border: 1px solid rgba(64, 113, 181, .38);
  border-radius: 10px;
  padding: 10px;
  background: rgba(12, 27, 46, .78);
  box-shadow: 0 12px 32px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.05);
}

.app-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 7px;
}

.app-card-top span {
  color: var(--green);
  font: 900 6px/1 var(--mono);
  letter-spacing: .14em;
}

.app-card-top b {
  border: 1px solid rgba(245,185,66,.42);
  border-radius: 999px;
  padding: 4px 6px;
  color: var(--gold);
  background: rgba(245,185,66,.07);
  font: 900 6px/1 var(--mono);
}

.app-card h4 {
  margin: 12px 0 8px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

.app-odd {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 7px;
}

.app-odd span {
  color: #8394a8;
  font: 900 6.2px/1 var(--mono);
  letter-spacing: .12em;
}

.app-odd strong {
  color: var(--green);
  font: 900 26px/1 var(--mono);
  letter-spacing: -.05em;
}

.app-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.app-tags span {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 5px;
  padding: 5px 6px;
  color: #c8d5e2;
  background: rgba(255,255,255,.045);
  font: 800 6px/1 var(--font);
}

.app-leg {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr) auto;
  gap: 6px;
  align-items: center;
  margin-top: 7px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  background: rgba(5, 17, 26, .56);
}

.app-leg time {
  color: #fff;
  font: 900 10px/1 var(--mono);
}

.app-leg time small {
  display: block;
  margin-top: 5px;
  color: var(--gold);
  font: 900 5.7px/1 var(--mono);
}

.app-leg p {
  margin: 0;
  min-width: 0;
  color: #fff;
  font: 900 7.4px/1.25 var(--font);
}

.app-leg p b {
  color: var(--green);
  border: 1px solid rgba(52, 217, 156, .14);
  border-radius: 999px;
  padding: 2px 5px;
  margin-right: 4px;
  font: 900 5.5px/1 var(--mono);
}

.app-leg p i {
  color: #8190a5;
  font-style: normal;
}

.app-leg p em {
  color: var(--gold);
  font: 900 6.2px/1.25 var(--mono);
  font-style: normal;
}

.app-leg mark {
  border: 1px solid rgba(245,185,66,.36);
  border-radius: 999px;
  padding: 4px 5px;
  color: var(--gold);
  background: rgba(245,185,66,.08);
  font: 900 5.5px/1 var(--mono);
}

.app-leg button {
  grid-column: 1 / -1;
  height: 24px;
  margin-top: 5px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  text-transform: uppercase;
  background: linear-gradient(180deg, #238cff, #116bd8);
  box-shadow: 0 0 18px rgba(31, 129, 255, .45);
  font: 900 6.7px/1 var(--mono);
  letter-spacing: .08em;
}

.app-real-card {
  padding: 9px;
}

.app-mobile.compact .app-card {
  padding: 8px;
}

.app-mobile.compact .app-title p {
  max-height: 26px;
  overflow: hidden;
}

.app-mobile.compact .app-card h4 {
  margin-top: 8px;
}

.app-mobile.compact .app-odd strong {
  font-size: 23px;
}

.app-mobile.compact .app-leg {
  grid-template-columns: 40px minmax(0, 1fr);
  padding: 7px;
}

.app-mobile.compact .app-leg mark,
.app-mobile.compact .app-bottom-nav {
  display: none;
}

.app-mobile.full .app-leg {
  grid-template-columns: 42px minmax(0, 1fr) auto;
  padding: 7px;
}

.app-mobile.full .app-leg button {
  height: 22px;
}

.device-center .app-mobile.full {
  padding: 12px;
}

.device-center .app-mobile.full .app-top {
  font-size: 11px;
}

.device-center .app-mobile.full .app-search {
  height: 30px;
  font-size: 9.5px;
}

.device-center .app-mobile.full .app-title h3 {
  font-size: 16px;
}

.device-center .app-mobile.full .app-title p {
  font-size: 6.8px;
}

.device-center .app-mobile.full .app-filters span {
  min-height: 18px;
  padding: 4px 7px;
  font-size: 6.2px;
}

.device-center .app-mobile.full .app-section {
  font-size: 9px;
}

.device-center .app-mobile.full .app-card {
  padding: 12px;
  border-radius: 12px;
}

.device-center .app-mobile.full .app-card h4 {
  font-size: 14px;
}

.device-center .app-mobile.full .app-odd strong {
  font-size: 31px;
}

.device-center .app-mobile.full .app-leg {
  min-height: 78px;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 8px;
}

.device-center .app-mobile.full .app-leg time {
  font-size: 11px;
}

.device-center .app-mobile.full .app-leg p {
  font-size: 8.2px;
}

.device-center .app-mobile.full .app-leg p b,
.device-center .app-mobile.full .app-leg mark {
  font-size: 5.8px;
}

.device-center .app-mobile.full .app-leg button {
  height: 26px;
  font-size: 7.2px;
}

.app-bottom-nav {
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 8px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  padding: 6px 4px;
  border: 1px solid rgba(64, 113, 181, .22);
  border-radius: 11px;
  background: rgba(7, 18, 31, .95);
  color: #8293ad;
  text-align: center;
  font: 900 5.7px/1 var(--font);
}

.app-bottom-nav b {
  color: var(--green);
}

.phone-screen.app-mobile .app-title p {
  margin: 5px 0 8px;
  color: #8b97a6;
  font: 800 6.2px/1.35 var(--mono);
}

.phone-screen.app-mobile .app-card h4 {
  margin: 10px 0 8px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
}

.phone-screen.app-mobile .app-leg p {
  margin: 0;
  min-width: 0;
  color: #fff;
  font: 900 7.4px/1.25 var(--font);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone-screen.app-mobile .app-leg p b {
  color: var(--green);
  border: 1px solid rgba(52, 217, 156, .14);
  border-radius: 999px;
  padding: 2px 5px;
  margin-right: 4px;
  font: 900 5.5px/1 var(--mono);
}

.phone-screen.app-mobile .app-leg p i {
  color: #8190a5;
  font-style: normal;
}

.phone-screen.app-mobile .app-leg p em {
  color: var(--gold);
  font: 900 6.2px/1.25 var(--mono);
  font-style: normal;
}

.mock-page-head {
  margin-bottom: 8px;
}

.mock-page-head h3 {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1;
}

.mock-page-head small {
  display: block;
  margin-top: 5px;
  color: var(--dim);
  font: 800 6.7px/1.25 var(--mono);
}

.mock-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 8px;
}

.mock-tiles.four {
  grid-template-columns: repeat(4, 1fr);
}

.mock-tiles div {
  min-width: 0;
  border: 1px solid rgba(52, 217, 156, .14);
  border-radius: 9px;
  padding: 7px;
  background: rgba(11, 27, 22, .72);
}

.mock-tiles span,
.mock-tiles small {
  display: block;
  color: var(--dim);
  text-transform: uppercase;
  font: 800 5.8px/1.2 var(--mono);
  letter-spacing: .10em;
}

.mock-tiles b {
  display: block;
  margin: 5px 0 3px;
  color: var(--green);
  font: 900 12px/1 var(--mono);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-toolbar {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin: 7px 0 8px;
}

.mock-toolbar span,
.real-mz-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 17px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  padding: 3px 6px;
  color: #b9c7c1;
  background: rgba(255,255,255,.04);
  font: 800 6.5px/1 var(--mono);
}

.mock-toolbar .active {
  color: #04120c;
  border-color: rgba(52, 217, 156, .65);
  background: var(--green);
}

.mock-section-title {
  margin: 9px 0 8px;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
}

.real-mz-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 8px;
}

.real-mz-card {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(52, 217, 156, .07);
  border-radius: 12px;
  padding: 11px;
  background: rgba(8, 21, 18, .86);
  box-shadow: 0 16px 40px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.05);
  overflow: hidden;
}

.real-mz-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 35%, rgba(255,255,255,.10) 48%, transparent 62% 100%);
  transform: translateX(-120%);
  animation: megazord-sheen 4.8s ease-in-out infinite;
  pointer-events: none;
}

.real-mz-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.real-mz-top span {
  color: var(--green);
  text-transform: uppercase;
  font: 900 6.8px/1 var(--mono);
  letter-spacing: .14em;
}

.real-mz-top b {
  border: 1px solid rgba(52, 217, 156, .17);
  border-radius: 999px;
  padding: 4px 6px;
  color: var(--green);
  background: rgba(52, 217, 156, .06);
  font: 900 6.2px/1 var(--mono);
}

.real-mz-card h4 {
  margin: 10px 0 8px;
  color: #fff;
  font-size: 12px;
  line-height: 1.1;
}

.real-mz-odd {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}

.real-mz-odd span {
  color: var(--dim);
  font: 900 7px/1 var(--mono);
  letter-spacing: .10em;
}

.real-mz-odd strong {
  color: var(--green);
  font: 900 29px/1 var(--mono);
  letter-spacing: -.05em;
  text-shadow: 0 0 24px rgba(52, 217, 156, .25);
}

.real-mz-meta {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.real-mz-meta span:last-child {
  color: #fff;
  border-color: rgba(215, 255, 67, .28);
  background: rgba(215, 255, 67, .08);
}

.real-mz-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
  min-height: 43px;
  padding: 7px;
  margin-top: 6px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  background: rgba(10, 13, 18, .45);
}

.real-mz-row time {
  color: #fff;
  font: 900 10px/1.05 var(--mono);
}

.real-mz-row time small {
  display: block;
  margin-top: 5px;
  color: var(--dim);
  font: 800 5.8px/1 var(--mono);
  letter-spacing: .10em;
}

.real-mz-row.live time small {
  color: var(--gold);
}

.real-mz-row p {
  margin: 0;
  min-width: 0;
  color: #fff;
  font: 800 8px/1.24 var(--font);
}

.real-mz-row p b {
  display: inline-flex;
  margin-right: 4px;
  padding: 2px 5px;
  border-radius: 999px;
  color: var(--green);
  border: 1px solid rgba(52, 217, 156, .12);
  background: rgba(52, 217, 156, .08);
  font: 900 6px/1 var(--mono);
  text-transform: uppercase;
}

.real-mz-row p i {
  color: var(--dim);
  font-style: normal;
}

.real-mz-row p em {
  color: var(--gold);
  font: 800 7px/1.35 var(--mono);
  font-style: normal;
}

.real-mz-row mark {
  justify-self: end;
  border: 1px solid rgba(52, 217, 156, .28);
  border-radius: 999px;
  padding: 4px 5px;
  color: var(--green);
  background: rgba(52, 217, 156, .08);
  font: 900 6px/1 var(--mono);
}

.real-mz-row.live mark {
  color: #03100b;
  border-color: rgba(215, 255, 67, .48);
  background: var(--gold);
}

.real-mz-note {
  margin-top: 7px;
  border: 1px solid rgba(215, 255, 67, .20);
  border-radius: 8px;
  padding: 7px;
  color: #fff;
  background: rgba(215, 255, 67, .07);
  font: 800 7px/1.25 var(--font);
}

.phone-logo {
  font-weight: 900;
  letter-spacing: .12em;
  font-size: 14px;
}

.phone-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin: 18px 0 12px;
}

.phone-kpis div,
.phone-row {
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .06);
  border-radius: 9px;
}

.phone-kpis div {
  padding: 10px 8px;
  color: #fff;
  font: 800 10px/1.15 var(--mono);
}

.phone-kpis span {
  display: block;
  color: var(--green);
  margin-top: 5px;
}

.phone-row {
  padding: 11px;
  margin-top: 8px;
}

.phone-row strong {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
}

.phone-row small {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.3;
}

.phone-row.active {
  background: linear-gradient(90deg, rgba(0, 184, 107, .46), rgba(215, 255, 67, .13));
  border-color: rgba(52, 217, 156, .22);
}

.big-lockup {
  position: absolute;
  right: 48px;
  bottom: 68px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
  letter-spacing: .16em;
  font-size: 38px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, .5);
}

.section {
  padding: 92px 0;
}

.center {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.section h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.feature-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 340px) 430px minmax(260px, 340px);
  gap: 54px;
  align-items: center;
  margin-top: 54px;
  justify-content: center;
}

.feature-col {
  display: grid;
  gap: 26px;
}

.feature-card {
  min-height: 168px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 23px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.feature-card svg,
.feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--gold);
  border-radius: 15px;
  border: 1px solid rgba(52, 217, 156, .22);
  background: radial-gradient(circle at 50% 0, rgba(52, 217, 156, .14), rgba(10, 13, 18, .88));
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.feature-card p {
  margin: 0;
  font-size: 19px;
  color: #ddd6e8;
}

.device-center {
  position: relative;
  min-height: 805px;
}

.device-center .phone {
  left: 50%;
  top: 0;
  width: 360px;
  height: 740px;
  transform: translateX(-50%);
}

.purple-block {
  position: absolute;
  left: 50%;
  top: 82px;
  width: 430px;
  height: 640px;
  transform: translateX(-50%);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(52, 217, 156, .12), rgba(0, 184, 107, .08));
  filter: blur(.2px);
}

.cta-band {
  position: relative;
  margin: 40px auto 0;
  padding: 72px 30px;
  text-align: center;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 0, rgba(52, 217, 156, .26), transparent 52%),
    linear-gradient(180deg, rgba(4, 46, 31, .72), rgba(10, 13, 18, 0));
}

.cta-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: clamp(32px, 4vw, 55px);
  font-weight: 900;
  letter-spacing: .16em;
}

.cta-band p {
  margin: 22px auto;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
}

.steps-grid,
.tickets-grid {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.steps-grid { grid-template-columns: repeat(3, 1fr); }
.tickets-grid { grid-template-columns: repeat(4, 1fr); }

.step,
.ticket-card,
.book-card {
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 22px;
  background: var(--card);
  padding: 24px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .22);
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 12px;
  color: #fff;
  background: var(--purple);
  font: 900 14px/1 var(--mono);
}

.step h3,
.ticket-card h3,
.book-card h3 {
  margin: 0 0 10px;
  font-size: 26px;
}

.ticket-card strong {
  display: block;
  color: var(--green);
  font-size: 44px;
  line-height: 1;
  margin-bottom: 12px;
  font-family: var(--mono);
}

.proof-section {
  padding-top: 54px;
}

.social-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 34px 0 18px;
}

.social-strip div {
  border: 1px solid rgba(52, 217, 156, .07);
  border-radius: 18px;
  padding: 18px;
  background: rgba(7, 23, 18, .72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.social-strip strong {
  display: block;
  color: var(--green);
  font: 900 24px/1 var(--mono);
}

.social-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.ticket-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
  align-items: start;
}

.result-ticket {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(52, 217, 156, .10);
  border-radius: 22px;
  padding: 22px;
  background:
    linear-gradient(rgba(52, 217, 156, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 217, 156, .035) 1px, transparent 1px),
    rgba(7, 18, 15, .92);
  background-size: 42px 42px;
  box-shadow: 0 22px 70px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.06);
}

.result-ticket::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 38%, rgba(255,255,255,.10) 50%, transparent 64% 100%);
  transform: translateX(-120%);
  animation: megazord-sheen 5.2s ease-in-out infinite;
  pointer-events: none;
}

.result-ticket-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.result-ticket-top span {
  color: var(--green);
  font: 900 11px/1 var(--mono);
  letter-spacing: .18em;
}

.result-ticket-top b {
  border: 1px solid rgba(52, 217, 156, .17);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--green);
  background: rgba(52, 217, 156, .08);
  font: 900 10px/1 var(--mono);
}

.result-ticket h3 {
  margin: 18px 0 8px;
  font-size: 28px;
  line-height: 1.05;
}

.result-odd {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}

.result-odd small {
  color: var(--dim);
  font: 900 11px/1 var(--mono);
  letter-spacing: .12em;
}

.result-odd strong {
  color: var(--green);
  font: 900 54px/1 var(--mono);
  letter-spacing: -.06em;
  text-shadow: 0 0 28px rgba(52, 217, 156, .28);
}

.result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.result-tags span {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 7px 9px;
  color: #cfe1db;
  background: rgba(255,255,255,.045);
  font: 800 12px/1 var(--font);
}

.result-tags span:last-child {
  border-color: rgba(215, 255, 67, .28);
  background: rgba(215, 255, 67, .08);
  color: #fff;
}

.result-note {
  border: 1px solid rgba(52, 217, 156, .10);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 12px;
  color: #dfffee;
  background: rgba(52, 217, 156, .07);
  font-weight: 900;
}

.result-leg {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 12px;
  margin-top: 9px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  background: rgba(3, 10, 8, .56);
}

.result-leg time {
  color: #fff;
  font: 900 18px/1 var(--mono);
}

.result-leg time small {
  display: block;
  margin-top: 6px;
  color: var(--dim);
  font: 800 9px/1 var(--mono);
  letter-spacing: .10em;
}

.result-leg p {
  margin: 0;
  color: #fff;
  font-weight: 900;
  line-height: 1.28;
}

.result-leg p b {
  display: inline-flex;
  margin-right: 6px;
  padding: 3px 7px;
  border-radius: 999px;
  color: var(--green);
  border: 1px solid rgba(52, 217, 156, .12);
  background: rgba(52, 217, 156, .08);
  font: 900 10px/1 var(--mono);
}

.result-leg p i {
  color: var(--dim);
  font-style: normal;
}

.result-leg p em {
  color: var(--gold);
  font: 800 12px/1.3 var(--mono);
  font-style: normal;
}

.result-leg mark {
  border: 1px solid rgba(52, 217, 156, .14);
  border-radius: 999px;
  padding: 7px 9px;
  color: var(--green);
  background: rgba(52, 217, 156, .08);
  font: 900 10px/1 var(--mono);
}

.phone-result {
  padding: 8px;
  background:
    linear-gradient(rgba(52, 217, 156, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 217, 156, .055) 1px, transparent 1px),
    radial-gradient(circle at 50% 0, rgba(52, 217, 156, .10), transparent 30%),
    #06110e;
  background-size: 24px 24px, 24px 24px, auto, auto;
  overflow: hidden;
}

.phone-slip {
  height: 100%;
  padding: 10px 8px;
  border: 1px solid rgba(52, 217, 156, .10);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(20, 40, 69, .90), rgba(7, 17, 13, .86)),
    rgba(7, 17, 13, .82);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .035);
}

.phone-slip-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 10px;
}

.phone-slip-top span {
  color: var(--green);
  font: 900 7px/1 var(--mono);
  letter-spacing: .16em;
}

.phone-slip-top b {
  flex-shrink: 0;
  border: 1px solid rgba(52, 217, 156, .18);
  border-radius: 999px;
  padding: 5px 7px;
  color: var(--green);
  background: rgba(52, 217, 156, .08);
  font: 900 6.5px/1 var(--mono);
  letter-spacing: .08em;
}

.phone-slip h4 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 13px;
  line-height: 1.1;
}

.phone-slip-odd {
  display: flex;
  align-items: end;
  gap: 6px;
  margin-bottom: 7px;
}

.phone-slip-odd small {
  color: #7387a5;
  font: 900 6px/1 var(--mono);
  letter-spacing: .12em;
}

.phone-slip-odd strong {
  color: var(--green);
  font: 900 29px/.86 var(--mono);
  letter-spacing: 0;
}

.phone-slip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}

.phone-slip-tags span {
  border: 1px solid rgba(139, 159, 195, .20);
  border-radius: 5px;
  padding: 4px 5px;
  color: #a7b4c8;
  background: rgba(255, 255, 255, .05);
  font: 800 5.8px/1 var(--font);
}

.phone-slip-tags span:last-child {
  border-color: rgba(246, 194, 68, .45);
  color: #fff;
  background: rgba(246, 194, 68, .10);
}

.phone-slip-leg {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 6px;
  align-items: center;
  min-height: 43px;
  margin-top: 6px;
  padding: 7px 6px;
  border: 1px solid rgba(64, 113, 181, .20);
  border-radius: 8px;
  background: rgba(3, 12, 20, .45);
}

.phone-slip-leg time {
  color: #dce8f2;
  font: 900 10px/1 var(--mono);
}

.phone-slip-leg time small {
  display: block;
  margin-top: 4px;
  color: #70829c;
  font-size: 5.5px;
  letter-spacing: .10em;
}

.phone-slip-leg p {
  min-width: 0;
  margin: 0;
  color: #e8eef6;
  font: 900 7.3px/1.35 var(--font);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone-slip-leg b {
  display: inline-block;
  margin-right: 4px;
  border: 1px solid rgba(52, 217, 156, .12);
  border-radius: 999px;
  padding: 2px 4px;
  color: var(--green);
  background: rgba(52, 217, 156, .08);
  font: 900 5.6px/1 var(--mono);
}

.phone-slip-leg i {
  color: #8091aa;
  font-style: normal;
}

.phone-slip-leg em {
  color: #f6c244;
  font: 900 6.8px/1.25 var(--mono);
  font-style: normal;
}

.phone-slip-leg mark {
  border: 1px solid rgba(52, 217, 156, .14);
  border-radius: 999px;
  padding: 4px 5px;
  color: var(--green);
  background: rgba(52, 217, 156, .08);
  font: 900 5.5px/1 var(--mono);
}

.phone-slip-leg.red mark {
  border-color: rgba(255, 82, 98, .36);
  color: #ff6b7c;
  background: rgba(255, 82, 98, .10);
}

.book-split .hero-art {
  min-height: 610px;
}

.book-split .phone.dual-a {
  width: 235px;
  height: 510px;
  right: 270px;
  top: 56px;
}

.book-split .phone.dual-b {
  width: 235px;
  height: 510px;
  right: 42px;
  top: 110px;
}

.book-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 34px;
}

.book-card p {
  color: var(--muted);
}

.book-btn {
  width: 100%;
  min-height: 54px;
  border-radius: 13px;
  margin-top: 16px;
  color: #fff;
}

.stake { background: linear-gradient(135deg, #167dff, #4aa2ff); }
.esportiva { background: linear-gradient(135deg, #ff5b19, #ff8b24); color: #180701; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 44px 0 56px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer small {
  color: var(--dim);
  max-width: 620px;
  line-height: 1.5;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(2, 2, 3, .76);
  backdrop-filter: blur(18px);
}

.modal.is-open { display: flex; }

.modal-card {
  width: min(560px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  border: 1px solid rgba(52, 217, 156, .32);
  border-radius: 26px;
  background:
    radial-gradient(circle at 80% 0, rgba(52, 217, 156, .10), transparent 38%),
    #030c09;
  box-shadow: 0 34px 120px rgba(0, 0, 0, .6);
}

.modal-top,
.form-body,
.post-register {
  padding: 24px;
}

.modal-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.modal-top h2,
.post-register h3 {
  margin: 8px 0 0;
  font-size: 31px;
  letter-spacing: -.03em;
}

.close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
  color: #fff;
  cursor: pointer;
  font-size: 24px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.field label {
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}

.field input,
.field select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 13px;
  color: #fff;
  background: rgba(255, 255, 255, .055);
  padding: 0 14px;
}

.coupon {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(52, 217, 156, .42);
  border-radius: 14px;
  padding: 13px 14px;
  margin: 12px 0 16px;
  color: #fff;
  background: rgba(0, 184, 107, .15);
  font: 800 12px/1 var(--mono);
}

.coupon strong {
  color: var(--green);
}

.terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin: 12px 0 18px;
}

.hidden { display: none !important; }

.post-register p { color: var(--muted); line-height: 1.5; }
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }

.version-list {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 50px 0;
}

.version-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(920px, 100%);
  margin-top: 30px;
}

.version-card {
  min-height: 280px;
  padding: 30px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(0, 184, 107, .16), rgba(255, 255, 255, .035));
  box-shadow: 0 22px 80px rgba(0, 0, 0, .35);
}

.version-card h2 { margin: 16px 0 10px; font-size: 38px; letter-spacing: -.04em; }
.version-card p { color: var(--muted); font-size: 18px; line-height: 1.5; }

.v2 .hero {
  grid-template-columns: minmax(430px, 560px) minmax(0, 1fr);
}

.v2 .hero-art {
  min-height: 545px;
}

.video-frame {
  position: relative;
  min-height: 520px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(52, 217, 156, .22);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .72)),
    url("/multiplas_cover_1080.png") center / cover;
  box-shadow: 0 34px 110px rgba(0, 0, 0, .48);
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, transparent 0 18%, rgba(0, 0, 0, .28) 19% 100%);
}

.play {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
}

.play span {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #00a964);
  box-shadow: 0 0 0 14px rgba(52, 217, 156, .12), 0 20px 60px rgba(52, 217, 156, .28);
  font-size: 34px;
  padding-left: 5px;
}

.video-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  font-size: 24px;
  font-weight: 900;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes phoneFloat {
  0%, 100% { transform: rotate(-7deg) translateY(0); }
  50% { transform: rotate(-5deg) translateY(-12px); }
}

@keyframes morph {
  0%, 100% { border-radius: 42% 58% 46% 54% / 50% 46% 54% 50%; transform: rotate(0deg); }
  50% { border-radius: 58% 42% 54% 46% / 42% 56% 44% 58%; transform: rotate(6deg); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

@media (max-width: 1040px) {
  .hero,
  .v2 .hero,
  .feature-stage,
  .book-split {
    grid-template-columns: 1fr;
  }

  .hero-art { min-height: 560px; }
  .feature-stage { gap: 26px; }
  .feature-col { grid-template-columns: 1fr 1fr; }
  .device-center { order: -1; }
}

@media (max-width: 720px) {
  .page { width: min(100% - 22px, 1180px); }
  .topbar { position: relative; top: 0; border-radius: 18px; }
  .brand-name { font-size: 15px; }
  .nav-actions .nav-link { display: none; }
  h1 { font-size: 48px; }
  .hero { padding-top: 34px; }
  .hero-art { min-height: 540px; position: relative; }
  .purple-shape { width: 240px; height: 320px; right: 0; top: 30px; opacity: .55; }
  .hero-cyborg { width: 200px; height: 280px; right: 4px; top: 30px; }
  .phone.hero-phone {
    width: 220px; height: 480px;
    left: 0; right: auto;
    bottom: auto; top: 70px;
    transform: rotate(-4deg);
  }
  .real-mz-grid { grid-template-columns: 1fr; }
  .real-mz-row { grid-template-columns: 34px minmax(0, 1fr); }
  .real-mz-row mark { display: none; }
  .big-lockup { display: none; }
  .feature-col,
  .steps-grid,
  .tickets-grid,
  .social-strip,
  .ticket-showcase,
  .book-grid,
  .version-grid {
    grid-template-columns: 1fr;
  }
  .result-ticket { padding: 16px; border-radius: 18px; }
  .result-ticket h3 { font-size: 22px; }
  .result-odd strong { font-size: 42px; }
  .result-leg { grid-template-columns: 62px minmax(0, 1fr); }
  .result-leg mark { display: none; }
  .device-center { min-height: 620px; }
  .device-center .phone { width: 260px; height: 575px; }
  .device-center .app-mobile.full {
    padding: 10px;
  }
  .device-center .app-mobile.full .app-search {
    height: 25px;
    font-size: 8.6px;
  }
  .device-center .app-mobile.full .app-title h3 {
    font-size: 14px;
  }
  .device-center .app-mobile.full .app-title p {
    font-size: 6.1px;
  }
  .device-center .app-mobile.full .app-filters span {
    min-height: 15px;
    padding: 3px 6px;
    font-size: 5.7px;
  }
  .device-center .app-mobile.full .app-card {
    padding: 9px;
  }
  .device-center .app-mobile.full .app-card h4 {
    font-size: 12px;
  }
  .device-center .app-mobile.full .app-odd strong {
    font-size: 25px;
  }
  .device-center .app-mobile.full .app-tags {
    margin-bottom: 5px;
  }
  .device-center .app-mobile.full .app-tags span {
    padding: 4px 5px;
    font-size: 5.6px;
  }
  .device-center .app-mobile.full .app-tags span:nth-child(n+3) {
    display: none;
  }
  .device-center .app-mobile.full .app-leg {
    min-height: 51px;
    grid-template-columns: 39px minmax(0, 1fr) auto;
    gap: 6px;
    padding: 6px;
  }
  .device-center .app-mobile.full .app-leg time {
    font-size: 9.5px;
  }
  .device-center .app-mobile.full .app-leg p {
    font-size: 7px;
  }
  .device-center .app-mobile.full .app-leg p b,
  .device-center .app-mobile.full .app-leg mark {
    font-size: 5.2px;
  }
  .device-center .app-mobile.full .app-leg button {
    display: none;
  }
  .book-split .hero-art {
    min-height: 900px;
  }
  .book-split .phone.dual-a,
  .book-split .phone.dual-b {
    right: auto;
    left: 50%;
    width: 230px;
    height: 500px;
  }
  .book-split .phone.dual-a {
    top: 8px;
    transform: translateX(-50%) rotate(-4deg);
  }
  .book-split .phone.dual-b {
    top: 390px;
    transform: translateX(-50%) rotate(5deg);
  }
  .phone-slip-leg {
    grid-template-columns: 32px minmax(0, 1fr);
  }
  .phone-slip-leg mark {
    display: none;
  }
  .footer { display: block; }
  .v2 .hero-art,
  .video-frame { min-height: 420px; }
}

/* ==========================================================
   REAL PANEL — Segundo mockup (section #bilhetes)
   Replica fiel do painel Alavancagem 10x do Megazord real.
   ========================================================== */
.device-center .phone {
  width: 270px;
  height: 580px;
}
.device-center .phone .phone-screen.real-panel {
  inset: 12px;
  border-radius: 30px;
  padding: 14px 14px 0;
  background: radial-gradient(circle at 50% 0%, rgba(52, 217, 156, .12), transparent 35%), #0a0e15;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #e7ecf3;
  font-family: 'Inter Tight', system-ui, sans-serif;
  overflow: hidden;
}

/* Header */
.real-panel .rp-header {
  padding: 10px 12px 12px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(52, 217, 156, .12), rgba(15, 26, 39, .55));
  border: 1px solid rgba(52, 217, 156, .14);
}
.real-panel .rp-radar {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #34d99c;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 700;
}
.real-panel .rp-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
}
.real-panel .rp-header p {
  margin: 3px 0 6px;
  font-size: 8.5px;
  color: #8b97a6;
  line-height: 1.3;
}
.real-panel .rp-pin {
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(8, 14, 22, .65);
  border: 1px solid rgba(52, 217, 156, .14);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.real-panel .rp-pin-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: .22em;
  color: #8b97a6;
  font-weight: 700;
}
.real-panel .rp-pin strong {
  font-size: 12px;
  font-weight: 700;
  color: #e7ecf3;
  letter-spacing: -.01em;
}

/* Filter groups */
.real-panel .rp-group {
  padding: 8px 12px 10px;
  border-radius: 12px;
  background: rgba(15, 26, 39, .55);
  border: 1px solid rgba(52, 217, 156, .08);
}
.real-panel .rp-group-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: .22em;
  color: #8b97a6;
  font-weight: 700;
  margin-bottom: 6px;
}
.real-panel .rp-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.real-panel .rp-chips span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .08);
  font-size: 11px;
  font-weight: 600;
  color: #c3cad6;
}
.real-panel .rp-chips span.active {
  background: rgba(52, 217, 156, .14);
  border-color: rgba(52, 217, 156, .28);
  color: #34d99c;
}

/* Section title */
.real-panel .rp-section {
  font-size: 14px;
  font-weight: 700;
  color: #e7ecf3;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.real-panel .rp-trophy {
  font-size: 14px;
}

/* Card */
.real-panel .rp-card {
  padding: 12px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(52, 217, 156, .07), rgba(8, 14, 22, .8));
  border: 1px solid rgba(52, 217, 156, .10);
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}
.real-panel .rp-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.real-panel .rp-card-type {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: .22em;
  color: #34d99c;
  font-weight: 700;
}
.real-panel .rp-card-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: .14em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #d4b572;
  color: #d4b572;
  background: transparent;
  font-weight: 700;
}
.real-panel .rp-card h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
}
.real-panel .rp-target {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.real-panel .rp-target span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: .22em;
  color: #8b97a6;
  font-weight: 700;
}
.real-panel .rp-target strong {
  font-size: 22px;
  font-weight: 900;
  color: #34d99c;
  letter-spacing: -.02em;
  text-shadow: 0 0 14px rgba(52, 217, 156, .35);
}
.real-panel .rp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 2px;
}
.real-panel .rp-tags span {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .08);
  font-size: 8px;
  font-weight: 600;
  color: #c3cad6;
}
.real-panel .rp-tags span.hot {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .18);
  color: #fff;
}

/* Entries */
.real-panel .rp-entry {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 8px;
  padding: 8px 9px;
  border-radius: 10px;
  background: rgba(8, 14, 22, .55);
  border: 1px solid rgba(255, 255, 255, .04);
  margin-top: 4px;
  align-items: center;
}
.real-panel .rp-entry.live { border-color: rgba(52, 217, 156, .22); }
.real-panel .rp-entry.done { opacity: .9; }
.real-panel .rp-entry-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #c3cad6;
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}
.real-panel .rp-entry-time small {
  font-size: 7px;
  font-weight: 600;
  color: #8b97a6;
  letter-spacing: .1em;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.real-panel .rp-entry-time small .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #34d99c;
  box-shadow: 0 0 6px #34d99c;
  animation: rpPulse 1.2s ease-in-out infinite;
}
.real-panel .rp-entry.live .rp-entry-time small { color: #34d99c; }
.real-panel .rp-entry-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.real-panel .rp-entry-body p {
  margin: 0;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.2;
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
}
.real-panel .rp-entry-body p i {
  font-style: normal;
  color: #8b97a6;
  margin: 0 3px;
  font-size: 9px;
  font-weight: 500;
}
.real-panel .rp-entry-body p em {
  font-style: normal;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  font-weight: 700;
  color: #34d99c;
  display: block;
  margin-top: 3px;
  letter-spacing: .02em;
  white-space: nowrap;
}
.real-panel .rp-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: .14em;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(52, 217, 156, .10);
  color: #34d99c;
  border: 1px solid rgba(52, 217, 156, .35);
  white-space: nowrap;
  flex-shrink: 0;
}
.real-panel .rp-entry-meta {
  margin-top: 4px;
}
.real-panel .rp-entry-meta span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .14em;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
}
.real-panel .rp-entry-meta span.green {
  background: rgba(52, 217, 156, .15);
  color: #34d99c;
  border: 1px solid rgba(52, 217, 156, .3);
}
.real-panel .rp-entry-meta span.live {
  background: rgba(52, 217, 156, .15);
  color: #34d99c;
  border: 1px solid rgba(52, 217, 156, .3);
}
.real-panel .rp-btn {
  height: 30px;
  padding: 0 14px;
  border-radius: 8px;
  border: 0;
  background: linear-gradient(180deg, #3b82f6, #1d4ed8);
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.real-panel .rp-btn.done {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .14);
  color: #8b97a6;
}

/* Bottom nav */
.real-panel .rp-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 14px 10px;
  margin: 6px -14px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  background: rgba(4, 9, 15, .8);
  backdrop-filter: blur(8px);
}
.real-panel .rp-nav span,
.real-panel .rp-nav b {
  font-size: 10px;
  font-weight: 600;
  color: #8b97a6;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-style: normal;
}
.real-panel .rp-nav b {
  color: #34d99c;
  font-weight: 800;
}
.real-panel .rp-badge {
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 999px;
  background: #d4b572;
  color: #0a0d12;
  margin-left: 3px;
}

@keyframes rpPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}

/* Mobile: oculta cyborg + lockup, mantém só o phone centralizado */
@media (max-width: 720px) {
  .hero-art .hero-cyborg,
  .hero-art .big-lockup,
  .hero-art .purple-shape {
    display: none !important;
  }
  .hero-art {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 560px;
  }
  .hero-art .phone.hero-phone {
    position: relative !important;
    left: auto !important; right: auto !important;
    top: auto !important; bottom: auto !important;
    width: 240px !important; height: 540px !important;
    transform: rotate(-3deg) !important;
  }
}

/* ==========================================================
   PREMIUM OVERLAY — refina paleta para clima fintech/private banking.
   Verde virou emerald sutil + champagne accents em pills/borders.
   ========================================================== */

/* Botão primário menos saturado, ring champagne sutil */
.btn-primary,
button.btn-primary,
[data-open-signup] {
  background: linear-gradient(180deg, #34d99c 0%, #059669 100%) !important;
  color: #051210 !important;
  box-shadow:
    0 8px 28px rgba(5, 150, 105, .28),
    inset 0 1px 0 rgba(255, 255, 255, .14),
    inset 0 0 0 1px rgba(212, 181, 114, .12) !important;
}
.btn-primary:hover {
  filter: brightness(1.08);
  box-shadow:
    0 10px 32px rgba(5, 150, 105, .36),
    inset 0 1px 0 rgba(255, 255, 255, .16),
    inset 0 0 0 1px rgba(212, 181, 114, .24) !important;
}

/* Topbar mais cinematic */
.topbar {
  background:
    linear-gradient(180deg, rgba(15, 22, 30, .82), rgba(10, 13, 18, .68)) !important;
  border: 1px solid rgba(212, 181, 114, .08) !important;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, .42),
    inset 0 1px 0 rgba(255, 255, 255, .04) !important;
  backdrop-filter: blur(14px);
}

/* Pill (badge "30 dias grátis") com aro champagne */
.pill {
  border: 1px solid rgba(212, 181, 114, .26) !important;
  background: linear-gradient(180deg, rgba(212, 181, 114, .08), rgba(52, 217, 156, .04)) !important;
}
.pill span {
  background: linear-gradient(135deg, #d4b572, #b89254) !important;
  color: #1a130a !important;
}

/* Destaque "Megazord" na headline com gradient premium */
.hero-copy h1 em,
.hero-copy h1 strong,
.hero-copy h1 .accent,
h1 .accent,
.center h2 b {
  background-image: linear-gradient(135deg, #a7f3d0 0%, #34d99c 50%, #d4b572 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  text-shadow: none !important;
  font-style: normal !important;
  display: inline-block;
}

/* Hero CTA "Quero ver os bilhetes agora" — secondary look more refined */
.hero-actions .btn-secondary {
  border: 1px solid rgba(212, 181, 114, .18) !important;
  background: linear-gradient(180deg, rgba(15, 22, 30, .56), rgba(10, 13, 18, .82)) !important;
  color: #e7ecf3 !important;
}

/* Feature card refinement */
.feature-card,
.step,
.ticket-card {
  background: linear-gradient(180deg, rgba(15, 22, 30, .76), rgba(10, 13, 18, .88)) !important;
  border: 1px solid rgba(212, 181, 114, .07) !important;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, .35),
    inset 0 1px 0 rgba(255, 255, 255, .03) !important;
}
.feature-card:hover,
.step:hover {
  border-color: rgba(52, 217, 156, .22) !important;
}

/* Feature icon — emerald → champagne dual tone */
.feature-icon,
.step-num {
  background: linear-gradient(180deg, rgba(52, 217, 156, .14), rgba(212, 181, 114, .10)) !important;
  border: 1px solid rgba(212, 181, 114, .22) !important;
  color: #a7f3d0 !important;
  text-shadow: 0 0 12px rgba(52, 217, 156, .3);
}

/* Brand logo card */
.brand {
  border: 1px solid rgba(212, 181, 114, .10) !important;
  background: linear-gradient(180deg, rgba(15, 22, 30, .6), rgba(10, 13, 18, .8)) !important;
}

/* Mini proof badges */
.mini-proof span,
.hero-meta span {
  background: rgba(15, 22, 30, .68) !important;
  border: 1px solid rgba(212, 181, 114, .12) !important;
  color: #c3cad6 !important;
}

/* Phone bezel — sutilmente warmer */
.phone {
  background: linear-gradient(160deg, #14181f 0%, #0a0d12 100%) !important;
  border: 1px solid rgba(212, 181, 114, .06) !important;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, .55),
    inset 0 0 0 1px rgba(255, 255, 255, .04),
    0 0 60px rgba(52, 217, 156, .06) !important;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(212, 181, 114, .08) !important;
}

