:root {
  --ink: #09090b;
  --ink-soft: #121217;
  --paper: #f6f4ef;
  --paper-muted: #e8e5dc;
  --white: #ffffff;
  --acid: #d9ff43;
  --acid-bright: #edff9f;
  --violet: #7557ff;
  --violet-dark: #4025c5;
  --coral: #ff5c35;
  --green: #20d466;
  --muted: #a7a5ad;
  --border-dark: rgba(255, 255, 255, 0.14);
  --border-light: rgba(9, 9, 11, 0.15);
  --shadow-hard: 12px 12px 0 #09090b;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 86px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

::selection {
  background: var(--acid);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-150%);
  background: var(--acid);
  color: var(--ink);
  border-radius: 10px;
  font-weight: 900;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  min-height: 100vh;
  overflow: clip;
  position: relative;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
  z-index: 0;
}

.ambient-one {
  width: 360px;
  height: 360px;
  top: 120px;
  left: -240px;
  background: rgba(117, 87, 255, 0.24);
  box-shadow: 0 0 160px 80px rgba(117, 87, 255, 0.12);
}

.ambient-two {
  width: 280px;
  height: 280px;
  top: 570px;
  right: -190px;
  background: rgba(217, 255, 67, 0.18);
  box-shadow: 0 0 140px 70px rgba(217, 255, 67, 0.08);
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(9, 9, 11, 0.86);
  border-bottom-color: var(--border-dark);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid currentColor;
  border-radius: 12px 12px 12px 4px;
  background: var(--acid);
  color: var(--ink);
  transform: rotate(-3deg);
  box-shadow: 4px 4px 0 var(--violet);
}

.brand-play {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
  margin-left: 3px;
}

.brand-name {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 24px;
  letter-spacing: 0.035em;
  line-height: 1;
}

.brand-name span {
  color: var(--acid);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: #d9d8dd;
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--acid);
  transition: right 220ms var(--ease);
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav a:hover::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 14px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background-color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-small {
  min-height: 44px;
  padding: 0 17px;
  border-radius: 12px;
  font-size: 0.72rem;
}

.button-large {
  min-height: 62px;
  padding: 0 30px;
  border-radius: 16px;
  font-size: 0.84rem;
}

.button-primary {
  background: var(--acid);
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--violet);
}

.button-primary:hover {
  box-shadow: 10px 10px 0 var(--violet);
}

.button-whatsapp {
  background: var(--green);
  color: #05160b;
}

.button-whatsapp:hover {
  background: #45e57f;
  box-shadow: 0 12px 30px rgba(32, 212, 102, 0.22);
}

.button-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 7px 7px 0 var(--violet);
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 830px;
  padding: calc(var(--header-height) + 92px) 0 70px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 75% 46%, rgba(117, 87, 255, 0.14), transparent 36%);
  background-size: 54px 54px, 54px 54px, auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--acid);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 28px;
  height: 3px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.screens-copy h2,
.statement h2,
.faq-intro h2,
.final-cta h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(4.4rem, 8vw, 7.8rem);
}

.hero h1 em,
.section-heading h2 em,
.screens-copy h2 em,
.faq-intro h2 em,
.final-cta h2 em {
  color: var(--acid);
  font-style: normal;
  -webkit-text-stroke: 1px var(--acid);
  text-shadow: 5px 5px 0 var(--violet-dark);
}

.hero-lead {
  max-width: 580px;
  margin: 30px 0 0;
  color: #c7c5cc;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding: 8px 0;
  color: #dbdae0;
  font-size: 0.86rem;
  font-weight: 800;
  transition: border-color 180ms ease, color 180ms ease;
}

.text-link:hover {
  color: var(--acid);
  border-color: var(--acid);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #aaa8b1;
  font-size: 0.74rem;
  font-weight: 720;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.hero-points svg {
  width: 17px;
  height: 17px;
  padding: 2px;
  border-radius: 50%;
  background: rgba(217, 255, 67, 0.12);
  stroke: var(--acid);
  stroke-width: 3;
  fill: none;
}

.hero-stage {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
  perspective: 1100px;
}

.stage-orbit {
  position: absolute;
  border: 1px solid rgba(217, 255, 67, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 540px;
  height: 540px;
  transform: rotate(24deg) skewX(-8deg);
}

.orbit-two {
  width: 430px;
  height: 430px;
  border-color: rgba(117, 87, 255, 0.28);
  transform: rotate(-36deg) skewY(9deg);
}

.screen-frame {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 5px solid #24242c;
  border-radius: 26px;
  background: #1b1525;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.52),
    18px 18px 0 rgba(117, 87, 255, 0.55),
    -8px -8px 0 rgba(217, 255, 67, 0.88);
  transform: rotateY(-7deg) rotateX(2deg) rotateZ(1deg);
  transition: background 500ms var(--ease), transform 400ms var(--ease);
  isolation: isolate;
}

.screen-frame:hover {
  transform: rotateY(-3deg) rotateX(1deg) rotateZ(0deg) translateY(-6px);
}

.screen-frame::before,
.screen-frame::after {
  content: "";
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(1px);
  transition: all 500ms var(--ease);
}

.screen-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background: #0b0b10;
}

.screen-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.82;
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.015);
  transition: opacity 220ms ease, transform 700ms var(--ease), filter 500ms var(--ease);
}

.screen-frame:hover .screen-media img {
  transform: scale(1.055);
}

.screen-frame[data-view="esportes"] .screen-media img,
.screen-frame[data-view="aovivo"] .screen-media img {
  object-position: 58% center;
  filter: saturate(1.12) contrast(1.08) brightness(0.9);
}

.screen-frame::before {
  width: 72%;
  height: 140%;
  top: -30%;
  right: -15%;
  background: radial-gradient(circle, rgba(255, 92, 53, 0.95), rgba(117, 87, 255, 0.2) 58%, transparent 70%);
}

.screen-frame::after {
  width: 52%;
  height: 80%;
  bottom: -30%;
  left: -10%;
  background: radial-gradient(circle, rgba(117, 87, 255, 0.9), transparent 68%);
}

.screen-frame[data-view="aovivo"] {
  background: #081e26;
}

.screen-frame[data-view="aovivo"]::before {
  background: radial-gradient(circle, rgba(24, 208, 214, 0.95), rgba(19, 82, 105, 0.45) 55%, transparent 70%);
}

.screen-frame[data-view="aovivo"]::after {
  background: radial-gradient(circle, rgba(217, 255, 67, 0.82), transparent 68%);
}

.screen-frame[data-view="esportes"] {
  background: #102015;
}

.screen-frame[data-view="esportes"]::before {
  background: radial-gradient(circle, rgba(217, 255, 67, 0.86), rgba(34, 109, 62, 0.5) 55%, transparent 70%);
}

.screen-frame[data-view="esportes"]::after {
  background: radial-gradient(circle, rgba(255, 92, 53, 0.9), transparent 68%);
}

.screen-frame[data-view="familia"] {
  background: #2b1735;
}

.screen-frame[data-view="familia"]::before {
  background: radial-gradient(circle, rgba(255, 102, 188, 0.95), rgba(117, 87, 255, 0.38) 55%, transparent 70%);
}

.screen-frame[data-view="familia"]::after {
  background: radial-gradient(circle, rgba(255, 213, 79, 0.92), transparent 68%);
}

.screen-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.2) 62%),
    repeating-linear-gradient(112deg, transparent 0 34px, rgba(255, 255, 255, 0.025) 35px 36px);
}

.screen-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 26px;
}

.screen-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.mini-mark {
  width: 19px;
  height: 19px;
  border-radius: 6px 6px 6px 2px;
  background: var(--acid);
  box-shadow: 2px 2px 0 var(--violet);
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.live-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 92, 53, 0.2);
  animation: live-pulse 1.8s ease infinite;
}

.screen-content {
  position: absolute;
  left: 9%;
  bottom: 15%;
  max-width: 64%;
}

.screen-kicker {
  margin: 0 0 8px;
  color: var(--acid);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.screen-content h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3.1vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.screen-content p:not(.screen-kicker) {
  margin: 10px 0 15px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
}

.screen-watch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.54rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.screen-watch b {
  color: var(--violet);
}

.screen-progress {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  gap: 5px;
}

.screen-progress span {
  width: 22px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.28);
}

.screen-progress span:first-child {
  width: 38px;
  background: var(--acid);
}

.mode-switcher {
  position: absolute;
  z-index: 4;
  bottom: 12px;
  left: 50%;
  display: flex;
  gap: 6px;
  padding: 6px;
  transform: translateX(-50%);
  border: 1px solid var(--border-dark);
  border-radius: 13px;
  background: rgba(15, 15, 19, 0.92);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}

.mode-switcher button {
  padding: 8px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #aaa8b1;
  cursor: pointer;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.mode-switcher button.is-active {
  background: var(--acid);
  color: var(--ink);
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  background: rgba(14, 14, 18, 0.88);
  color: #c7c5cc;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
  font-size: 0.67rem;
  animation: float-card 5s ease-in-out infinite;
}

.floating-card b {
  display: block;
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.floating-card-one {
  top: 87px;
  right: -18px;
}

.floating-card-two {
  bottom: 92px;
  left: -18px;
  animation-delay: -2.5s;
}

.floating-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--violet);
  color: var(--white);
  font-size: 0.75rem;
}

.pulse-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(32, 212, 102, 0.14);
}

.hero-footnote {
  margin-top: 30px;
}

.hero-footnote p {
  max-width: 650px;
  margin: 0;
  color: #77757d;
  font-size: 0.68rem;
  line-height: 1.5;
}

.signal-strip {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 17px 0;
  transform: rotate(-1deg) scale(1.02);
  background: var(--acid);
  color: var(--ink);
}

.signal-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 24px;
  animation: marquee 26s linear infinite;
}

.signal-track span {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.075em;
}

.signal-track i {
  color: var(--violet);
  font-size: 1.25rem;
  font-style: normal;
}

.experience {
  position: relative;
  z-index: 2;
  background: var(--paper);
  color: var(--ink);
}

.experience .eyebrow,
.screens .eyebrow,
.steps .eyebrow,
.faq .eyebrow {
  color: var(--violet-dark);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 390px);
  align-items: end;
  gap: 30px 60px;
  margin-bottom: 58px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -12px;
}

.section-heading h2,
.screens-copy h2,
.faq-intro h2 {
  font-size: clamp(3.2rem, 6vw, 5.8rem);
}

.section-heading h2 em,
.screens-copy h2 em,
.faq-intro h2 em {
  color: var(--violet);
  -webkit-text-stroke: 0;
  text-shadow: 4px 4px 0 var(--acid);
}

.section-heading > p:last-child,
.screens-copy > p,
.faq-intro > p:last-child {
  margin: 0 0 8px;
  color: #5e5c62;
  font-size: 1.05rem;
  line-height: 1.7;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.91fr 0.91fr;
  gap: 22px;
}

.feature-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform 250ms var(--ease), box-shadow 250ms var(--ease);
}

.feature-card:hover {
  transform: translate(-3px, -5px);
  box-shadow: 13px 14px 0 var(--ink);
}

.feature-number {
  position: absolute;
  z-index: 3;
  top: 17px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

.feature-visual {
  position: relative;
  height: 265px;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background: var(--violet);
}

.feature-cinema .feature-visual {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 92, 53, 0.92), transparent 36%),
    linear-gradient(140deg, #28164d, var(--violet));
}

.film-frame {
  position: absolute;
  width: 58%;
  aspect-ratio: 1.4;
  border: 3px solid var(--ink);
  border-radius: 14px;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.12), transparent),
    repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.13) 0 12px, transparent 12px 24px);
  box-shadow: 7px 7px 0 rgba(9, 9, 11, 0.86);
}

.frame-a {
  left: 14%;
  top: 20%;
  transform: rotate(-8deg);
}

.frame-b {
  right: 8%;
  bottom: 8%;
  background:
    radial-gradient(circle at 60% 45%, var(--coral), transparent 28%),
    linear-gradient(140deg, #15151a, #4730a8);
  transform: rotate(8deg);
}

.film-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%) rotate(-5deg);
  border: 3px solid var(--ink);
  border-radius: 20px;
  background: var(--acid);
  box-shadow: 6px 6px 0 var(--ink);
  font-size: 1.2rem;
}

.sport-visual {
  background: linear-gradient(135deg, #173d24, #48a85f);
}

.sport-visual::before,
.sport-visual::after {
  content: "";
  position: absolute;
  border: 3px solid rgba(255, 255, 255, 0.5);
}

.sport-visual::before {
  inset: -40% 20% -40%;
  border-radius: 50%;
}

.sport-visual::after {
  top: 0;
  bottom: 0;
  left: 50%;
}

.field-line {
  position: absolute;
  inset: 17px;
  border: 3px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
}

.ball {
  position: absolute;
  z-index: 2;
  left: 24%;
  bottom: 24%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 1.1rem;
}

.score {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 28px;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--acid);
  box-shadow: 5px 5px 0 var(--ink);
  line-height: 1;
}

.score small,
.score strong {
  display: block;
}

.score small {
  margin-bottom: 5px;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.score strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.25rem;
}

.family-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  background:
    radial-gradient(circle at 20% 20%, var(--acid), transparent 22%),
    radial-gradient(circle at 80% 65%, var(--coral), transparent 26%),
    linear-gradient(145deg, #ff8ccc, var(--violet));
}

.family-visual > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 1.25rem;
  transform: rotate(-8deg);
}

.family-visual > span:nth-child(2) {
  background: var(--acid);
  transform: translateY(-20px) rotate(7deg);
}

.family-visual > span:nth-child(3) {
  background: var(--coral);
  transform: rotate(11deg);
}

.smile {
  position: absolute;
  bottom: 18px;
  right: 24px;
  font-size: 3rem;
  font-weight: 900;
  transform: rotate(-12deg);
}

.feature-copy {
  padding: 28px 27px 30px;
}

.feature-tag {
  margin: 0 0 12px;
  color: var(--violet-dark);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.feature-copy h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.3vw, 1.75rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.feature-copy > p:last-child {
  margin: 15px 0 0;
  color: #66646a;
  font-size: 0.92rem;
}

.screens {
  position: relative;
  background: var(--acid);
  color: var(--ink);
}

.screens::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 25%, rgba(117, 87, 255, 0.18), transparent 28%),
    linear-gradient(rgba(9, 9, 11, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 9, 11, 0.05) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
  pointer-events: none;
}

.screens-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 80px;
}

.screens-copy > p {
  max-width: 430px;
  margin: 28px 0 30px;
  color: rgba(9, 9, 11, 0.68);
}

.platform-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  transform: rotate(1.2deg);
}

.platform-card {
  min-height: 155px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 7px 7px 0 var(--ink);
  transition: transform 200ms var(--ease), background-color 200ms ease;
}

.platform-card:hover {
  transform: translate(-2px, -4px) rotate(-1deg);
  background: var(--white);
}

.platform-card svg {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  stroke: var(--ink);
  stroke-width: 3;
  fill: none;
}

.platform-card svg .fill-mark {
  fill: var(--violet);
  stroke: var(--violet);
}

.platform-card small,
.platform-card b {
  display: block;
}

.platform-card small {
  margin-bottom: 4px;
  color: #77747a;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.platform-card b {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.035em;
}

.platform-wide {
  grid-column: span 2;
}

.platform-accent {
  background: var(--violet);
  color: var(--white);
}

.platform-accent svg {
  stroke: var(--white);
}

.platform-accent small {
  color: rgba(255, 255, 255, 0.66);
}

.platform-outline {
  min-height: 112px;
  display: block;
  background: transparent;
  border-style: dashed;
  box-shadow: none;
}

.platform-words {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  letter-spacing: 0.04em;
}

.platform-words i {
  color: var(--violet);
  font-style: normal;
}

.platform-outline p {
  margin: 5px 0 0;
  color: rgba(9, 9, 11, 0.62);
  font-size: 0.74rem;
}

.compatibility-note {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid rgba(9, 9, 11, 0.2);
}

.compatibility-note svg {
  flex: 0 0 23px;
  width: 23px;
  height: 23px;
  margin-top: 2px;
  stroke: var(--ink);
  stroke-width: 2;
  fill: none;
}

.compatibility-note p {
  max-width: 820px;
  margin: 0;
  color: rgba(9, 9, 11, 0.68);
  font-size: 0.78rem;
}

.steps {
  background: var(--paper);
  color: var(--ink);
}

.section-heading-center {
  display: block;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.section-heading-center .eyebrow {
  justify-content: center;
  margin-bottom: 22px;
}

.section-heading-center h2 {
  margin-bottom: 20px;
}

.section-heading-center > p:last-child {
  max-width: 530px;
  margin-inline: auto;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0;
  margin: 64px 0 0;
  list-style: none;
}

.step-list li {
  position: relative;
  min-height: 310px;
  padding: 38px 34px;
  border: 2px solid var(--ink);
  background: var(--white);
}

.step-list li:first-child {
  border-radius: 24px 0 0 24px;
}

.step-list li:last-child {
  border-radius: 0 24px 24px 0;
}

.step-list li + li {
  border-left: 0;
}

.step-list li:nth-child(2) {
  background: var(--violet);
  color: var(--white);
}

.step-list li:nth-child(2) p {
  color: rgba(255, 255, 255, 0.7);
}

.step-number {
  position: absolute;
  top: 24px;
  right: 25px;
  color: rgba(9, 9, 11, 0.2);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2.2rem;
}

.step-list li:nth-child(2) .step-number {
  color: rgba(255, 255, 255, 0.22);
}

.step-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 34px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--acid);
  box-shadow: 5px 5px 0 var(--ink);
  transform: rotate(-3deg);
}

.step-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--ink);
  stroke-width: 1.8;
  fill: none;
}

.step-list h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.step-list p {
  margin: 12px 0 0;
  color: #66646a;
  font-size: 0.9rem;
}

.statement {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: var(--violet);
  color: var(--white);
}

.statement::before {
  content: "PLAY";
  position: absolute;
  top: 50%;
  left: -3%;
  transform: translateY(-50%);
  color: transparent;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(14rem, 31vw, 34rem);
  line-height: 1;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.statement-noise {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, transparent 0 44px, rgba(255, 255, 255, 0.025) 45px 46px),
    radial-gradient(circle at 85% 20%, rgba(217, 255, 67, 0.28), transparent 26%);
}

.statement-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.statement-inner > p {
  position: absolute;
  top: -30px;
  left: 5px;
  margin: 0;
  color: var(--acid);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.statement h2 {
  font-size: clamp(4.2rem, 9.5vw, 9.2rem);
}

.statement h2 em {
  color: var(--acid);
  font-style: normal;
  -webkit-text-stroke: 0;
  text-shadow: 7px 7px 0 var(--ink);
}

.round-link {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 190px;
  height: 190px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.35;
  transform: rotate(5deg);
  transition: transform 250ms var(--ease), box-shadow 250ms var(--ease);
}

.round-link:hover {
  transform: rotate(0) scale(1.04);
  box-shadow: 16px 16px 0 var(--ink);
}

.round-link b {
  font-size: 1.9rem;
}

.faq {
  background: var(--paper);
  color: var(--ink);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}

.faq-intro > p:last-child {
  max-width: 340px;
  margin-top: 26px;
}

.faq-list {
  border-top: 2px solid var(--ink);
}

.faq-list details {
  border-bottom: 2px solid var(--ink);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 4px;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 820;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -5px 50px 24px 4px;
  color: #5f5d63;
  font-size: 0.94rem;
}

.final-cta {
  position: relative;
  padding: 94px 0;
  border-bottom: 1px solid var(--border-dark);
  background:
    radial-gradient(circle at 20% 50%, rgba(117, 87, 255, 0.3), transparent 32%),
    var(--ink);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  align-items: center;
  gap: 70px;
}

.final-cta h2 {
  font-size: clamp(3.8rem, 7vw, 7rem);
}

.final-action {
  padding-left: 50px;
  border-left: 1px solid var(--border-dark);
}

.final-action p {
  max-width: 370px;
  margin: 0 0 25px;
  color: #b6b4bd;
}

.final-action small {
  display: block;
  margin-top: 15px;
  color: #77757d;
  font-size: 0.73rem;
  letter-spacing: 0.06em;
}

.site-footer {
  padding: 55px 0 30px;
  background: var(--ink);
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

.brand-footer .brand-mark {
  width: 35px;
  height: 35px;
}

.footer-main > div > p {
  margin: 20px 0 0;
  color: #77757d;
  font-size: 0.82rem;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
}

.footer-main nav a {
  color: #aaa8b1;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-main nav a:hover {
  color: var(--acid);
}

.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--border-dark);
  color: #626169;
  font-size: 0.65rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:last-child {
  max-width: 490px;
  text-align: right;
}

.mobile-whatsapp {
  display: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.js [data-reveal][data-delay="1"] {
  transition-delay: 100ms;
}

.js [data-reveal][data-delay="2"] {
  transition-delay: 200ms;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255, 92, 53, 0.2); }
  50% { box-shadow: 0 0 0 7px rgba(255, 92, 53, 0.02); }
}

@keyframes float-card {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Privacy page */
.legal-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--ink);
  background-size: 54px 54px;
}

.legal-header {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-dark);
}

.legal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.back-link {
  color: var(--acid);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-content {
  width: min(calc(100% - 40px), 820px);
  margin: 0 auto;
  padding: 85px 0 110px;
}

.legal-content h1 {
  margin: 0 0 22px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.3rem, 8vw, 6.4rem);
  line-height: 0.93;
  text-transform: uppercase;
}

.legal-content h1 em {
  color: var(--acid);
  font-style: normal;
}

.legal-content > p:first-of-type {
  color: #aaa8b1;
}

.legal-card {
  margin-top: 44px;
  padding: 34px;
  border: 1px solid var(--border-dark);
  border-radius: 22px;
  background: var(--ink-soft);
}

.legal-card h2 {
  margin: 35px 0 10px;
  color: var(--acid);
  font-size: 1.05rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: #bbb9c1;
  font-size: 0.92rem;
}

.legal-card a {
  color: var(--acid);
  text-decoration: underline;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(4rem, 7.2vw, 6.2rem);
  }

  .hero-stage {
    min-height: 540px;
  }

  .floating-card-one {
    right: 0;
  }

  .floating-card-two {
    left: 0;
  }

  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card:first-child {
    grid-column: span 2;
  }

  .screens-layout {
    gap: 45px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: -1;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 8px 20px;
    transform: translateY(-16px) scale(0.98);
    border: 1px solid var(--border-dark);
    border-radius: 18px;
    background: rgba(15, 15, 19, 0.98);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .main-nav.is-open {
    z-index: 1;
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
  }

  .main-nav a {
    padding: 15px 2px;
    border-bottom: 1px solid var(--border-dark);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 62px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .hero-stage {
    width: min(100%, 650px);
    min-height: 550px;
    margin-inline: auto;
  }

  .screen-frame {
    width: min(90%, 560px);
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    max-width: 560px;
  }

  .screens-layout,
  .faq-layout,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .screens-copy {
    max-width: 620px;
  }

  .platform-wall {
    transform: none;
  }

  .faq-layout {
    gap: 55px;
  }

  .faq-intro > p:last-child {
    max-width: 560px;
  }

  .final-action {
    padding: 36px 0 0;
    border-top: 1px solid var(--border-dark);
    border-left: 0;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 72px;
  }

  .section {
    padding: 84px 0;
  }

  .brand-name {
    font-size: 21px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero {
    padding-bottom: 52px;
    background-size: 34px 34px, 34px 34px, auto;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 18vw, 5.5rem);
  }

  .hero-lead {
    margin-top: 23px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: center;
  }

  .hero-points {
    display: grid;
    gap: 9px;
    margin-top: 27px;
  }

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

  .stage-orbit {
    display: none;
  }

  .screen-frame {
    width: 100%;
    border-width: 3px;
    border-radius: 20px;
    box-shadow: 9px 9px 0 rgba(117, 87, 255, 0.72), -5px -5px 0 var(--acid);
    transform: rotateY(0) rotateZ(0);
  }

  .screen-frame:hover {
    transform: translateY(-3px);
  }

  .screen-topbar {
    padding: 15px 17px;
  }

  .screen-content {
    left: 7%;
    bottom: 15%;
    max-width: 72%;
  }

  .screen-content h2 {
    font-size: clamp(1.28rem, 6vw, 2rem);
  }

  .screen-content p:not(.screen-kicker) {
    display: none;
  }

  .screen-watch {
    margin-top: 10px;
  }

  .screen-progress {
    right: 15px;
    bottom: 15px;
  }

  .mode-switcher {
    bottom: 0;
    max-width: 100%;
    overflow-x: auto;
  }

  .mode-switcher button {
    padding: 8px 10px;
  }

  .floating-card {
    display: none;
  }

  .hero-footnote {
    margin-top: 18px;
  }

  .signal-strip {
    padding: 13px 0;
  }

  .signal-track span {
    font-size: 0.88rem;
  }

  .section-heading {
    gap: 22px;
    margin-bottom: 38px;
  }

  .section-heading .eyebrow {
    margin-bottom: 0;
  }

  .section-heading h2,
  .screens-copy h2,
  .faq-intro h2 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-card,
  .feature-card:first-child {
    grid-column: auto;
    min-height: 470px;
  }

  .feature-visual {
    height: 240px;
  }

  .platform-wall {
    grid-template-columns: 1fr;
  }

  .platform-card,
  .platform-wide {
    grid-column: auto;
  }

  .platform-card {
    min-height: 125px;
  }

  .platform-outline {
    min-height: 118px;
  }

  .step-list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 44px;
  }

  .step-list li {
    min-height: 260px;
  }

  .step-list li:first-child {
    border-radius: 22px 22px 0 0;
  }

  .step-list li:last-child {
    border-radius: 0 0 22px 22px;
  }

  .step-list li + li {
    border-top: 0;
    border-left: 2px solid var(--ink);
  }

  .statement {
    padding: 105px 0;
  }

  .statement-inner {
    display: block;
  }

  .statement h2 {
    font-size: clamp(4rem, 19vw, 6.5rem);
  }

  .round-link {
    width: 150px;
    height: 150px;
    margin: 48px 12px 0 auto;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .faq-layout {
    gap: 40px;
  }

  .faq-list summary {
    padding: 21px 3px;
    font-size: 0.92rem;
  }

  .faq-list details p {
    margin-right: 10px;
    font-size: 0.88rem;
  }

  .final-cta {
    padding: 80px 0;
  }

  .final-cta h2 {
    font-size: clamp(3.6rem, 17vw, 5.8rem);
  }

  .final-action .button {
    width: 100%;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main nav {
    display: grid;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }

  .mobile-whatsapp {
    position: fixed;
    z-index: 1100;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 56px;
    border: 2px solid #061b0d;
    border-radius: 15px;
    background: var(--green);
    color: #05160b;
    box-shadow: 0 9px 28px rgba(0, 0, 0, 0.45);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.06em;
  }

  .mobile-whatsapp svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
  }

  .legal-header .brand-name {
    display: none;
  }

  .legal-content {
    padding-top: 60px;
  }

  .legal-card {
    padding: 25px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
