:root {
  --bg: #070911;
  --bg-soft: #0b0e18;
  --surface: rgba(16, 20, 34, 0.82);
  --surface-solid: #111524;
  --surface-2: #171c2e;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.17);
  --text: #f6f7fb;
  --muted: #a6adbd;
  --muted-2: #747d91;
  --pink: #ff3d7f;
  --pink-2: #ff6ca5;
  --violet: #8b5cf6;
  --cyan: #45d7ff;
  --blue: #4992ff;
  --green: #45e0a8;
  --yellow: #ffce68;
  --red: #ff626b;
  --radius: 28px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  --font: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Space Grotesk", var(--font);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  /* A animacao de entrada das secoes empurra os blocos pro lado antes de
     encaixar. Em tela estreita eles passavam da borda e a pagina virava
     arrastavel na horizontal. `clip` corta a sobra SEM criar uma caixa de
     rolagem — usar `hidden` aqui quebraria o cabecalho grudento. */
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 61, 127, 0.08), transparent 25rem),
    radial-gradient(circle at 85% 20%, rgba(69, 215, 255, 0.08), transparent 27rem),
    var(--bg);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(69, 215, 255, 0.75);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  color: #081018;
  background: var(--cyan);
  border-radius: 10px;
  font-weight: 800;
  transform: translateY(-150%);
}

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

.shell {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 94px 0;
}

.section-shell {
  position: relative;
}

.ambient,
.page-grid {
  position: fixed;
  z-index: -2;
  pointer-events: none;
}

.page-grid {
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.ambient {
  width: 420px;
  height: 420px;
  filter: blur(110px);
  opacity: 0.11;
  border-radius: 999px;
}

.ambient-one {
  top: 12%;
  left: -180px;
  background: var(--pink);
}

.ambient-two {
  top: 55%;
  right: -200px;
  background: var(--cyan);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(7, 9, 17, 0.55);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(7, 9, 17, 0.86);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 82px;
  gap: 28px;
}

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

.brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  background: linear-gradient(145deg, #1a1f30, #0e111d);
  box-shadow: 0 10px 25px rgba(255, 61, 127, 0.18);
  place-items: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  line-height: 1.12;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 17px;
}

.brand-copy small {
  display: flex;
  align-items: center;
  margin-top: 5px;
  gap: 6px;
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-copy small i {
  color: var(--green);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 6px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  padding: 10px 13px;
  gap: 8px;
  color: #b7becc;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: 180ms ease;
}

.main-nav a i {
  color: var(--muted-2);
  transition: 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.055);
}

.main-nav a:hover i,
.main-nav a.active i {
  color: var(--pink-2);
}

.main-nav .nav-download {
  min-height: 42px;
  padding: 6px 7px 6px 12px;
  gap: 9px;
  color: #fff;
  border-color: rgba(255, 61, 127, .34);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 45, 118, .2), rgba(69, 215, 255, .08));
  box-shadow: 0 10px 26px rgba(255, 45, 118, .12), inset 0 1px rgba(255, 255, 255, .08);
  font-size: 11px;
  font-weight: 900;
}

.main-nav .nav-download > i:first-child {
  color: #ff6da1;
  font-size: 15px;
}

.main-nav .nav-download > i:last-child {
  display: grid;
  width: 28px;
  height: 28px;
  color: #fff;
  border-radius: 9px;
  background: linear-gradient(135deg, #ff2d76, #d94cb1);
  box-shadow: 0 7px 16px rgba(255, 45, 118, .25);
  place-items: center;
}

.main-nav .nav-download:hover,
.main-nav .nav-download.active {
  color: #fff;
  border-color: rgba(255, 109, 161, .58);
  background: linear-gradient(135deg, rgba(255, 45, 118, .29), rgba(69, 215, 255, .12));
  box-shadow: 0 13px 30px rgba(255, 45, 118, .2), inset 0 1px rgba(255, 255, 255, .11);
  transform: translateY(-1px);
}

.main-nav .nav-download:hover > i:first-child,
.main-nav .nav-download.active > i:first-child,
.main-nav .nav-download:hover > i:last-child,
.main-nav .nav-download.active > i:last-child { color: #fff; }

.header-status {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 9px 12px;
  gap: 8px;
  color: #bff9e2;
  border: 1px solid rgba(69, 224, 168, 0.2);
  border-radius: 999px;
  background: rgba(69, 224, 168, 0.08);
  font-size: 11px;
  font-weight: 800;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(69, 224, 168, 0.12), 0 0 14px var(--green);
}

.menu-toggle {
  display: none;
  align-items: center;
  padding: 9px 12px;
  gap: 8px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-solid);
  cursor: pointer;
}

.hero {
  padding: 64px 0 38px;
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(450px, 0.88fr);
  min-height: 650px;
  gap: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 39px;
  padding: 9px 14px;
  gap: 10px;
  color: #ffc2d8;
  border: 1px solid rgba(255, 61, 127, 0.24);
  border-radius: 999px;
  background: rgba(255, 61, 127, 0.08);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow i {
  color: var(--pink);
  font-size: 16px;
}

.eyebrow-green {
  color: #b9f7df;
  border-color: rgba(69, 224, 168, 0.23);
  background: rgba(69, 224, 168, 0.08);
}

.eyebrow-green i {
  color: var(--green);
}

.eyebrow-blue {
  color: #bdeeff;
  border-color: rgba(69, 215, 255, 0.24);
  background: rgba(69, 215, 255, 0.08);
}

.eyebrow-blue i {
  color: var(--cyan);
}

.hero h1,
.section-heading h2,
.security-copy h2,
.scanner-copy h2,
.media-copy h2,
.faq-heading h2,
.download-copy h2,
.trust-heading h2 {
  margin: 24px 0 20px;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(58px, 6.4vw, 92px);
  line-height: 1;
}

.hero h1 span,
.section-heading h2 span,
.security-copy h2 span,
.scanner-copy h2 span,
.media-copy h2 span,
.faq-heading h2 span {
  color: transparent;
  background: linear-gradient(90deg, var(--pink) 0%, #df87c3 46%, var(--cyan) 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero h1 .hero-title-line {
  display: block;
  width: fit-content;
  padding: .035em .065em .07em 0;
  line-height: 1.04;
}

.hero h1 .hero-title-line + .hero-title-line {
  margin-top: -.12em;
}

.hero h1 .hero-title-plain {
  color: var(--text);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.hero-lead {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 19px;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 620ms cubic-bezier(.16, 1, .3, 1), border-color 480ms ease, background 480ms ease, box-shadow 620ms cubic-bezier(.16, 1, .3, 1);
}

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

.button-primary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, #ff185f, var(--pink) 52%, #cb3f9c);
  box-shadow: 0 14px 38px rgba(255, 61, 127, 0.28);
}

.button-primary:hover {
  box-shadow: 0 18px 44px rgba(255, 61, 127, 0.36);
}

.button-ghost {
  color: #d5dae4;
  background: rgba(255, 255, 255, 0.045);
}

.button-ghost:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.075);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  margin-top: 27px;
  gap: 9px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  gap: 7px;
  color: #98a0b0;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 11px;
  font-weight: 700;
}

.hero-proof span:nth-child(1) i { color: var(--pink); }
.hero-proof span:nth-child(2) i { color: var(--green); }
.hero-proof span:nth-child(3) i { color: var(--cyan); }

/* Entrada exclusiva da primeira dobra: cada camada chega em um tempo próprio. */
.hero-copy.hero-sequence.reveal,
.hero-visual.hero-sequence.reveal,
.category-strip.hero-sequence.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.hero-copy.hero-sequence .eyebrow,
.hero-copy.hero-sequence .hero-title-line,
.hero-copy.hero-sequence .hero-lead,
.hero-copy.hero-sequence .hero-actions .button,
.hero-copy.hero-sequence .hero-proof span {
  opacity: 0;
  filter: blur(11px);
  will-change: opacity, filter, transform;
}

.hero-copy.hero-sequence .eyebrow {
  transform: translate3d(-26px, -18px, 0) scale(.88) rotate(-2deg);
  transition: opacity 620ms ease 60ms, filter 760ms ease 60ms, transform 920ms cubic-bezier(.16, 1, .3, 1) 60ms;
}

.hero-copy.hero-sequence .hero-title-line {
  clip-path: inset(0 0 100% 0 round 12px);
  transform: perspective(900px) translate3d(0, 58px, -70px) rotateX(-17deg) scale(.94);
  transform-origin: 0 100%;
  transition: opacity 650ms ease, filter 850ms ease, clip-path 900ms cubic-bezier(.16, 1, .3, 1), transform 1080ms cubic-bezier(.16, 1, .3, 1);
}

.hero-copy.hero-sequence .hero-title-line:nth-child(1) { transition-delay: 170ms; }
.hero-copy.hero-sequence .hero-title-line:nth-child(2) { transition-delay: 300ms; background-position: 0 50%; background-size: 100% 100%; }
.hero-copy.hero-sequence .hero-title-line:nth-child(3) { transition-delay: 430ms; background-position: 0 50%; background-size: 100% 100%; }

.hero-copy.hero-sequence .hero-lead {
  transform: translate3d(0, 28px, 0);
  transition: opacity 650ms ease 590ms, filter 780ms ease 590ms, transform 900ms cubic-bezier(.16, 1, .3, 1) 590ms;
}

.hero-copy.hero-sequence .hero-actions .button {
  transform: translate3d(0, 26px, 0) scale(.86);
  transition: opacity 560ms ease, filter 650ms ease, transform 840ms cubic-bezier(.18, 1.35, .32, 1), border-color 480ms ease, background 480ms ease, box-shadow 620ms cubic-bezier(.16, 1, .3, 1);
}

.hero-copy.hero-sequence .hero-actions .button:nth-child(1) { transition-delay: 750ms; }
.hero-copy.hero-sequence .hero-actions .button:nth-child(2) { transition-delay: 880ms; }

.hero-copy.hero-sequence .hero-proof span {
  transform: translate3d(0, 18px, 0) scale(.82);
  transition: opacity 480ms ease, filter 560ms ease, transform 720ms cubic-bezier(.18, 1.35, .32, 1);
}

.hero-copy.hero-sequence .hero-proof span:nth-child(1) { transition-delay: 1030ms; }
.hero-copy.hero-sequence .hero-proof span:nth-child(2) { transition-delay: 1130ms; }
.hero-copy.hero-sequence .hero-proof span:nth-child(3) { transition-delay: 1230ms; }

.hero-copy.hero-sequence.is-visible .eyebrow,
.hero-copy.hero-sequence.is-visible .hero-title-line,
.hero-copy.hero-sequence.is-visible .hero-lead,
.hero-copy.hero-sequence.is-visible .hero-actions .button,
.hero-copy.hero-sequence.is-visible .hero-proof span {
  opacity: 1;
  filter: blur(0);
  clip-path: inset(0 0 0 0 round 0);
  transform: none;
}

.hero-visual {
  --hero-tilt-x: 0deg;
  --hero-tilt-y: 0deg;
  --hero-card-left-x: 0px;
  --hero-card-left-y: 0px;
  --hero-card-right-x: 0px;
  --hero-card-right-y: 0px;
  --hero-note-x: 0px;
  --hero-note-y: 0px;
  --hero-orbit-x: 0px;
  --hero-orbit-y: 0px;
  --hero-halo-x: 0px;
  --hero-halo-y: 0px;
  --hero-scale: 1;
  --hero-idle-lift: 0px;
  --hero-idle-tilt-x: 0deg;
  --hero-idle-tilt-y: 0deg;
  --hero-idle-roll: 0deg;
  position: relative;
  display: grid;
  min-height: 650px;
  translate: 0 -36px;
  place-items: center;
  isolation: isolate;
  perspective: 950px;
}

.hero-visual.hero-sequence .phone {
  opacity: 0;
  filter: blur(15px) drop-shadow(0 48px 58px rgba(0, 0, 0, .25));
  transform: translate3d(105px, 42px, -170px) rotateX(8deg) rotateY(-18deg) rotateZ(8deg);
  transition: opacity 760ms ease 320ms, filter 1040ms ease 320ms, transform 1400ms cubic-bezier(.16, 1, .3, 1) 320ms;
}

.hero-visual.hero-sequence .apk-ui-nav,
.hero-visual.hero-sequence .apk-ui-greeting,
.hero-visual.hero-sequence .apk-ui-search,
.hero-visual.hero-sequence .apk-ui-converter,
.hero-visual.hero-sequence .apk-ui-recent {
  opacity: 0;
  filter: blur(7px);
  translate: 0 18px;
  scale: .96;
  transition: opacity 560ms ease, filter 720ms ease, translate 820ms cubic-bezier(.16, 1, .3, 1), scale 820ms cubic-bezier(.16, 1, .3, 1);
}

.hero-visual.hero-sequence .apk-ui-nav { translate: 0 -16px; transition-delay: 880ms; }
.hero-visual.hero-sequence .apk-ui-greeting { transition-delay: 1010ms; }
.hero-visual.hero-sequence .apk-ui-search { transition-delay: 1140ms; }
.hero-visual.hero-sequence .apk-ui-converter { transition-delay: 1270ms; }
.hero-visual.hero-sequence .apk-ui-recent { transition-delay: 1400ms; }

.hero-visual.hero-sequence.is-visible .apk-ui-nav,
.hero-visual.hero-sequence.is-visible .apk-ui-greeting,
.hero-visual.hero-sequence.is-visible .apk-ui-search,
.hero-visual.hero-sequence.is-visible .apk-ui-converter,
.hero-visual.hero-sequence.is-visible .apk-ui-recent {
  opacity: 1;
  filter: blur(0);
  translate: 0 0;
  scale: 1;
}

.hero-visual.hero-sequence .floating-badge,
.hero-visual.hero-sequence .floating-note {
  opacity: 0;
  filter: blur(9px);
  clip-path: inset(34% 42% round 18px);
  transition: opacity 560ms ease, filter 760ms ease, clip-path 900ms cubic-bezier(.16, 1, .3, 1), border-color 380ms ease, box-shadow 380ms ease;
}

.hero-visual.hero-sequence .badge-spam { transition-delay: 1560ms; }
.hero-visual.hero-sequence .floating-note { transition-delay: 1720ms; }
.hero-visual.hero-sequence .badge-scan { transition-delay: 1880ms; }

.hero-visual.hero-sequence.is-visible .phone-screen::after {
  animation: phone-screen-sweep 1120ms cubic-bezier(.22, .72, .2, 1) 1280ms both;
}

.hero-visual.hero-sequence.is-visible .floating-badge,
.hero-visual.hero-sequence.is-visible .floating-note {
  opacity: 1;
  filter: blur(0);
  clip-path: inset(0 round 0);
}

.hero-visual.hero-sequence.is-visible .phone {
  opacity: 1;
  filter: blur(0) drop-shadow(0 48px 58px rgba(0, 0, 0, .54));
  transform: translate3d(0, 0, 0) rotateX(0) rotateY(0) rotateZ(2.4deg);
}

.category-strip.hero-sequence article {
  --hero-card-delay: 2050ms;
  opacity: 0;
  filter: blur(9px);
  transform: perspective(900px) translate3d(0, 34px, -55px) rotateX(9deg) scale(.94);
  transform-origin: 50% 100%;
  transition: opacity 620ms ease var(--hero-card-delay), filter 760ms ease var(--hero-card-delay), transform 920ms cubic-bezier(.16, 1, .3, 1) var(--hero-card-delay), border-color 620ms ease, background 620ms ease, box-shadow 760ms cubic-bezier(.16, 1, .3, 1);
}

.category-strip.hero-sequence article:nth-child(2) { --hero-card-delay: 2180ms; }
.category-strip.hero-sequence article:nth-child(3) { --hero-card-delay: 2310ms; }
.category-strip.hero-sequence article:nth-child(4) { --hero-card-delay: 2440ms; }

.category-strip.hero-sequence article .category-icon,
.category-strip.hero-sequence article > div,
.category-strip.hero-sequence article > i {
  opacity: 0;
  filter: blur(5px);
  translate: 0 14px;
  transition: opacity 460ms ease calc(var(--hero-card-delay) + 100ms), filter 560ms ease calc(var(--hero-card-delay) + 100ms), translate 680ms cubic-bezier(.16, 1, .3, 1) calc(var(--hero-card-delay) + 100ms), scale 680ms cubic-bezier(.16, 1, .3, 1) calc(var(--hero-card-delay) + 100ms);
}

.category-strip.hero-sequence article .category-icon { scale: .72; }
.category-strip.hero-sequence article > div { transition-delay: calc(var(--hero-card-delay) + 180ms); }
.category-strip.hero-sequence article > i { translate: -12px 0; transition-delay: calc(var(--hero-card-delay) + 260ms); }

.category-strip.hero-sequence.is-visible article,
.category-strip.hero-sequence.is-visible article .category-icon,
.category-strip.hero-sequence.is-visible article > div,
.category-strip.hero-sequence.is-visible article > i {
  opacity: 1;
  filter: blur(0);
  translate: 0 0;
  scale: 1;
}

.category-strip.hero-sequence.is-visible article { transform: none; }

@keyframes phone-screen-sweep {
  0% { left: -62%; opacity: 0; }
  18% { opacity: .72; }
  72% { opacity: .28; }
  100% { left: 128%; opacity: 0; }
}

.visual-halo {
  position: absolute;
  z-index: -2;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: conic-gradient(from 10deg, rgba(255, 61, 127, .22), rgba(139, 92, 246, .08), rgba(69, 215, 255, .18), rgba(255, 61, 127, .22));
  filter: blur(26px);
  translate: var(--hero-halo-x) var(--hero-halo-y);
  animation: halo-breathe 5s ease-in-out infinite;
  will-change: translate;
}

.phone {
  position: relative;
  z-index: 4;
  width: 326px;
  transform: rotate(2.4deg);
  filter: drop-shadow(0 48px 58px rgba(0, 0, 0, 0.54));
  transform-style: preserve-3d;
  will-change: transform;
}

.phone-frame {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(226, 233, 245, 0.48);
  border-radius: 50px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .23), transparent 4%, transparent 94%, rgba(255, 255, 255, .18)),
    linear-gradient(145deg, #58616f 0%, #0a0c12 13%, #1c2029 72%, #697383 100%);
  box-shadow:
    inset 0 0 0 2px #05070a,
    inset 0 0 0 5px #242a34,
    inset 0 0 0 7px rgba(255, 255, 255, .035),
    14px 20px 35px rgba(0, 0, 0, .22);
  transform:
    translate3d(0, calc(-3px + var(--hero-idle-lift)), 0)
    rotateX(calc(var(--hero-tilt-x) + var(--hero-idle-tilt-x)))
    rotateY(calc(var(--hero-tilt-y) + var(--hero-idle-tilt-y)))
    rotateZ(var(--hero-idle-roll))
    scale(var(--hero-scale));
  transform-style: preserve-3d;
  transition: box-shadow 380ms ease;
  will-change: transform;
}

.phone-frame::before {
  position: absolute;
  inset: 5px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 44px;
  box-shadow: inset 7px 0 12px rgba(255, 255, 255, .035), inset -8px 0 14px rgba(0, 0, 0, .42);
  content: "";
  pointer-events: none;
}

.phone-frame::after {
  position: absolute;
  z-index: -1;
  top: 4%;
  right: -11px;
  width: 19px;
  height: 91%;
  border-radius: 0 24px 24px 0;
  background: linear-gradient(90deg, #0a0d12, #353d49 50%, #080a0e);
  box-shadow: inset 1px 0 rgba(255, 255, 255, .12), 7px 8px 18px rgba(0, 0, 0, .3);
  content: "";
  transform: translateZ(-18px);
}

.hero-visual.motion-active .phone-frame {
  box-shadow: inset 0 0 0 2px #07080d, inset 0 0 0 4px #1b1e27, 0 35px 70px rgba(0, 0, 0, 0.22);
}

.hero-visual .floating-badge,
.hero-visual .floating-note { transition: border-color 380ms ease, box-shadow 380ms ease; will-change: translate; }
.hero-visual .badge-spam { translate: var(--hero-card-left-x) var(--hero-card-left-y); }
.hero-visual .badge-scan { translate: var(--hero-card-right-x) var(--hero-card-right-y); }
.hero-visual .floating-note { translate: var(--hero-note-x) var(--hero-note-y); }
.hero-visual.motion-active .floating-badge,
.hero-visual.motion-active .floating-note { border-color: rgba(255, 255, 255, 0.2); box-shadow: 0 28px 55px rgba(0, 0, 0, 0.38); }

.phone-speaker {
  position: absolute;
  z-index: 12;
  top: 20px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 94px;
  height: 29px;
  padding-right: 9px;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, .045);
  border-radius: 999px;
  background: linear-gradient(180deg, #020306, #080a0e);
  box-shadow: inset 0 -2px 5px rgba(255, 255, 255, .025), 0 3px 8px rgba(0, 0, 0, .5);
  transform: translateX(-50%);
}

.phone-camera-lens { width: 11px; height: 11px; border: 2px solid #151922; border-radius: 50%; background: radial-gradient(circle at 38% 35%, #41628d, #090d15 42%, #020306 70%); box-shadow: 0 0 7px rgba(67, 122, 194, .24); }
.phone-face-sensor { width: 5px; height: 5px; border-radius: 50%; background: #161c25; box-shadow: inset 0 0 2px #4d5f78; }

.phone-side-button {
  position: absolute;
  z-index: -1;
  width: 5px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: linear-gradient(90deg, #0c0f14, #4a5360 58%, #11151b);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, .42);
}
.phone-mute { top: 105px; left: -4px; height: 28px; border-radius: 4px 0 0 4px; }
.phone-volume-up { top: 151px; left: -5px; height: 62px; border-radius: 5px 0 0 5px; }
.phone-volume-down { top: 224px; left: -5px; height: 62px; border-radius: 5px 0 0 5px; }
.phone-power { top: 174px; right: -5px; height: 83px; border-radius: 0 5px 5px 0; }

.phone-screen {
  position: relative;
  height: 618px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 39px;
  background: #121212;
  box-shadow: inset 0 0 0 1px #020307, inset 0 0 24px rgba(0, 0, 0, .5);
}

.phone-screen::after {
  position: absolute;
  z-index: 20;
  top: -10%;
  bottom: -10%;
  left: -62%;
  width: 38%;
  opacity: 0;
  background: linear-gradient(105deg, transparent 5%, rgba(255, 255, 255, .025) 27%, rgba(154, 237, 255, .24) 50%, rgba(255, 255, 255, .045) 68%, transparent 92%);
  filter: blur(4px);
  content: "";
  pointer-events: none;
  transform: skewX(-13deg);
}

.phone-statusbar {
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 22px;
  padding-inline: 4px;
  color: #dce3ee;
}
.phone-statusbar strong { font-size: 8px; letter-spacing: .02em; }
.phone-statusbar span { display: flex; align-items: center; gap: 5px; font-size: 7px; }
.phone-statusbar span i:last-child { font-size: 10px; }

.phone-home-indicator {
  position: absolute;
  z-index: 10;
  bottom: 7px;
  left: 50%;
  width: 92px;
  height: 4px;
  border-radius: 999px;
  background: rgba(225, 232, 243, .72);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .55);
  transform: translateX(-50%);
}

.phone-bottom-detail {
  position: absolute;
  z-index: 3;
  right: 50%;
  bottom: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateX(50%) translateZ(3px);
}
.phone-bottom-detail i { width: 4px; height: 4px; border-radius: 50%; background: #030508; box-shadow: inset 0 1px rgba(255, 255, 255, .08); }
.phone-bottom-detail b { width: 30px; height: 3px; border-radius: 999px; background: #030508; box-shadow: inset 0 1px rgba(255, 255, 255, .08); }

.app-topbar {
  margin-top: 13px;
}

.app-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-topbar img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.app-topbar span {
  display: grid;
  flex: 1;
  line-height: 1.2;
}

.app-topbar strong {
  font-size: 12px;
}

.app-topbar small {
  margin-top: 4px;
  color: #758097;
  font-size: 8px;
}

.app-topbar > i {
  display: grid;
  width: 31px;
  height: 31px;
  color: #98a2b7;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
  place-items: center;
}

.app-highlight {
  display: flex;
  align-items: center;
  margin-top: 23px;
  padding: 14px;
  gap: 11px;
  border: 1px solid rgba(255, 61, 127, 0.22);
  border-radius: 18px;
  background: linear-gradient(125deg, rgba(255, 61, 127, 0.17), rgba(139, 92, 246, 0.09));
}

.app-highlight-icon {
  display: grid;
  width: 39px;
  height: 39px;
  color: white;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pink), #c02d99);
  box-shadow: 0 8px 19px rgba(255, 61, 127, 0.26);
  place-items: center;
}

.app-highlight span:nth-child(2) {
  display: grid;
  flex: 1;
  line-height: 1.2;
}

.app-highlight small {
  color: #e997b6;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.app-highlight strong {
  margin-top: 5px;
  font-size: 11px;
}

.app-highlight > i {
  color: #c9cfdb;
  font-size: 10px;
}

.app-section-title {
  display: flex;
  justify-content: space-between;
  margin: 22px 2px 11px;
  color: #d8dce5;
  font-size: 9px;
  font-weight: 800;
}

.app-section-title small {
  color: var(--pink-2);
  font-size: 8px;
}

.app-tool-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.app-tool {
  display: flex;
  align-items: center;
  min-height: 55px;
  padding: 9px 10px;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 9px;
}

.app-tool i {
  display: grid;
  width: 29px;
  height: 29px;
  border-radius: 9px;
  place-items: center;
}

.app-tool.pink i { color: #ff91b8; background: rgba(255, 61, 127, 0.14); }
.app-tool.blue i { color: #84e3ff; background: rgba(69, 215, 255, 0.13); }
.app-tool.green i { color: #86efc6; background: rgba(69, 224, 168, 0.13); }
.app-tool.gold i { color: #ffe09b; background: rgba(255, 206, 104, 0.13); }

.app-security-card {
  display: flex;
  align-items: center;
  margin-top: 14px;
  padding: 13px;
  gap: 10px;
  border: 1px solid rgba(69, 224, 168, 0.15);
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(69, 224, 168, 0.09), rgba(255, 255, 255, 0.025));
}

.shield-pulse {
  position: relative;
  display: grid;
  width: 36px;
  height: 36px;
  color: var(--green);
  border-radius: 12px;
  background: rgba(69, 224, 168, 0.12);
  place-items: center;
}

.shield-pulse::after {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(69, 224, 168, 0.32);
  border-radius: 15px;
  content: "";
  animation: small-pulse 2.2s ease-out infinite;
}

.app-security-card > span:nth-child(2) {
  display: grid;
  flex: 1;
  line-height: 1.2;
}

.app-security-card small {
  color: #6c7d7b;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.app-security-card strong {
  margin-top: 4px;
  font-size: 9px;
}

.app-toggle {
  position: relative;
  width: 34px;
  height: 19px;
  border-radius: 999px;
  background: rgba(69, 224, 168, 0.35);
}

.app-toggle i {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(69, 224, 168, 0.6);
}

.app-bottom-nav {
  position: absolute;
  right: 16px;
  bottom: 21px;
  left: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 17px;
  background: rgba(18, 22, 36, 0.92);
  backdrop-filter: blur(12px);
}

.app-bottom-nav span {
  display: grid;
  justify-items: center;
  gap: 3px;
  color: #626b7d;
  font-size: 9px;
}

.app-bottom-nav small {
  font-size: 6px;
  font-weight: 700;
}

.app-bottom-nav .active {
  color: var(--pink-2);
}

.floating-badge,
.floating-note {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  color: #edf0f7;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(17, 21, 36, 0.82);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(15px);
}

.floating-badge {
  min-width: 206px;
  padding: 12px;
  gap: 10px;
  border-radius: 18px;
}

.floating-badge > span:nth-child(2) {
  display: grid;
  flex: 1;
  line-height: 1.18;
}

.floating-badge small,
.floating-note small {
  color: #848da0;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-badge strong,
.floating-note strong {
  margin-top: 4px;
  font-size: 11px;
}

.badge-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 12px;
  place-items: center;
}

.badge-icon.coral { color: #ff9299; background: rgba(255, 98, 107, 0.14); }
.badge-icon.cyan { color: #95eaff; background: rgba(69, 215, 255, 0.14); }

.badge-check {
  color: var(--green);
  font-size: 14px;
}

.badge-spam {
  /* Os tres cartoes flutuantes ficam mais para fora do aparelho: por cima
     da tela eles escondiam justamente o que o site quer mostrar. */
  top: 104px;
  left: -46px;
  transform: rotate(-4deg);
  animation: badge-float-a 5.5s ease-in-out infinite;
}

.badge-scan {
  right: -50px;
  bottom: 136px;
  transform: rotate(3deg);
  animation: badge-float-b 6.2s ease-in-out infinite;
}

.mini-pages {
  position: relative;
  width: 25px;
  height: 29px;
}

.mini-pages i {
  position: absolute;
  display: block;
  width: 18px;
  height: 23px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: #22293a;
}

.mini-pages i:nth-child(1) { top: 4px; left: 0; }
.mini-pages i:nth-child(2) { top: 2px; left: 3px; }
.mini-pages i:nth-child(3) { top: 0; left: 6px; border-color: rgba(69, 215, 255, 0.6); }

.floating-note {
  right: -42px;
  top: 60px;
  min-width: 198px;
  padding: 10px 13px 10px 10px;
  gap: 11px;
  border-color: rgba(69, 215, 255, .28);
  border-radius: 17px;
  background: radial-gradient(circle at 12% 35%, rgba(69, 215, 255, .12), transparent 42%), linear-gradient(135deg, #111d2a, #08121c 72%);
  box-shadow: 0 22px 45px rgba(0, 0, 0, .36), 0 0 30px rgba(69, 215, 255, .11);
  backdrop-filter: none;
  animation: ad-note-float 4.2s cubic-bezier(.45, 0, .35, 1) infinite;
  transform-style: flat;
}

.ad-float-icon {
  position: relative;
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  overflow: visible;
  color: #c9f7ff;
  border: 1px solid rgba(69, 215, 255, .42);
  border-radius: 14px;
  background: linear-gradient(145deg, #1d5368, #10394c 55%, #0b2638);
  box-shadow: 0 11px 24px rgba(0, 0, 0, .35), 0 0 0 4px rgba(69, 215, 255, .08), 0 0 16px rgba(69, 215, 255, .28), inset 0 1px rgba(255, 255, 255, .12);
  font-size: 17px;
  place-items: center;
  transform: none;
  transform-style: flat;
}

.hero-visual.hero-sequence .ad-float-icon,
.hero-visual.reveal-finished .ad-float-icon {
  rotate: 0deg;
  scale: 1;
  transform: none;
}

.ad-float-icon::before,
.ad-float-icon::after {
  position: absolute;
  border: 1px solid rgba(142, 236, 255, .34);
  content: "";
  pointer-events: none;
}

.ad-float-icon::before {
  inset: -6px;
  border-radius: 18px;
  transform-origin: center;
  animation: ad-target-pulse 2.2s ease-out infinite;
}
.ad-float-icon::after { inset: 8px; border-radius: 50%; }
.ad-float-icon > i { position: relative; z-index: 3; filter: drop-shadow(0 0 7px rgba(129, 237, 255, .48)); }
.ad-float-icon > b {
  position: absolute;
  z-index: 2;
  inset: 1px;
  border-radius: 13px;
  background: conic-gradient(from 0deg, transparent 0 285deg, rgba(112, 228, 255, .74) 324deg, transparent 360deg);
  mask-image: radial-gradient(circle at 50% 50%, transparent 0 27%, #000 29% 44%, transparent 46%);
  transform-origin: 50% 50%;
  animation: ad-radar-spin 2.6s linear infinite;
}
.ad-float-icon > em {
  position: absolute;
  z-index: 4;
  top: 8px;
  right: 8px;
  width: 6px;
  height: 6px;
  border: 1px solid #c8ffec;
  border-radius: 50%;
  background: #45e0a8;
  box-shadow: 0 0 0 4px rgba(69, 224, 168, .15), 0 0 13px #45e0a8;
  animation: ad-dot-ping 1.5s ease-out infinite;
}

.floating-note > span:last-child {
  display: grid;
  line-height: 1.15;
}

@keyframes ad-note-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes ad-radar-spin { to { transform: rotate(360deg); } }
@keyframes ad-dot-ping { 70%, 100% { box-shadow: 0 0 0 10px rgba(255, 49, 95, 0), 0 0 13px #ff315f; } }
@keyframes ad-target-pulse {
  0% { opacity: .8; scale: .88; }
  72%, 100% { opacity: 0; scale: 1.2; }
}

.orbit {
  position: absolute;
  z-index: 1;
  width: 478px;
  height: 478px;
  border: 1px solid rgba(255, 255, 255, .065);
  border-radius: 50%;
  translate: var(--hero-orbit-x) var(--hero-orbit-y);
  will-change: translate;
}

.orbit-one { animation: orbit-rotate 18s linear infinite; }

.orbit-two {
  width: 390px;
  height: 390px;
  border-style: dashed;
  animation: orbit-rotate-reverse 24s linear infinite;
}

.orbit-dot {
  position: absolute;
  top: 39px;
  right: 51px;
  display: grid;
  width: 40px;
  height: 40px;
  color: var(--cyan);
  border: 1px solid rgba(69, 215, 255, .3);
  border-radius: 13px;
  background: #11182a;
  box-shadow: 0 0 22px rgba(69, 215, 255, .2);
  place-items: center;
}

.orbit-two .orbit-dot {
  top: auto;
  right: auto;
  bottom: 18px;
  left: 60px;
  color: var(--pink-2);
  border-color: rgba(255, 61, 127, .3);
  box-shadow: 0 0 22px rgba(255, 61, 127, .2);
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  perspective: 1000px;
}

.category-strip article {
  display: flex;
  align-items: flex-start;
  min-width: 0;
  min-height: 108px;
  padding: 18px;
  gap: 13px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.032);
  transform-style: preserve-3d;
  transition: transform 760ms cubic-bezier(.16, 1, .3, 1), border-color 620ms ease, background 620ms ease, box-shadow 760ms cubic-bezier(.16, 1, .3, 1);
}

.category-strip article:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
  transform: translateY(-7px) rotateX(3deg);
}

.category-icon {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
  border-radius: 14px;
  transition: transform 760ms cubic-bezier(.16, 1, .3, 1), box-shadow 620ms ease;
  place-items: center;
}

.category-strip article:hover .category-icon { box-shadow: 0 13px 24px rgba(0, 0, 0, 0.2); transform: translateZ(18px) scale(1.08) rotate(-4deg); }

.category-pink { color: #ff98bd; background: rgba(255, 61, 127, 0.12); }
.category-green { color: #7cebc1; background: rgba(69, 224, 168, 0.12); }
.category-blue { color: #83e4ff; background: rgba(69, 215, 255, 0.12); }
.category-gold { color: #ffe09b; background: rgba(255, 206, 104, 0.12); }

.category-strip article > div {
  display: grid;
  flex: 1;
  min-width: 0;
  line-height: 1.25;
}

.category-strip strong {
  font-size: 13px;
}

.category-strip small {
  margin-top: 5px;
  color: var(--muted-2);
  font-size: 10px;
  line-height: 1.5;
  white-space: normal;
  overflow-wrap: anywhere;
}

.category-strip article > i {
  margin-top: 4px;
  margin-left: auto;
  color: #596276;
  font-size: 12px;
  transition: color 480ms ease, transform 700ms cubic-bezier(.16, 1, .3, 1);
}

.category-strip article:hover > i { color: #d4d9e4; transform: translateX(4px); }

.real-app-section {
  overflow: hidden;
  padding-top: 108px;
  background:
    radial-gradient(circle at 50% 45%, rgba(69, 215, 255, 0.07), transparent 34rem),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.014), transparent);
}

.real-app-stage {
  position: relative;
  display: grid;
  height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 42%, rgba(69, 215, 255, 0.12), transparent 24rem),
    radial-gradient(circle at 30% 75%, rgba(255, 61, 127, 0.1), transparent 21rem),
    linear-gradient(145deg, rgba(20, 24, 39, 0.86), rgba(8, 11, 19, 0.96));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035), 0 35px 75px rgba(0, 0, 0, 0.22);
  perspective: 1500px;
  place-items: center;
  isolation: isolate;
}

.real-app-stage::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: radial-gradient(circle, black 15%, transparent 73%);
  opacity: 0.6;
}

.scene-orbit {
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(69, 215, 255, 0.12);
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(18deg);
}

.scene-orbit-one { animation: scene-orbit 15s linear infinite; }
.scene-orbit-two { width: 410px; height: 410px; border-style: dashed; border-color: rgba(255, 61, 127, 0.13); animation: scene-orbit-reverse 20s linear infinite; }

.scene-floor {
  position: absolute;
  z-index: 0;
  bottom: 33px;
  left: 50%;
  width: 540px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(69, 215, 255, 0.13), rgba(255, 61, 127, 0.055) 38%, transparent 72%);
  box-shadow: 0 22px 75px rgba(0, 0, 0, 0.55);
  transform: translateX(-50%) rotateX(69deg);
}

.scene-floor i {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
}

.scene-floor i:nth-child(2) { inset: 36px; }
.scene-floor i:nth-child(3) { inset: 54px; }

.css-phone {
  position: relative;
  z-index: 5;
  width: 258px;
  height: 516px;
  transform: rotateY(-4deg) rotateX(1deg) rotateZ(.5deg);
  transform-style: preserve-3d;
  animation: css-device-float 6s ease-in-out infinite;
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, .44));
  will-change: transform;
}

.css-phone-side {
  display: none;
}

.css-phone-frame {
  --css-phone-x: 0deg;
  --css-phone-y: 0deg;
  --css-phone-lift: 0px;
  --css-phone-scale: 1;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 12px;
  border: 1px solid rgba(226, 233, 245, .48);
  border-radius: 50px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .23), transparent 4%, transparent 94%, rgba(255, 255, 255, .18)),
    linear-gradient(145deg, #58616f 0%, #0a0c12 13%, #1c2029 72%, #697383 100%);
  box-shadow:
    0 48px 75px rgba(0, 0, 0, .5),
    inset 0 0 0 2px #05070a,
    inset 0 0 0 5px #242a34,
    inset 0 0 0 7px rgba(255, 255, 255, .035);
  transform: perspective(1100px) translate3d(0, var(--css-phone-lift), 8px) rotateX(var(--css-phone-x)) rotateY(var(--css-phone-y)) scale(var(--css-phone-scale));
  transform-style: preserve-3d;
  will-change: transform;
}

.css-phone-frame::before {
  position: absolute;
  inset: 5px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 44px;
  box-shadow: inset 7px 0 12px rgba(255, 255, 255, .035), inset -8px 0 14px rgba(0, 0, 0, .42);
  content: "";
  pointer-events: none;
}

.css-phone-frame::after {
  position: absolute;
  z-index: -1;
  top: 5%;
  right: -9px;
  width: 16px;
  height: 90%;
  border-radius: 0 22px 22px 0;
  background: linear-gradient(90deg, #090c11, #353d49 52%, #080a0e);
  box-shadow: inset 1px 0 rgba(255, 255, 255, .11), 6px 8px 17px rgba(0, 0, 0, .28);
  content: "";
  transform: translateZ(-14px);
}

.real-app-stage.motion-active .css-phone-frame {
  box-shadow:
    0 58px 92px rgba(0, 0, 0, .58),
    inset 0 0 0 2px #05070a,
    inset 0 0 0 5px #242a34,
    inset 0 0 0 7px rgba(255, 255, 255, .045);
}

.css-phone-speaker {
  position: absolute;
  z-index: 12;
  top: 20px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 94px;
  height: 29px;
  padding-right: 9px;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, .045);
  border-radius: 999px;
  background: linear-gradient(180deg, #020306, #080a0e);
  box-shadow: inset 0 -2px 5px rgba(255, 255, 255, .025), 0 3px 8px rgba(0, 0, 0, .5);
  transform: translateX(-50%);
}

.css-phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 39px;
  background:
    radial-gradient(circle at 90% 0%, rgba(69, 215, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #121728, #090c15 74%);
  box-shadow: inset 0 0 0 1px #020307, inset 0 0 24px rgba(0, 0, 0, .5);
}

.apk-ui {
  position: relative;
  z-index: 9;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  background: #121212;
  color: #f2f4f8;
  container-type: inline-size;
  font-family: Roboto, "Segoe UI", sans-serif;
}

.apk-ui button {
  color: inherit;
  border: 0;
  background: transparent;
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

.apk-ui-scroll {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

/* No celular, o dedo passando por cima do aparelho desenhado rolava a telinha
   de dentro e a pagina ficava parada. Em tela de toque a telinha nao rola:
   quem rola e' o site. No computador continua rolando com a roda do mouse. */
@media (hover: none) and (pointer: coarse) {
  .apk-ui-scroll {
    overflow-y: hidden;
    touch-action: pan-y;
  }
}

.apk-ui-scroll::-webkit-scrollbar,
.apk-ui-nav::-webkit-scrollbar { display: none; }

.apk-ui-nav {
  display: flex;
  align-items: stretch;
  min-height: 33.5cqw;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 12.5cqw 3.4cqw 2.1cqw;
  background: #191a1f;
  box-shadow: inset 0 -1px rgba(255, 255, 255, .035), 0 3cqw 7cqw rgba(0, 0, 0, .22);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  scrollbar-width: none;
}

.apk-ui-nav.dragging { cursor: grabbing; }

.apk-ui-nav button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18cqw;
  min-width: 18cqw;
  padding: 0 1.3cqw .8cqw;
  flex-direction: column;
  gap: .6cqw;
  color: #969ba5;
  cursor: pointer;
}

.apk-ui-nav button::after {
  position: absolute;
  right: 5.1cqw;
  bottom: -.2cqw;
  left: 5.1cqw;
  height: 1.3cqw;
  border-radius: 999px;
  background: transparent;
  content: "";
}

.apk-ui-nav button > i,
.apk-ui-nav button > b {
  display: grid;
  min-height: 10.2cqw;
  color: #d6d9e0;
  font-size: 7.2cqw;
  font-style: normal;
  line-height: 1;
  place-items: center;
}

.apk-ui-nav button > span {
  max-width: 17.3cqw;
  overflow: hidden;
  font-size: 2.35cqw;
  font-weight: 600;
  line-height: 1.1;
  text-overflow: clip;
  white-space: nowrap;
}

.apk-ui-nav button.active { color: #ff2d76; font-weight: 800; }
.apk-ui-nav button.active > i { color: #fff; }
.apk-ui-nav button.active::after { background: #ff2d76; box-shadow: 0 0 3.5cqw rgba(255, 45, 118, .55); }
.apk-ui-nav .apk-nav-whatsapp > i { color: #25d366; font-size: 8cqw; }
.apk-ui-nav button:focus-visible { border-radius: 2cqw; outline: .7cqw solid rgba(69, 215, 255, .75); outline-offset: -.7cqw; }

.apk-ui-home { padding: 3.8cqw 3.8cqw 8cqw; }

.apk-ui .apk-ui-greeting {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 16cqw;
  padding: 2.4cqw 3.2cqw;
  gap: 3cqw;
  border: .45cqw solid #2c2f38;
  border-radius: 4.4cqw;
  background: #17171b;
  text-align: left;
  cursor: pointer;
}

.apk-ui-avatar {
  display: grid;
  width: 10.7cqw;
  height: 10.7cqw;
  flex: 0 0 auto;
  color: #b6bcc7;
  border: .45cqw solid #3a3d46;
  border-radius: 50%;
  background: #24262d;
  font-size: 4.3cqw;
  place-items: center;
}

.apk-ui-greeting > span:nth-child(2) { display: grid; min-width: 0; flex: 1; gap: .8cqw; }
.apk-ui-greeting strong { overflow: hidden; font-size: 4.2cqw; line-height: 1.05; text-overflow: ellipsis; white-space: nowrap; }
.apk-ui-greeting small { color: #9aa0aa; font-size: 2.85cqw; line-height: 1; }
.apk-ui-greeting > i { color: #8a909c; font-size: 3.7cqw; }

.apk-ui .apk-ui-search {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 15cqw;
  margin-top: 3.8cqw;
  padding: 0 4cqw;
  gap: 3cqw;
  color: #9398a2;
  border: .45cqw solid #2b2f36;
  border-radius: 4.3cqw;
  background: #0f0f13;
  text-align: left;
  cursor: text;
}

.apk-ui-search i { flex: 0 0 auto; font-size: 4.4cqw; }
.apk-ui-search span { overflow: hidden; font-size: 3.75cqw; font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }

.apk-ui-converter,
.apk-ui-recent {
  margin-top: 3.8cqw;
  padding: 4.3cqw;
  border: .45cqw solid #2b2f36;
  border-radius: 5cqw;
  background: #17171b;
}

.apk-ui-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 18cqw;
  margin-bottom: 4cqw;
  gap: 5cqw;
}

.apk-ui-flow > i { color: #ff443b; font-size: 8.5cqw; }
.apk-ui-lottie { position: relative; display: grid; width: 16cqw; height: 16cqw; place-items: center; }
.apk-ui-lottie > i { position: absolute; z-index: 0; font-size: 11.5cqw; }
.apk-ui-lottie > svg { position: relative; z-index: 1; display: block; width: 100%; height: 100%; }
.apk-ui-lottie.lottie-ready > i { opacity: 0; }
.apk-ui-flow-source > i { color: #ff3131; }
.apk-ui-flow-music > i { color: #ff2d76; }

.apk-ui .apk-ui-link {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 13cqw;
  padding: 0 4cqw;
  gap: 3cqw;
  color: #9297a2;
  border: .45cqw solid #2b2f36;
  border-radius: 3.8cqw;
  background: #0f0f13;
  text-align: left;
  cursor: text;
}

.apk-ui-link i { font-size: 4cqw; }
.apk-ui-link span { font-size: 3.7cqw; }

.apk-ui-brands {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 9.5cqw;
  margin-top: 4cqw;
  gap: 2cqw;
}

.apk-ui-brands span {
  display: inline-flex;
  align-items: center;
  min-height: 9cqw;
  padding: 1.3cqw 2.5cqw;
  gap: 1.5cqw;
  border: .35cqw solid #31343c;
  border-radius: 999px;
  background: #191a20;
  font-size: 2.75cqw;
  font-weight: 800;
  white-space: nowrap;
}

.apk-ui-brands img { display: block; width: 5.2cqw; height: 5.2cqw; flex: 0 0 auto; object-fit: contain; }
.apk-ui-brands .youtube img { width: 5.8cqw; }
.apk-ui-brands .youtube { color: #ff7771; border-color: rgba(255, 49, 49, .35); }
.apk-ui-brands .spotify { color: #66e99a; border-color: rgba(30, 215, 96, .34); }
.apk-ui-brands .shazam { color: #65bfff; border-color: rgba(20, 151, 255, .35); }

.apk-ui-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 4cqw;
  gap: 2.6cqw;
}

.apk-ui-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 14cqw;
  padding: 2cqw;
  gap: 2cqw;
  color: #fff;
  border-radius: 4cqw;
  background: #22c55e;
  font-size: 3.1cqw;
  font-weight: 800;
  cursor: pointer;
}

.apk-ui-actions button:disabled { color: #777b84; background: #3a3a40; opacity: 1; cursor: default; }
.apk-ui-actions button:active:not(:disabled) { transform: scale(.97); }

.apk-ui-recent { padding: 4cqw; }
.apk-ui-recent header { display: flex; align-items: center; margin-bottom: 3.2cqw; gap: 2.8cqw; }
.apk-ui-recent header > span { display: grid; width: 9.2cqw; height: 9.2cqw; color: #fff; border-radius: 2.8cqw; background: #22c55e; font-size: 4cqw; place-items: center; }
.apk-ui-recent header strong { flex: 1; color: #22c55e; font-size: 4.4cqw; }
.apk-ui-recent header b { display: grid; min-width: 7.8cqw; height: 6.5cqw; color: #fff; border-radius: 999px; background: #22c55e; font-size: 2.8cqw; place-items: center; }

.apk-ui .apk-ui-track {
  display: grid;
  align-items: center;
  width: 100%;
  min-height: 16.2cqw;
  padding: 1.8cqw 2.2cqw;
  grid-template-columns: 4cqw 12.5cqw minmax(0, 1fr) 5cqw 2cqw;
  gap: 2cqw;
  border: .4cqw solid #30323a;
  border-radius: 3.4cqw;
  background: #202126;
  text-align: left;
  cursor: pointer;
}

.apk-ui-track + .apk-ui-track { margin-top: 2.3cqw; }
.apk-ui-track > i { color: #b0b5c0; font-size: 3.1cqw; }
.apk-ui-track > i:nth-last-child(2) { color: #ed5b62; }
.apk-ui-cover { display: grid; width: 12.5cqw; height: 12.5cqw; color: #fff; border-radius: 2.5cqw; object-fit: cover; font-size: 4cqw; place-items: center; }
.apk-ui-track > span:nth-child(3) { display: grid; min-width: 0; gap: 1cqw; }
.apk-ui-track strong { overflow: visible; font-size: 2.45cqw; line-height: 1.12; white-space: normal; }
.apk-ui-track small { overflow: hidden; color: #8e949f; font-size: 2.25cqw; line-height: 1; text-overflow: ellipsis; white-space: nowrap; }

.apk-ui .apk-ui-chat {
  position: absolute;
  z-index: 12;
  right: 3.6cqw;
  bottom: 22cqw;
  display: grid;
  width: 15cqw;
  height: 15cqw;
  color: #08090b;
  border-radius: 4.5cqw;
  background: #fff;
  box-shadow: 0 3cqw 8cqw rgba(0, 0, 0, .4);
  font-size: 6.2cqw;
  place-items: center;
  cursor: pointer;
}

.scene-feature {
  position: absolute;
  z-index: 7;
  display: flex;
  align-items: center;
  min-width: 210px;
  padding: 12px;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  background: rgba(15, 19, 31, 0.84);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.34);
  backdrop-filter: none;
  transform-style: preserve-3d;
  will-change: translate, rotate;
}

.scene-feature > span { display: grid; width: 39px; height: 39px; flex: 0 0 auto; border-radius: 12px; place-items: center; }
.scene-feature > div { display: grid; flex: 1; line-height: 1.17; }
.scene-feature small { color: #667185; font-size: 6px; font-weight: 800; letter-spacing: 0.1em; }
.scene-feature strong { margin-top: 5px; font-size: 9px; }
.scene-feature > i { color: #5d687b; font-size: 10px; }
.scene-feature-music { top: 94px; left: 70px; transform: rotateY(14deg) rotateZ(-4deg); animation: scene-card-drift-a 5.4s ease-in-out infinite; }
.scene-feature-music > span { color: #ff91b8; background: rgba(255, 61, 127, 0.12); }
.scene-feature-music > i { color: var(--pink-2); }
.scene-feature-shield { right: 63px; top: 127px; transform: rotateY(-14deg) rotateZ(4deg); animation: scene-card-drift-b 6.1s ease-in-out infinite; }
.scene-feature-shield > span { color: #7cebc0; background: rgba(69, 224, 168, 0.11); }
.scene-feature-shield > i { color: var(--green); }
.scene-feature-pdf { bottom: 105px; left: 88px; transform: rotateY(12deg) rotateZ(3deg); animation: scene-card-drift-b 5.7s ease-in-out -.8s infinite; }
.scene-feature-pdf > span { color: #7fe4ff; background: rgba(69, 215, 255, 0.11); }
.scene-feature-pdf > i { color: var(--cyan); }
.scene-feature-store { right: 75px; bottom: 78px; transform: rotateY(-13deg) rotateZ(-3deg); animation: scene-card-drift-a 6.4s ease-in-out -1.1s infinite; }
.scene-feature-store > span { color: #ffe09b; background: rgba(255, 206, 104, 0.11); }
.scene-feature-store > i { color: var(--yellow); }

.scene-label {
  position: absolute;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(13, 17, 28, 0.8);
  box-shadow: 0 13px 28px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  font-size: 8px;
  font-weight: 800;
}

.scene-label-one { top: 35px; left: 37px; color: #c3edfa; }
.scene-label-one i { color: var(--cyan); }
.scene-label-two { right: 37px; bottom: 30px; color: #ffd8e6; }
.scene-label-two i { color: var(--pink-2); }

@keyframes css-device-float {
  0%, 100% { transform: translateY(0) rotateY(-5deg) rotateX(1.2deg) rotateZ(.6deg); }
  50% { transform: translateY(-9px) rotateY(1deg) rotateX(-.6deg) rotateZ(-.35deg); }
}

@keyframes scene-card-drift-a {
  0%, 100% { translate: 0 0; rotate: 0deg; }
  50% { translate: 0 -8px; rotate: .7deg; }
}

@keyframes scene-card-drift-b {
  0%, 100% { translate: 0 0; rotate: 0deg; }
  50% { translate: 0 8px; rotate: -.7deg; }
}

@keyframes scene-orbit {
  to { transform: rotateX(68deg) rotateZ(378deg); }
}

@keyframes scene-orbit-reverse {
  to { transform: rotateX(68deg) rotateZ(-342deg); }
}

.real-app-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 13px;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.025);
}

.real-app-facts > span {
  display: grid;
  align-items: center;
  grid-template-columns: 38px 1fr;
  grid-template-rows: auto auto;
  padding: 11px;
  column-gap: 10px;
  border-radius: 14px;
}

.real-app-facts > span:hover { background: rgba(255, 255, 255, 0.035); }

.real-app-facts > span > i {
  display: grid;
  grid-row: 1 / 3;
  width: 38px;
  height: 38px;
  color: var(--pink-2);
  border-radius: 12px;
  background: rgba(255, 61, 127, 0.1);
  place-items: center;
}

.real-app-facts > span:nth-child(2) > i { color: var(--cyan); background: rgba(69, 215, 255, 0.1); }
.real-app-facts > span:nth-child(3) > i { color: var(--green); background: rgba(69, 224, 168, 0.1); }
.real-app-facts > span:nth-child(4) > i { color: var(--yellow); background: rgba(255, 206, 104, 0.1); }
.real-app-facts b { font-size: 10px; }
.real-app-facts small { color: var(--muted-2); font-size: 8px; }

.tools-section {
  overflow: hidden;
}

.tools-section::before,
.scanner-section::before,
.ease-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.018) 15%, rgba(255, 255, 255, 0.018) 85%, transparent);
  content: "";
}

.section-heading {
  max-width: 730px;
  margin-bottom: 42px;
}

.section-heading h2,
.security-copy h2,
.scanner-copy h2,
.media-copy h2,
.faq-heading h2 {
  font-size: clamp(42px, 5vw, 64px);
}

.section-heading p,
.security-copy > p,
.scanner-copy > p,
.media-copy > p,
.faq-heading > p,
.trust-heading p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  margin-inline: auto;
}

.tool-stories {
  display: grid;
  gap: 28px;
}

.tool-story {
  --story-color: var(--pink);
  --story-glow: rgba(255, 61, 127, 0.18);
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  min-height: 550px;
  overflow: hidden;
  padding: 48px;
  gap: 58px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 14%, var(--story-glow), transparent 29rem),
    linear-gradient(145deg, rgba(22, 27, 43, 0.92), rgba(8, 11, 18, 0.98));
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.23);
}

.tool-story::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, 0.025) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, rgba(255, 255, 255, 0.022) 50%, transparent 50.2%);
  background-size: 58px 58px;
  content: "";
  mask-image: linear-gradient(to right, transparent, black 55%, black);
  opacity: 0.48;
}

.tool-story-pink { --story-color: #ff3d7f; --story-glow: rgba(255, 61, 127, 0.17); }
.tool-story-cyan { --story-color: #45d7ff; --story-glow: rgba(69, 215, 255, 0.15); }
.tool-story-gold { --story-color: #ffce68; --story-glow: rgba(255, 206, 104, 0.14); }
.tool-story-purple { --story-color: #c28aff; --story-glow: rgba(194, 138, 255, 0.16); }
.tool-story-green { --story-color: #45e0a8; --story-glow: rgba(69, 224, 168, 0.14); }
.tool-story-blue { --story-color: #4d99ff; --story-glow: rgba(77, 153, 255, 0.16); }
.tool-story-red { --story-color: #ff7a84; --story-glow: rgba(255, 122, 132, 0.15); }

.tool-story-reverse .tool-story-copy { order: 2; }
.tool-story-reverse .tool-story-visual { order: 1; }

.tool-story-copy {
  position: relative;
  z-index: 2;
}

.tool-story-label {
  display: flex;
  align-items: center;
  gap: 13px;
}

.tool-story-label > span {
  display: grid;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  color: var(--story-color);
  border: 1px solid color-mix(in srgb, var(--story-color) 30%, transparent);
  border-radius: 19px;
  background: color-mix(in srgb, var(--story-color) 13%, transparent);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 16px 30px color-mix(in srgb, var(--story-color) 10%, transparent);
  font-size: 23px;
  place-items: center;
}

.tool-story-label small {
  color: var(--story-color);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.tool-story h3 {
  margin: 25px 0 16px;
  font-family: var(--display);
  font-size: clamp(38px, 4.2vw, 58px);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.tool-story-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.tool-story-points {
  display: grid;
  margin-top: 28px;
  gap: 9px;
}

.tool-story-points > span {
  display: grid;
  align-items: center;
  grid-template-columns: 46px 1fr;
  grid-template-rows: auto auto;
  min-height: 70px;
  padding: 10px 12px;
  column-gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.tool-story-points > span > i {
  display: grid;
  grid-row: 1 / 3;
  width: 46px;
  height: 46px;
  color: var(--story-color);
  border-radius: 14px;
  background: color-mix(in srgb, var(--story-color) 11%, transparent);
  place-items: center;
}

.tool-story-points b { font-size: 14px; }
.tool-story-points small { margin-top: 3px; color: var(--muted-2); font-size: 11px; }

.priority-music-sources {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 17px;
  gap: 10px;
}

.priority-source {
  display: grid;
  align-items: center;
  grid-template-columns: 52px 1fr auto;
  min-width: 0;
  min-height: 92px;
  padding: 12px;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  transform-style: preserve-3d;
  transition: transform 700ms cubic-bezier(.16, 1, .3, 1), border-color 520ms ease, box-shadow 700ms cubic-bezier(.16, 1, .3, 1);
}

.priority-source:hover { transform: translateY(-5px) rotateX(3deg); }
.priority-source img { width: 52px; height: 52px; object-fit: contain; filter: drop-shadow(0 10px 15px rgba(0, 0, 0, .28)); transform: translateZ(18px); }
.priority-source > span { display: grid; min-width: 0; line-height: 1.25; }
.priority-source small { font-size: 8px; font-weight: 900; letter-spacing: .11em; }
.priority-source strong { margin-top: 4px; font-size: 12px; }
.priority-source em { margin-top: 5px; color: var(--muted-2); font-size: 9px; font-style: normal; line-height: 1.4; }
.priority-source > i { font-size: 12px; }
.spotify-source { border-color: rgba(30, 215, 96, .18); background: linear-gradient(135deg, rgba(30, 215, 96, .1), rgba(255, 255, 255, .025)); }
.spotify-source small, .spotify-source > i { color: #57e989; }
.shazam-source { border-color: rgba(69, 145, 255, .2); background: linear-gradient(135deg, rgba(52, 132, 255, .12), rgba(69, 215, 255, .035)); }
.shazam-source small, .shazam-source > i { color: #6bb7ff; }

.tool-story-visual {
  --story-base-y: -3deg;
  --story-motion-x: 0deg;
  --story-motion-y: 0deg;
  --story-motion-lift: 0px;
  --story-motion-scale: 1;
  position: relative;
  z-index: 2;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(20, 25, 39, 0.98), rgba(8, 10, 17, 0.98));
  box-shadow: -24px 30px 60px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.06);
  transform: perspective(1200px) translate3d(0, var(--story-motion-lift), 0) rotateX(var(--story-motion-x)) rotateY(calc(var(--story-base-y) + var(--story-motion-y))) scale(var(--story-motion-scale));
  transform-style: preserve-3d;
  transition: border-color 800ms cubic-bezier(.16, 1, .3, 1), box-shadow 900ms cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}

.tool-story-reverse .tool-story-visual {
  --story-base-y: 3deg;
  box-shadow: 24px 30px 60px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.06);
}

.tool-story-visual.motion-active {
  border-color: color-mix(in srgb, var(--story-color) 32%, transparent);
  box-shadow: 0 38px 78px rgba(0, 0, 0, 0.38), 0 0 45px color-mix(in srgb, var(--story-color) 9%, transparent), inset 0 1px rgba(255, 255, 255, 0.09);
}

.converter-story-visual > img,
.social-story-visual > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1100ms cubic-bezier(.16, 1, .3, 1), filter 900ms ease;
}

.converter-story-visual.motion-active > img,
.social-story-visual.motion-active > img { transform: scale(1.045); }

.converter-story-visual > img { object-position: 58% center; }
.social-story-visual > img { object-position: center; filter: saturate(0.9) brightness(0.7); }

.story-image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 13, 0.18), rgba(5, 7, 13, 0.72) 72%, rgba(5, 7, 13, 0.95));
}

.story-visual-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  padding: 10px 13px;
  gap: 8px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 10, 17, 0.72);
  backdrop-filter: blur(14px);
  font-size: 11px;
  font-weight: 900;
}

.story-visual-badge i { color: var(--story-color); }

.converter-story-panel {
  position: absolute;
  right: 27px;
  bottom: 93px;
  left: 27px;
  display: flex;
  align-items: center;
  padding: 18px;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 19px;
  background: rgba(8, 11, 19, 0.83);
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.converter-story-panel > div { display: grid; flex: 1; gap: 7px; }
.converter-story-panel small { color: #8994a8; font-size: 9px; font-weight: 900; letter-spacing: 0.08em; }
.converter-story-panel strong { color: #f0f3f8; font-size: 16px; }
.converter-story-panel strong i { margin-right: 8px; color: var(--story-color); }
.converter-story-panel > span { display: grid; width: 48px; height: 48px; flex: 0 0 auto; color: white; border-radius: 15px; background: linear-gradient(135deg, var(--story-color), #c22c76); box-shadow: 0 13px 28px var(--story-glow); place-items: center; }

.story-platform-row {
  position: absolute;
  right: 27px;
  bottom: 23px;
  left: 27px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.story-platform-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 8px;
  gap: 8px;
  color: #d8dde7;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(8, 11, 19, 0.82);
  backdrop-filter: blur(14px);
  font-size: 11px;
  font-weight: 900;
}

.story-platform-row img { width: 26px; height: 26px; object-fit: contain; }

.search-story-visual {
  display: grid;
  padding: 30px;
  place-items: center;
  background:
    radial-gradient(circle at 50% 15%, rgba(69, 215, 255, 0.16), transparent 19rem),
    linear-gradient(150deg, #111b2c, #090d16);
}

.search-hero-icon {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 23px;
  display: grid;
  justify-items: center;
  color: #b8efff;
  transform: translateY(-50%) rotate(-7deg);
}

.search-hero-icon > span {
  display: grid;
  width: 164px;
  height: 164px;
  border: 1px solid rgba(69, 215, 255, 0.34);
  border-radius: 45px;
  background:
    radial-gradient(circle at 38% 28%, rgba(255, 255, 255, 0.19), transparent 34%),
    linear-gradient(145deg, rgba(69, 215, 255, 0.3), rgba(69, 215, 255, 0.07));
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.32), 0 0 60px rgba(69, 215, 255, 0.14);
  font-size: 71px;
  place-items: center;
}

.search-hero-icon b { margin-top: 16px; font-size: 15px; letter-spacing: 0.16em; }
.search-hero-icon small { margin-top: 5px; color: #6e9eaa; font-size: 10px; font-weight: 800; }

.search-story-window {
  position: relative;
  z-index: 2;
  width: 78%;
  margin-left: auto;
  padding: 24px;
  border: 1px solid rgba(69, 215, 255, 0.16);
  border-radius: 24px;
  background: rgba(8, 13, 23, 0.83);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.search-story-window > header,
.status-story-visual > header,
.chat-story-visual > header,
.deleted-chat-head,
.cutter-track-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-story-window > header > span,
.status-story-visual > header > span,
.chat-story-visual > header > span,
.deleted-chat-head > span,
.cutter-track-head > span {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  color: var(--story-color);
  border-radius: 16px;
  background: color-mix(in srgb, var(--story-color) 13%, transparent);
  font-size: 19px;
  place-items: center;
}

.search-story-window > header > div,
.status-story-visual > header > div,
.chat-story-visual > header > div,
.deleted-chat-head > div,
.cutter-track-head > div { display: grid; flex: 1; gap: 4px; }

.search-story-window header small,
.status-story-visual header small,
.chat-story-visual header small,
.deleted-chat-head small,
.cutter-track-head small { color: var(--story-color); font-size: 9px; font-weight: 900; letter-spacing: 0.08em; }

.search-story-window header strong,
.status-story-visual header strong,
.chat-story-visual header strong,
.deleted-chat-head strong,
.cutter-track-head strong { font-size: 16px; }

.search-story-window > header > i { color: #738299; }

.search-story-input {
  display: flex;
  align-items: center;
  min-height: 66px;
  margin-top: 22px;
  padding: 12px 13px 12px 19px;
  gap: 12px;
  color: #7f8ca1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  background: rgba(2, 5, 11, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.search-story-input > i { color: var(--story-color); }
.search-story-input > span { flex: 1; }
.search-story-input > b { display: grid; width: 41px; height: 41px; color: #061018; border-radius: 12px; background: var(--story-color); place-items: center; }

.search-story-results { display: grid; margin-top: 13px; gap: 8px; }
.search-story-results > span { display: flex; align-items: center; min-height: 70px; padding: 10px 12px; gap: 12px; border: 1px solid rgba(255, 255, 255, 0.075); border-radius: 16px; background: rgba(255, 255, 255, 0.025); }
.search-story-results > span > i { display: grid; width: 48px; height: 48px; flex: 0 0 auto; border-radius: 14px; background: rgba(255, 255, 255, 0.055); place-items: center; }
.search-story-results img { width: 31px; height: 31px; object-fit: contain; }
.search-story-results div { display: grid; flex: 1; gap: 4px; }
.search-story-results b { font-size: 13px; }
.search-story-results small { color: var(--muted-2); font-size: 10px; }
.search-story-results em { display: grid; width: 38px; height: 38px; color: var(--story-color); border: 1px solid color-mix(in srgb, var(--story-color) 24%, transparent); border-radius: 50%; background: color-mix(in srgb, var(--story-color) 9%, transparent); font-style: normal; place-items: center; }

.cutter-story-visual {
  padding: 30px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 206, 104, 0.13), transparent 19rem),
    linear-gradient(150deg, #1b1820, #090b10);
}

.cutter-track-head > em { color: #e5d39e; font-size: 13px; font-style: normal; font-weight: 800; }

.cutter-wave {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 155px;
  margin-top: 26px;
  gap: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 206, 104, 0.13);
  border-radius: 21px;
  background: rgba(255, 206, 104, 0.045);
}

.cutter-wave > i {
  display: block;
  width: 7px;
  height: 46px;
  border-radius: 999px;
  background: linear-gradient(to top, #c08128, #ffe4a2);
  animation: story-wave 1.9s ease-in-out infinite alternate;
}

.cutter-wave > i:nth-child(3n + 1) { height: 32px; animation-delay: -0.5s; }
.cutter-wave > i:nth-child(3n + 2) { height: 88px; animation-delay: -1.1s; }
.cutter-wave > i:nth-child(4n) { height: 66px; animation-delay: -0.8s; }
.cutter-wave > b { position: absolute; top: 16px; bottom: 16px; width: 3px; border-radius: 999px; background: white; box-shadow: 0 0 17px rgba(255, 255, 255, 0.75); }
.cutter-wave > b:first-of-type { left: 24%; }
.cutter-wave > b:last-of-type { right: 20%; }

@keyframes story-wave {
  to { transform: scaleY(0.7); opacity: 0.72; }
}

.cutter-times { display: grid; align-items: center; grid-template-columns: 1fr 1fr 54px; margin-top: 14px; gap: 10px; }
.cutter-times > span { display: grid; padding: 13px 15px; gap: 5px; border: 1px solid rgba(255, 255, 255, 0.075); border-radius: 15px; background: rgba(255, 255, 255, 0.025); }
.cutter-times small { color: #8d815e; font-size: 8px; font-weight: 900; }
.cutter-times strong { font-size: 14px; }
.cutter-times button { display: grid; width: 54px; height: 54px; padding: 0; color: #1a1307; border: 0; border-radius: 50%; background: var(--story-color); box-shadow: 0 12px 28px rgba(255, 206, 104, 0.18); place-items: center; }
.cutter-save { display: flex; align-items: center; margin-top: 13px; padding: 14px; gap: 12px; color: #f3deb0; border: 1px solid rgba(255, 206, 104, 0.16); border-radius: 16px; background: rgba(255, 206, 104, 0.07); }
.cutter-save > i:first-child { display: grid; width: 42px; height: 42px; flex: 0 0 auto; border-radius: 13px; background: rgba(255, 206, 104, 0.11); place-items: center; }
.cutter-save > span { display: grid; flex: 1; gap: 4px; }
.cutter-save small { color: #9e8d63; font-size: 8px; font-weight: 900; }
.cutter-save strong { font-size: 13px; }

.social-story-icons {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  gap: 9px;
}

.social-story-icons span {
  display: grid;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(5, 7, 12, 0.76);
  box-shadow: 0 13px 28px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  place-items: center;
}

.social-story-icons img { width: 34px; height: 34px; object-fit: contain; }

.social-story-panel {
  position: absolute;
  right: 25px;
  bottom: 25px;
  left: 25px;
  display: flex;
  align-items: center;
  padding: 17px;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 19px;
  background: rgba(8, 10, 17, 0.84);
  backdrop-filter: blur(18px);
}

.social-story-panel > span { display: grid; width: 48px; height: 48px; flex: 0 0 auto; color: var(--story-color); border-radius: 15px; background: color-mix(in srgb, var(--story-color) 13%, transparent); place-items: center; }
.social-story-panel > div { display: grid; flex: 1; gap: 4px; }
.social-story-panel small { color: var(--story-color); font-size: 8px; font-weight: 900; letter-spacing: 0.08em; }
.social-story-panel strong { font-size: 15px; }
.social-story-panel > i { color: var(--story-color); font-size: 18px; }

.status-story-visual,
.deleted-story-visual,
.chat-story-visual { padding: 25px; }

.status-story-visual { background: radial-gradient(circle at 85% 15%, rgba(69, 224, 168, 0.15), transparent 18rem), #0a1317; }
.whatsapp-visual-intro {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
}

.whatsapp-visual-intro > span {
  display: grid;
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  color: #06120d;
  border-radius: 25px;
  background: linear-gradient(145deg, #68f5bd, #25d366);
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.27), inset 0 1px rgba(255, 255, 255, 0.38);
  font-size: 48px;
  place-items: center;
}

.whatsapp-visual-intro > div { display: grid; flex: 1; gap: 7px; }
.whatsapp-visual-intro small { color: #51e6aa; font-size: 10px; font-weight: 900; letter-spacing: 0.1em; }
.whatsapp-visual-intro strong { max-width: 280px; font-size: 17px; line-height: 1.3; }
.whatsapp-visual-intro > em { padding: 8px 11px; color: #8cf1c5; border: 1px solid rgba(69, 224, 168, 0.18); border-radius: 999px; background: rgba(69, 224, 168, 0.08); font-size: 9px; font-style: normal; font-weight: 900; letter-spacing: 0.08em; }
.deleted-whatsapp-intro > em { display: inline-flex; align-items: center; gap: 6px; }

.chat-story-visual header > em,
.deleted-chat-head > em { display: inline-flex; align-items: center; padding: 8px 10px; gap: 6px; color: var(--story-color); border-radius: 999px; background: color-mix(in srgb, var(--story-color) 10%, transparent); font-size: 10px; font-style: normal; font-weight: 900; }

.status-story-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 23px; gap: 10px; }
.status-story-grid > span { position: relative; height: 245px; overflow: hidden; border: 3px solid color-mix(in srgb, var(--story-color) 38%, transparent); border-radius: 22px; background: #111; box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25); }
.status-story-grid img { width: 100%; height: 100%; object-fit: cover; }
.status-story-grid b { position: absolute; right: 9px; bottom: 9px; display: grid; width: 35px; height: 35px; color: #07120e; border-radius: 50%; background: var(--story-color); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.32); place-items: center; }
.status-story-confirm { display: flex; align-items: center; margin-top: 13px; padding: 13px 15px; gap: 11px; color: #a8f4d6; border: 1px solid rgba(69, 224, 168, 0.14); border-radius: 16px; background: rgba(69, 224, 168, 0.065); }
.status-story-confirm > i { font-size: 22px; }
.status-story-confirm > span { display: grid; gap: 3px; }
.status-story-confirm small { color: #579d82; font-size: 8px; font-weight: 900; }
.status-story-confirm strong { font-size: 12px; }

.deleted-story-visual { display: flex; flex-direction: column; background: radial-gradient(circle at 50% 50%, rgba(69, 224, 168, 0.08), transparent 20rem), #09120f; }
.deleted-chat-body { display: grid; flex: 1; align-content: center; padding: 24px 8px; gap: 12px; }
.received-message { display: grid; width: fit-content; max-width: 76%; padding: 13px 15px; gap: 6px; color: #e1ebe7; border-radius: 16px 16px 16px 5px; background: #18251f; font-size: 13px; line-height: 1.5; }
.received-message small { justify-self: end; color: #72847c; font-size: 8px; }
.deleted-notice { display: inline-flex; align-items: center; width: fit-content; padding: 9px 12px; gap: 8px; color: #89948f; border-radius: 999px; background: rgba(255, 255, 255, 0.04); font-size: 10px; font-style: italic; }
.recovered-message { display: flex; align-items: center; padding: 16px; gap: 12px; color: #b7f4d9; border: 1px solid rgba(69, 224, 168, 0.19); border-radius: 18px; background: linear-gradient(135deg, rgba(69, 224, 168, 0.12), rgba(69, 224, 168, 0.045)); }
.recovered-message > i { display: grid; width: 43px; height: 43px; flex: 0 0 auto; border-radius: 14px; background: rgba(69, 224, 168, 0.13); place-items: center; }
.recovered-message > span { display: grid; flex: 1; gap: 5px; }
.recovered-message small { color: #5d9f84; font-size: 8px; font-weight: 900; }
.recovered-message strong { color: #ecfff7; font-size: 13px; line-height: 1.45; }
.recovered-message em { color: #6d8d80; font-size: 9px; font-style: normal; }

.chat-story-visual { display: flex; flex-direction: column; background: radial-gradient(circle at 70% 30%, rgba(255, 122, 132, 0.12), transparent 18rem), #111017; }
.chat-story-visual header > em > i { width: 7px; height: 7px; border-radius: 50%; background: #45e0a8; box-shadow: 0 0 10px #45e0a8; }
.chat-story-body { display: grid; flex: 1; align-content: center; padding: 23px 5px; gap: 10px; }
.chat-story-body > span { display: grid; width: fit-content; max-width: 76%; padding: 13px 15px; gap: 5px; color: #e4e6ec; border-radius: 16px 16px 16px 5px; background: rgba(255, 122, 132, 0.11); font-size: 13px; line-height: 1.45; }
.chat-story-body > span:nth-child(2) { justify-self: end; border-radius: 16px 16px 5px 16px; background: rgba(69, 215, 255, 0.1); }
.chat-story-body > span:nth-child(3) { color: #b8c1d0; background: rgba(255, 255, 255, 0.045); }
.chat-story-body small { justify-self: end; color: #687184; font-size: 8px; }
.chat-story-body i { color: var(--cyan); }
.chat-story-visual > footer { display: flex; align-items: center; min-height: 57px; padding: 8px 9px 8px 15px; gap: 12px; color: #717a8b; border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 17px; background: rgba(4, 6, 11, 0.58); font-size: 12px; }
.chat-story-visual > footer > span { flex: 1; }
.chat-story-visual > footer > b { display: grid; width: 42px; height: 42px; color: #1a080b; border-radius: 13px; background: var(--story-color); place-items: center; }

.offline-player-callout {
  --player-tilt-x: 2deg;
  --player-tilt-y: 8deg;
  --player-shift-x: 0px;
  --player-shift-y: -4px;
  --player-badge-x: 0px;
  --player-badge-y: 0px;
  --player-scale: 1;
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 520px;
  margin-top: 26px;
  overflow: hidden;
  padding: 50px;
  gap: 62px;
  border: 1px solid rgba(69, 224, 168, 0.19);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 45%, rgba(69, 224, 168, 0.18), transparent 24rem),
    radial-gradient(circle at 100% 0%, rgba(69, 215, 255, 0.11), transparent 25rem),
    linear-gradient(145deg, rgba(18, 31, 32, 0.94), rgba(8, 12, 21, 0.98));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
}

.offline-player-callout::before {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent 0 37px, rgba(255, 255, 255, 0.018) 38px 39px);
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 58%);
  pointer-events: none;
}

.offline-player-stage,
.offline-player-copy {
  position: relative;
  z-index: 2;
}

.offline-player-stage {
  display: grid;
  min-height: 420px;
  place-items: center;
  perspective: 1100px;
}

.offline-app-player {
  position: relative;
  width: min(350px, 100%);
  min-height: 390px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 10%, rgba(69, 224, 168, 0.13), transparent 17rem),
    linear-gradient(155deg, #17242a, #080d13 72%);
  box-shadow: -25px 35px 60px rgba(0, 0, 0, 0.36), inset 0 1px rgba(255, 255, 255, 0.08);
  transform: translate3d(var(--player-shift-x), var(--player-shift-y), 0) rotateX(var(--player-tilt-x)) rotateY(var(--player-tilt-y)) scale(var(--player-scale));
  transition: box-shadow 600ms cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}

.offline-player-callout.motion-active .offline-app-player { box-shadow: -30px 43px 75px rgba(0, 0, 0, 0.43), 0 0 55px rgba(69, 224, 168, 0.08), inset 0 1px rgba(255, 255, 255, 0.1); }

.offline-app-player > header { display: flex; align-items: center; gap: 12px; }
.offline-app-player > header > span {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  color: #07120e;
  border-radius: 16px;
  background: linear-gradient(145deg, #69f4be, #28bd82);
  font-size: 21px;
  place-items: center;
}
.offline-app-player > header > div { display: grid; flex: 1; gap: 4px; }
.offline-app-player > header small { color: #5dbb94; font-size: 8px; font-weight: 900; letter-spacing: 0.09em; }
.offline-app-player > header strong { font-size: 15px; }
.offline-app-player > header > i { color: #6f7f82; }

.offline-album {
  position: relative;
  display: grid;
  width: 164px;
  height: 164px;
  margin: 22px auto 0;
  color: #d5ffef;
  border: 1px solid rgba(69, 224, 168, 0.26);
  border-radius: 42px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.15), transparent 31%),
    linear-gradient(145deg, rgba(69, 224, 168, 0.25), rgba(69, 215, 255, 0.08));
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.3), 0 0 50px rgba(69, 224, 168, 0.1);
  font-size: 62px;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.offline-album::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(155deg, transparent 42%, rgba(2, 10, 11, 0.14) 62%, rgba(2, 10, 11, 0.78));
  content: "";
  pointer-events: none;
}

.offline-album > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 850ms cubic-bezier(.16, 1, .3, 1), filter 850ms ease;
}

.offline-player-callout.motion-active .offline-album > img { filter: saturate(1.12) contrast(1.04); transform: scale(1.075); }

.offline-equalizer { position: absolute; z-index: 2; right: 13px; bottom: 13px; display: flex; align-items: end; height: 39px; padding: 7px 8px; gap: 3px; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 11px; background: rgba(2, 8, 11, 0.65); box-shadow: 0 9px 24px rgba(0, 0, 0, 0.24); backdrop-filter: blur(8px); }
.offline-equalizer i { width: 3px; height: 14px; border-radius: 999px; background: linear-gradient(to top, var(--green), #fff); animation: equalizer 1.15s ease-in-out infinite alternate; }
.offline-equalizer i:nth-child(2n) { height: 27px; animation-delay: -0.4s; }
.offline-equalizer i:nth-child(3n) { height: 20px; animation-delay: -0.75s; }

.offline-track { display: grid; margin-top: 20px; text-align: center; }
.offline-track strong { font-size: 14px; }
.offline-track > small { margin-top: 5px; color: #71817f; font-size: 9px; }
.offline-track > span { position: relative; height: 5px; margin-top: 15px; overflow: hidden; border-radius: 999px; background: rgba(255, 255, 255, 0.08); }
.offline-track > span > i { display: block; width: 44%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--green), var(--cyan)); }
.offline-track > div { display: flex; justify-content: space-between; margin-top: 6px; color: #62706f; }
.offline-track > div small { font-size: 8px; }
.offline-controls { display: flex; align-items: center; justify-content: center; margin-top: 13px; gap: 28px; color: #b8c5c1; }
.offline-controls > b { display: grid; width: 55px; height: 55px; color: #07110d; border-radius: 50%; background: linear-gradient(145deg, #65f0b8, #2ac68b); box-shadow: 0 13px 27px rgba(69, 224, 168, 0.2); place-items: center; }

.offline-badge-large {
  position: absolute;
  z-index: 4;
  right: -22px;
  bottom: 5px;
  display: flex;
  align-items: center;
  min-width: 270px;
  padding: 15px;
  gap: 13px;
  color: #d9fff0;
  border: 1px solid rgba(69, 224, 168, 0.24);
  border-radius: 19px;
  background: rgba(6, 18, 15, 0.92);
  box-shadow: 0 21px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  translate: var(--player-badge-x) var(--player-badge-y);
  transition: box-shadow 600ms cubic-bezier(.16, 1, .3, 1);
  will-change: translate;
}

.offline-player-callout.motion-active .offline-badge-large { box-shadow: 0 28px 54px rgba(0, 0, 0, 0.43), 0 0 34px rgba(69, 224, 168, 0.08); }

.offline-badge-large > span { position: relative; display: grid; width: 58px; height: 58px; flex: 0 0 auto; color: #07120e; border-radius: 18px; background: var(--green); place-items: center; }
.offline-badge-large .material-symbols-outlined { font-size: 34px; font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 40; }
.offline-badge-large > div { display: grid; gap: 5px; }
.offline-badge-large small { color: #6ca98e; font-size: 8px; font-weight: 900; letter-spacing: 0.07em; }
.offline-badge-large strong { color: #caffea; font-size: 14px; }

.offline-player-copy h3 {
  margin: 20px 0 11px;
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 54px);
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.offline-player-copy > p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.offline-player-points {
  display: flex;
  flex-wrap: wrap;
  margin-top: 21px;
  gap: 8px;
}

.offline-player-points span {
  display: grid;
  align-items: center;
  grid-template-columns: 34px auto;
  min-height: 46px;
  padding: 6px 13px 6px 7px;
  gap: 8px;
  color: #a9b5b1;
  border: 1px solid rgba(69, 224, 168, 0.11);
  border-radius: 999px;
  background: rgba(69, 224, 168, 0.045);
  font-size: 11px;
  font-weight: 800;
}

.offline-player-points span > i,
.offline-wifi-icon {
  display: grid;
  width: 34px;
  height: 34px;
  color: var(--green);
  border-radius: 11px;
  background: rgba(69, 224, 168, .09);
  place-items: center;
}

.offline-player-points strong { font-size: 11px; line-height: 1.2; }

.offline-wifi-icon {
  overflow: hidden;
}

.offline-wifi-icon .material-symbols-outlined { display: block; font-size: 22px; line-height: 1; font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 28; }

.protection-device,
.scanner-phone,
.playlist-visual-card,
.download-logo {
  --card-base-x: 0deg;
  --card-base-y: 0deg;
  --card-base-z: 0deg;
  --card-motion-x: 0deg;
  --card-motion-y: 0deg;
  --card-motion-lift: 0px;
  --card-motion-scale: 1;
  transform: perspective(1300px) translate3d(0, var(--card-motion-lift), 0) rotateX(calc(var(--card-base-x) + var(--card-motion-x))) rotateY(calc(var(--card-base-y) + var(--card-motion-y))) rotateZ(var(--card-base-z)) scale(var(--card-motion-scale));
  transform-style: preserve-3d;
  transition: border-color 800ms cubic-bezier(.16, 1, .3, 1), box-shadow 900ms cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}

@keyframes equalizer {
  to { height: 40px; opacity: 0.72; }
}

.security-section {
  overflow: hidden;
  border-block: 1px solid rgba(69, 224, 168, 0.08);
  background:
    radial-gradient(circle at 18% 24%, rgba(69, 224, 168, 0.08), transparent 30rem),
    radial-gradient(circle at 82% 76%, rgba(69, 215, 255, 0.07), transparent 34rem),
    linear-gradient(180deg, rgba(8, 18, 20, 0.22), rgba(8, 18, 20, 0.06));
}

.security-intro {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.2fr) minmax(430px, .8fr);
  gap: 54px;
}

.security-copy h2 span {
  background-image: linear-gradient(90deg, var(--green), var(--cyan));
}

.security-copy-wide { max-width: 760px; }
.security-copy-wide h2 { margin-bottom: 19px; }
.security-copy-wide > p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.72; }

.security-points {
  display: grid;
  margin-top: 0;
  gap: 14px;
}

.security-points > div {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
}

.security-points > div > i {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: var(--green);
  border-radius: 11px;
  background: rgba(69, 224, 168, 0.1);
  place-items: center;
}

.security-points span {
  display: grid;
  line-height: 1.35;
}

.security-points strong { font-size: 13px; }
.security-points small { margin-top: 4px; color: var(--muted-2); font-size: 10px; }

.protection-experiences {
  display: grid;
  margin-top: 58px;
  gap: 34px;
}

.protection-experience {
  --protection-accent: 69, 224, 168;
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, .78fr) minmax(520px, 1.22fr);
  min-height: 760px;
  overflow: hidden;
  padding: 54px;
  gap: 58px;
  border: 1px solid rgba(var(--protection-accent), .2);
  border-radius: 40px;
  background:
    radial-gradient(circle at 84% 42%, rgba(var(--protection-accent), .14), transparent 30rem),
    linear-gradient(145deg, rgba(17, 26, 31, .96), rgba(7, 10, 17, .98));
  box-shadow: 0 38px 90px rgba(0, 0, 0, .29), inset 0 1px rgba(255, 255, 255, .05);
  isolation: isolate;
}

.protection-experience::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(var(--protection-accent), .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--protection-accent), .025) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, black 72%);
}

.ad-experience {
  --protection-accent: 69, 215, 255;
  background:
    radial-gradient(circle at 18% 44%, rgba(69, 215, 255, .17), transparent 29rem),
    radial-gradient(circle at 90% 10%, rgba(139, 92, 246, .12), transparent 24rem),
    linear-gradient(145deg, rgba(11, 24, 34, .97), rgba(7, 9, 19, .99));
}

.ad-experience .protection-experience-copy { order: 2; }
.ad-experience .protection-device { order: 1; }

.protection-experience-copy {
  position: relative;
  z-index: 3;
}

.protection-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #9af1cf;
}

.protection-kicker > span {
  display: grid;
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  color: var(--green);
  border: 1px solid rgba(69, 224, 168, .2);
  border-radius: 21px;
  background: rgba(69, 224, 168, .1);
  box-shadow: 0 18px 35px rgba(0, 0, 0, .25), 0 0 30px rgba(69, 224, 168, .08);
  font-size: 25px;
  place-items: center;
  transform: translateZ(24px) rotate(-5deg);
}

.protection-kicker small { font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.protection-kicker.cyan { color: #a5efff; }
.protection-kicker.cyan > span { color: var(--cyan); border-color: rgba(69, 215, 255, .22); background: rgba(69, 215, 255, .1); box-shadow: 0 18px 35px rgba(0, 0, 0, .25), 0 0 30px rgba(69, 215, 255, .09); }
.ad-experience .protection-kicker.cyan > span {
  transform: translateZ(24px) rotate(0deg);
  transform-origin: center;
}
.protection-experience-copy h3 { margin: 24px 0 17px; font-family: var(--display); font-size: clamp(40px, 4.7vw, 62px); letter-spacing: -.055em; line-height: 1.01; }
.protection-experience-copy > p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.76; }

.protection-feature-list { display: grid; margin-top: 28px; gap: 10px; }
.protection-feature-list span { display: grid; align-items: center; grid-template-columns: 48px 1fr; min-height: 66px; padding: 9px 13px; gap: 12px; border: 1px solid rgba(69, 224, 168, .12); border-radius: 16px; background: rgba(69, 224, 168, .045); }
.protection-feature-list span i { display: grid; width: 48px; height: 48px; color: var(--green); border-radius: 14px; background: rgba(69, 224, 168, .1); place-items: center; }
.protection-feature-list b { font-size: 13px; }
.protection-feature-list.cyan span { border-color: rgba(69, 215, 255, .13); background: rgba(69, 215, 255, .045); }
.protection-feature-list.cyan span i { color: var(--cyan); background: rgba(69, 215, 255, .1); }

.protection-device {
  --card-base-x: 1deg;
  --card-base-y: -3deg;
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 650px;
  padding: 49px 22px 20px;
  overflow: hidden;
  border: 1px solid rgba(var(--protection-accent), .22);
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 3%, rgba(var(--protection-accent), .13), transparent 20rem),
    linear-gradient(160deg, #121b25, #06090e 78%);
  box-shadow: inset 0 0 0 5px rgba(0, 0, 0, .28), 0 36px 72px rgba(0, 0, 0, .42), 0 0 52px rgba(var(--protection-accent), .08);
  transition: filter 420ms ease, border-color 420ms ease, box-shadow 520ms ease;
}

.protection-device.protection-disabled { filter: saturate(.45); border-color: rgba(255, 255, 255, .09); }
.spam-device.is-alerting { border-color: rgba(255, 206, 104, .5); box-shadow: inset 0 0 0 5px rgba(0, 0, 0, .28), 0 36px 72px rgba(0, 0, 0, .42), 0 0 62px rgba(255, 206, 104, .22); }
.spam-device.is-alerting .spam-hero-icon { animation: spam-alert .46s ease-in-out 2; }
@keyframes spam-alert { 50% { transform: translateZ(38px) rotate(-7deg) scale(1.08); } }

.ad-hunter-device { --card-base-y: 4deg; }

.protection-phone-speaker {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 82px;
  height: 21px;
  border-radius: 999px;
  background: #030509;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
  transform: translateX(-50%);
}

.protection-device-head,
.ad-hunter-head {
  display: grid;
  align-items: center;
  grid-template-columns: 74px 1fr auto;
  gap: 14px;
}

.spam-hero-icon,
.ad-hunter-head > span {
  position: relative;
  display: grid;
  width: 74px;
  height: 74px;
  color: #86efc6;
  border: 1px solid rgba(69, 224, 168, .2);
  border-radius: 23px;
  background: linear-gradient(145deg, rgba(69, 224, 168, .18), rgba(69, 224, 168, .06));
  box-shadow: 0 17px 30px rgba(0, 0, 0, .3), 0 0 30px rgba(69, 224, 168, .08);
  font-size: 29px;
  place-items: center;
  transform: translateZ(28px);
}

.spam-hero-icon > b { position: absolute; right: -7px; bottom: -7px; display: grid; width: 35px; height: 35px; color: #07130e; border: 4px solid #0b1118; border-radius: 50%; background: var(--green); font-size: 12px; place-items: center; }
.protection-device-head > div,
.ad-hunter-head > div { display: grid; min-width: 0; line-height: 1.2; }
.protection-device-head small,
.ad-hunter-head small { color: #6fd1a9; font-size: 8px; font-weight: 900; letter-spacing: .12em; }
.protection-device-head strong,
.ad-hunter-head strong { margin-top: 5px; font-family: var(--display); font-size: 22px; }
.protection-device-head em { display: flex; align-items: center; margin-top: 6px; gap: 6px; color: #79918a; font-size: 9px; font-style: normal; }
.protection-device-head em i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }

[data-spam-master],
[data-ad-monitor] {
  display: grid;
  justify-items: center;
  min-width: 82px;
  min-height: 62px;
  padding: 8px 11px;
  gap: 4px;
  color: #c8fae7;
  border: 1px solid rgba(69, 224, 168, .17);
  border-radius: 17px;
  background: rgba(69, 224, 168, .09);
  font-size: 9px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 450ms cubic-bezier(.16, 1, .3, 1), background 350ms ease, color 350ms ease;
}
[data-spam-master]:hover, [data-ad-monitor]:hover { transform: translateY(-3px); }
[data-spam-master][aria-pressed="false"], [data-ad-monitor][aria-pressed="false"] { color: #88909c; border-color: rgba(255, 255, 255, .08); background: rgba(255, 255, 255, .035); }

.spam-today {
  display: flex;
  align-items: center;
  margin-top: 18px;
  padding: 13px;
  gap: 12px;
  border: 1px solid rgba(69, 224, 168, .15);
  border-radius: 18px;
  background: linear-gradient(115deg, rgba(69, 224, 168, .1), rgba(255, 255, 255, .025));
}
.spam-today > span {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  color: var(--green);
  border-radius: 14px;
  background: rgba(69, 224, 168, .1);
  font-size: 18px;
  place-items: center;
}
.spam-today > div { display: grid; flex: 1; line-height: 1.2; }
.spam-today small { color: #5d9e84; font-size: 7px; font-weight: 900; letter-spacing: .1em; }
.spam-today strong { margin-top: 5px; font-size: 13px; }
.spam-today em { display: inline-flex; align-items: center; padding: 7px 9px; gap: 5px; color: #c0f7e1; border-radius: 999px; background: rgba(69, 224, 168, .09); font-size: 8px; font-style: normal; font-weight: 900; }

.spam-filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 12px;
  gap: 9px;
}
.spam-filters button {
  display: grid;
  align-items: center;
  grid-template-columns: 38px 1fr 38px;
  min-height: 70px;
  padding: 9px 10px;
  gap: 9px;
  color: #cad3d0;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  background: rgba(255, 255, 255, .028);
  text-align: left;
  cursor: pointer;
  transition: transform 460ms cubic-bezier(.16, 1, .3, 1), border-color 360ms ease, background 360ms ease;
}
.spam-filters button:hover { transform: translateY(-3px); }
.spam-filters button > i { display: grid; width: 38px; height: 38px; color: #74817e; border-radius: 12px; background: rgba(255, 255, 255, .04); place-items: center; }
.spam-filters button > span { display: grid; line-height: 1.2; }
.spam-filters strong { font-size: 10px; }
.spam-filters small { margin-top: 4px; color: #69736f; font-size: 7px; }
.spam-filters button > b { position: relative; display: block; width: 36px; height: 21px; border-radius: 999px; background: #343b43; }
.spam-filters button > b i { position: absolute; top: 4px; left: 4px; width: 13px; height: 13px; border-radius: 50%; background: #9299a3; transition: transform 300ms cubic-bezier(.16, 1, .3, 1), background 300ms ease; }
.spam-filters button[aria-pressed="true"] { border-color: rgba(69, 224, 168, .15); background: rgba(69, 224, 168, .055); }
.spam-filters button[aria-pressed="true"] > i { color: var(--green); background: rgba(69, 224, 168, .1); }
.spam-filters button[aria-pressed="true"] > b { background: rgba(69, 224, 168, .28); }
.spam-filters button[aria-pressed="true"] > b i { background: var(--green); transform: translateX(15px); box-shadow: 0 0 11px rgba(69, 224, 168, .5); }

.spam-history { margin-top: 12px; padding: 12px; border: 1px solid rgba(255, 206, 104, .15); border-radius: 18px; background: rgba(255, 206, 104, .045); }
.spam-history > header { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: #f4d891; font-size: 10px; font-weight: 900; }
.spam-history > header small { color: #8f856c; font-size: 7px; }
.spam-history > div { display: grid; margin-top: 9px; gap: 7px; }
.spam-history article {
  display: grid;
  align-items: center;
  grid-template-columns: 30px 1fr auto;
  min-height: 53px;
  padding: 6px 7px;
  gap: 8px;
  border-radius: 12px;
  background: rgba(5, 8, 13, .56);
  transition: opacity 420ms ease, transform 500ms cubic-bezier(.16, 1, .3, 1);
}
.spam-history article.released { opacity: .48; transform: scale(.98); }
.spam-history article > i { color: #f0cc73; }
.spam-history article > span { display: grid; line-height: 1.2; }
.spam-history article strong { font-size: 10px; }
.spam-history article small { margin-top: 3px; color: #777264; font-size: 7px; }
.spam-history article button { min-height: 35px; padding: 0 10px; color: #092016; border: 0; border-radius: 10px; background: var(--green); font-size: 8px; font-weight: 900; cursor: pointer; }

.protection-demo-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 51px;
  margin-top: 11px;
  padding: 0 16px;
  gap: 10px;
  color: #072016;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(135deg, #61edb6, #2fc88e);
  box-shadow: 0 15px 28px rgba(69, 224, 168, .16);
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 480ms cubic-bezier(.16, 1, .3, 1), box-shadow 480ms ease;
}
.protection-demo-action:hover { transform: translateY(-3px); box-shadow: 0 20px 35px rgba(69, 224, 168, .22); }
.interaction-status { margin: 9px 0 0; color: #66736e; font-size: 8px; text-align: center; }

.ad-hunter-head > span {
  color: #9ceeff;
  border-color: rgba(69, 215, 255, .32);
  background: radial-gradient(circle, rgba(119, 232, 255, .2), rgba(69, 215, 255, .08) 64%);
  box-shadow: 0 17px 30px rgba(0, 0, 0, .3), 0 0 0 6px rgba(69, 215, 255, .045), 0 0 20px rgba(69, 215, 255, .2);
}
.ad-hunter-head > span::before,
.ad-hunter-head > span::after {
  position: absolute;
  border: 1px solid rgba(142, 236, 255, .34);
  content: "";
  pointer-events: none;
}
.ad-hunter-head > span::before {
  inset: -8px;
  border-radius: 28px;
  transform-origin: center;
  animation: ad-target-pulse 2.2s ease-out infinite;
}
.ad-hunter-head > span::after { inset: 14px; border-radius: 50%; }
.ad-hunter-head > span > i { position: relative; z-index: 2; filter: drop-shadow(0 0 8px rgba(142, 236, 255, .55)); }
.ad-hunter-head small { color: #5fbacf; }

.ad-radar-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(360px, 92%);
  height: 260px;
  margin: 17px auto 0;
  overflow: hidden;
  border: 1px solid rgba(69, 215, 255, .18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 215, 255, .14), rgba(69, 215, 255, .025) 55%, transparent 56%);
  box-shadow: inset 0 0 55px rgba(69, 215, 255, .07), 0 24px 45px rgba(0, 0, 0, .28);
  transform: translateZ(28px) rotateX(5deg);
}
.radar-ring { position: absolute; border: 1px solid rgba(69, 215, 255, .22); border-radius: 50%; }
.ring-one { width: 96px; height: 96px; }
.ring-two { width: 175px; height: 175px; }
.ring-three { width: 245px; height: 245px; }
.radar-sweep {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 94%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    transform-origin: 50% 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    background: conic-gradient(from 0deg at 50% 50%, rgba(69, 215, 255, .42), transparent 32deg);
    animation: radar-sweep 3.2s linear infinite;
}
.radar-core { position: relative; z-index: 3; display: grid; width: 72px; height: 72px; color: #07151b; border-radius: 22px; background: linear-gradient(145deg, #7be8ff, #32acd2); box-shadow: 0 0 40px rgba(69, 215, 255, .42); font-size: 25px; place-items: center; animation: radar-core 2.4s ease-in-out infinite; }
.radar-app { position: absolute; z-index: 4; display: grid; width: 44px; height: 44px; color: #b7f2ff; border: 1px solid rgba(69, 215, 255, .24); border-radius: 14px; background: rgba(8, 24, 33, .92); box-shadow: 0 10px 24px rgba(0, 0, 0, .3); place-items: center; animation: radar-target 2.8s ease-in-out infinite; }
.radar-app::after { position: absolute; inset: -7px; border: 1px solid rgba(69, 215, 255, .24); border-radius: 18px; content: ""; animation: small-pulse 2s ease-out infinite; }
.app-one { top: 38px; left: 72px; }
.app-two { right: 62px; bottom: 44px; animation-delay: -.8s; }
.app-three { bottom: 27px; left: 96px; animation-delay: -1.5s; }

@keyframes radar-sweep {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes radar-core { 50% { transform: scale(1.08) translateZ(8px); } }
@keyframes radar-target { 50% { translate: 0 -7px; } }

.ad-hunter-device.is-scanning .ad-radar-stage { box-shadow: inset 0 0 75px rgba(69, 215, 255, .15), 0 24px 55px rgba(0, 0, 0, .34), 0 0 45px rgba(69, 215, 255, .13); }
.ad-hunter-device.is-scanning .radar-sweep { animation-duration: .85s; }
.ad-hunter-device.monitor-off .ad-radar-stage { opacity: .34; filter: grayscale(.7); }
.ad-hunter-device.monitor-off .radar-sweep,
.ad-hunter-device.monitor-off .radar-core,
.ad-hunter-device.monitor-off .radar-app { animation-play-state: paused; }
.ad-hunter-device.show-details .ad-suspects { opacity: 1; }

.ad-scan-progress { margin-top: 14px; }
.ad-scan-progress header { display: flex; align-items: center; justify-content: space-between; color: #91c8d4; font-size: 9px; }
.ad-scan-progress header span { display: flex; align-items: center; gap: 7px; }
.ad-scan-progress header em { color: var(--cyan); font-style: normal; font-weight: 900; }
.ad-scan-progress > span { display: block; height: 8px; margin-top: 8px; overflow: hidden; border-radius: 999px; background: rgba(255, 255, 255, .055); }
.ad-scan-progress > span i { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--cyan), #8b5cf6); box-shadow: 0 0 18px rgba(69, 215, 255, .45); transition: width 320ms ease; }

.ad-suspects { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 13px; gap: 9px; }
.ad-suspects article { display: grid; align-items: center; grid-template-columns: 44px 1fr auto; min-height: 78px; padding: 10px; gap: 9px; border: 1px solid rgba(69, 215, 255, .1); border-radius: 16px; background: rgba(69, 215, 255, .035); cursor: pointer; transition: transform 480ms cubic-bezier(.16, 1, .3, 1), border-color 350ms ease, background 350ms ease; }
.ad-suspects article:hover, .ad-suspects article.selected { border-color: rgba(69, 215, 255, .28); background: rgba(69, 215, 255, .09); transform: translateY(-4px); }
.ad-suspects article > span { display: grid; width: 44px; height: 44px; color: var(--cyan); border-radius: 13px; background: rgba(69, 215, 255, .1); place-items: center; }
.ad-suspects article > div { display: grid; min-width: 0; line-height: 1.2; }
.ad-suspects small { color: #5b98a6; font-size: 6px; font-weight: 900; letter-spacing: .08em; }
.ad-suspects strong { margin-top: 4px; font-size: 9px; }
.ad-suspects em { margin-top: 4px; color: #667780; font-size: 7px; font-style: normal; }
.ad-suspects article > b { color: var(--cyan); font-size: 13px; }
.ad-suspects { opacity: .54; transition: opacity 420ms ease; }
.ad-hunter-device.scan-complete .ad-suspects { opacity: 1; }

.ad-hunter-actions { display: grid; grid-template-columns: 1.35fr .65fr; margin-top: 12px; gap: 8px; }
.ad-hunter-actions button { display: flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 12px; gap: 9px; color: #07151b; border: 0; border-radius: 15px; background: linear-gradient(135deg, #72e8ff, #3cb8dc); font-size: 9px; font-weight: 900; cursor: pointer; transition: transform 460ms cubic-bezier(.16, 1, .3, 1), box-shadow 420ms ease; }
.ad-hunter-actions button:last-child { color: #bceffa; border: 1px solid rgba(69, 215, 255, .15); background: rgba(69, 215, 255, .065); }
.ad-hunter-actions button:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(69, 215, 255, .12); }

.scanner-grid {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 86px;
}

.scanner-grid {
  grid-template-columns: 0.92fr 1.08fr;
}

.scanner-visual {
  --scanner-paper-width: 235px;
  --scanner-paper-height: 315px;
  --scanner-paper-half-width: 117.5px;
  --scanner-paper-half-height: 157.5px;
  --scanner-pdf-x: 0px;
  --scanner-pdf-y: 0px;
  --scanner-pdf-tilt-x: 0deg;
  --scanner-pdf-tilt-y: 0deg;
  --scanner-pdf-rotate: 0deg;
  --scanner-pdf-scale: 1;
  position: relative;
  display: grid;
  min-height: 650px;
  place-items: center;
}

.scanner-phone {
  --card-base-x: 2deg;
  /* virado para a ESQUERDA: a previa vive na direita, entao ela se inclina
     na direcao do texto em vez de virar as costas para ele */
  --card-base-y: -7deg;
  --card-base-z: 2deg;
  width: min(390px, 90%);
  overflow: hidden;
  border: 8px solid #1e2330;
  border-radius: 38px;
  background: #080b12;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.45), 0 0 55px rgba(69, 215, 255, 0.08);
  transition: border-color 280ms ease, box-shadow 420ms ease, transform 520ms cubic-bezier(.16, 1, .3, 1);
}

.scanner-top {
  display: grid;
  align-items: center;
  grid-template-columns: 30px 1fr 30px;
  min-height: 59px;
  padding: 0 15px;
  color: #cfd5e0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 11px;
  text-align: center;
}

.scanner-top i:first-child { color: #707a8c; }
.scanner-top i:last-child { color: var(--yellow); }

.document-camera {
  position: relative;
  display: grid;
  height: 460px;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.07), transparent 35%),
    linear-gradient(145deg, #191d25, #080a0f 70%);
  place-items: center;
  isolation: isolate;
}

.document-camera::before {
  z-index: 0;
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, transparent 0 38px, rgba(255, 255, 255, 0.012) 39px 40px);
  content: "";
}

.document-paper {
  --scanner-paper-orientation: 0deg;
  --scanner-paper-orientation-scale: 1;
  position: relative;
  z-index: 1;
  display: grid;
  overflow: hidden;
  width: var(--scanner-paper-width);
  height: var(--scanner-paper-height);
  padding: 32px;
  gap: 14px;
  border-radius: 5px;
  background: #eef2f6;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.4);
  isolation: isolate;
  transform: rotate(1deg);
  rotate: var(--scanner-paper-orientation);
  scale: var(--scanner-paper-orientation-scale);
  transform-origin: center;
  transition:
    transform 520ms cubic-bezier(.16, 1, .3, 1),
    rotate 520ms cubic-bezier(.16, 1, .3, 1),
    scale 520ms cubic-bezier(.16, 1, .3, 1),
    filter 320ms ease;
}

.document-paper::after {
  position: absolute;
  z-index: 3;
  inset: -18% -55%;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.76) 50%, transparent 62%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-42%);
}

.document-camera::after {
  position: absolute;
  z-index: 2;
  width: var(--scanner-paper-width);
  height: var(--scanner-paper-height);
  border-radius: 5px;
  background: rgba(69, 215, 255, 0.12);
  content: "";
  opacity: 0.7;
  pointer-events: none;
  transform: rotate(1deg);
  transition: background 320ms ease, opacity 320ms ease, transform 520ms cubic-bezier(.16, 1, .3, 1);
}

.doc-logo {
  display: grid;
  width: 39px;
  height: 39px;
  color: #16738f;
  border-radius: 10px;
  background: #cbeaf3;
  place-items: center;
}

.document-paper > i {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: #cbd1d9;
}

.document-paper > i:nth-of-type(2) { width: 82%; }
.document-paper > i:nth-of-type(3) { width: 92%; }
.document-paper > i:nth-of-type(4) { width: 70%; }
.document-paper > i:nth-of-type(5) { width: 88%; }

.doc-signature {
  width: 90px;
  height: 27px;
  margin-top: 8px;
  border-bottom: 2px solid #838d99;
  transform: skewX(-25deg);
}

.corner {
  position: absolute;
  z-index: 4;
  width: 34px;
  height: 34px;
  border-color: var(--cyan);
  border-style: solid;
  filter: drop-shadow(0 0 6px rgba(69, 215, 255, 0.72));
  transition: border-color 280ms ease, filter 280ms ease, transform 420ms cubic-bezier(.16, 1, .3, 1);
}

.corner.tl { top: calc(50% - var(--scanner-paper-half-height) - 3px); left: calc(50% - var(--scanner-paper-half-width) - 3px); border-width: 3px 0 0 3px; }
.corner.tr { top: calc(50% - var(--scanner-paper-half-height) - 3px); right: calc(50% - var(--scanner-paper-half-width) - 3px); border-width: 3px 3px 0 0; }
.corner.bl { bottom: calc(50% - var(--scanner-paper-half-height) - 3px); left: calc(50% - var(--scanner-paper-half-width) - 3px); border-width: 0 0 3px 3px; }
.corner.br { right: calc(50% - var(--scanner-paper-half-width) - 3px); bottom: calc(50% - var(--scanner-paper-half-height) - 3px); border-width: 0 3px 3px 0; }

.scan-line {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: calc(50% - var(--scanner-paper-half-width) - 12px);
  width: calc(var(--scanner-paper-width) + 24px);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 16px var(--cyan);
  opacity: 0;
  transform: translateY(-145px);
}

.edge-label {
  position: absolute;
  z-index: 3;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  gap: 6px;
  color: #c7f4ff;
  border: 1px solid rgba(69, 215, 255, 0.2);
  border-radius: 999px;
  background: rgba(6, 18, 25, 0.75);
  backdrop-filter: blur(10px);
  font-size: 8px;
  font-weight: 800;
}

.scanner-controls {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
  height: 86px;
  color: #8b95a6;
  text-align: center;
}

.scanner-controls > button {
  display: grid;
  justify-self: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #a9b2c1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  place-items: center;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.scanner-controls > button:hover,
.scanner-controls > button:focus-visible {
  color: #fff;
  border-color: rgba(69, 215, 255, 0.42);
  background: rgba(69, 215, 255, 0.12);
  outline: 0;
  transform: translateY(-2px);
}

.scanner-controls > button:active { transform: scale(0.92); }

.scanner-controls > .scanner-shutter {
  display: grid;
  justify-self: center;
  width: 64px;
  height: 64px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: transparent;
  box-shadow: 0 0 0 0 rgba(69, 215, 255, 0);
  place-items: center;
  transition: border-color 220ms ease, box-shadow 320ms ease, transform 220ms ease;
}

.scanner-controls > .scanner-shutter i {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: white;
  transition: background 260ms ease, transform 260ms cubic-bezier(.16, 1, .3, 1);
}

.scanner-controls > .scanner-shutter:hover,
.scanner-controls > .scanner-shutter:focus-visible {
  border-color: var(--cyan);
  background: transparent;
  box-shadow: 0 0 0 8px rgba(69, 215, 255, 0.1), 0 0 28px rgba(69, 215, 255, 0.18);
}

.scanner-visual[data-state="scanning"] .scanner-phone {
  border-color: rgba(69, 215, 255, 0.58);
  box-shadow: 0 36px 78px rgba(0, 0, 0, 0.48), 0 0 65px rgba(69, 215, 255, 0.16);
}

.scanner-visual[data-state="scanning"] .scan-line {
  opacity: 1;
  animation: scanning 1.5s ease-in-out infinite;
}

.scanner-visual[data-state="scanning"] .document-paper {
  animation: scanner-paper-focus 1.5s ease-in-out infinite;
  filter: contrast(1.04) saturate(1.05);
}

.scanner-visual[data-state="scanning"] .document-paper::after {
  opacity: 0.78;
  animation: scanner-paper-sweep 1.5s ease-in-out infinite;
}

.scanner-visual[data-state="scanning"] .scanner-shutter i {
  background: var(--cyan);
  transform: scale(0.72);
}

.scanner-visual[data-state="enhancing"] .document-paper {
  filter: brightness(1.08) contrast(1.13) saturate(0.92);
  transform: rotate(0deg) scale(1.035);
}

.scanner-visual[data-state="enhancing"] .document-camera::after {
  background: rgba(77, 153, 255, 0.18);
  opacity: 0.94;
}

.scanner-visual[data-state="enhancing"] .corner {
  border-color: #75a9ff;
  filter: drop-shadow(0 0 10px rgba(117, 169, 255, 0.82));
  transform: scale(0.82);
}

.scanner-visual[data-state="enhancing"] .scan-line {
  opacity: 1;
  animation: scanner-enhance-line 760ms cubic-bezier(.2, .8, .2, 1) both;
}

.scanner-visual[data-state="complete"] .document-camera::after {
  background: rgba(69, 224, 168, 0.14);
  opacity: 0.82;
}

.scanner-visual[data-state="complete"] .document-paper {
  animation: scanner-paper-complete 620ms cubic-bezier(.16, 1, .3, 1) both;
  filter: brightness(1.04) contrast(1.09) saturate(0.96);
}

.scanner-visual[data-state="complete"] .corner {
  border-color: var(--green);
  filter: drop-shadow(0 0 7px rgba(69, 224, 168, 0.68));
}

.scanner-visual[data-state="complete"] .edge-label {
  color: #bdf9dd;
  border-color: rgba(69, 224, 168, 0.32);
  background: rgba(7, 38, 27, 0.82);
}

.scanner-visual.is-rotated .document-paper {
  --scanner-paper-orientation: 90deg;
  --scanner-paper-orientation-scale: 0.76;
}

.scanner-visual.is-rotated .document-camera::after {
  transform: rotate(91deg) scale(0.76);
}

.pdf-float {
  position: absolute;
  right: -4px;
  bottom: 92px;
  display: flex;
  align-items: center;
  min-width: 238px;
  padding: 13px;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 17px;
  background: rgba(17, 21, 36, 0.88);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  pointer-events: none;
  translate: var(--scanner-pdf-x) var(--scanner-pdf-y);
  rotate: var(--scanner-pdf-rotate);
  scale: var(--scanner-pdf-scale);
  transform: perspective(750px) rotateX(var(--scanner-pdf-tilt-x)) rotateY(var(--scanner-pdf-tilt-y)) translateZ(58px);
  transform-style: preserve-3d;
  opacity: 0;
  transition: border-color 420ms ease, box-shadow 520ms cubic-bezier(.16, 1, .3, 1), opacity 320ms ease, transform 520ms cubic-bezier(.16, 1, .3, 1);
}

.scanner-visual.motion-active .pdf-float {
  border-color: rgba(111, 222, 255, 0.28);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.42), 0 0 30px rgba(69, 215, 255, 0.1);
}

.scanner-visual[data-state="scanning"] .pdf-float,
.scanner-visual[data-state="enhancing"] .pdf-float { opacity: 0; }
.scanner-visual[data-state="complete"] .pdf-float {
  opacity: 1;
  border-color: rgba(69, 224, 168, 0.32);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.4), 0 0 32px rgba(69, 224, 168, 0.12);
  animation: scanner-result-pop 620ms 120ms cubic-bezier(.16, 1, .3, 1) both;
  transform: perspective(750px) rotateX(var(--scanner-pdf-tilt-x)) rotateY(var(--scanner-pdf-tilt-y)) translate3d(0, -8px, 72px);
}

.pdf-float > i:first-child {
  display: grid;
  width: 42px;
  height: 42px;
  color: #ff9097;
  border-radius: 13px;
  background: rgba(255, 98, 107, 0.13);
  place-items: center;
}

.pdf-float span {
  display: grid;
  flex: 1;
  line-height: 1.2;
}

.pdf-float strong { font-size: 10px; }
.pdf-float small { margin-top: 4px; color: #758095; font-size: 8px; }
.pdf-float > i:last-child { color: var(--green); }

.scanner-copy h2 span {
  background-image: linear-gradient(90deg, var(--cyan), #75a9ff);
}

.simple-steps {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.simple-steps li {
  display: flex;
  align-items: center;
  padding: 15px;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.026);
}

.simple-steps li > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--cyan);
  border-radius: 13px;
  background: rgba(69, 215, 255, 0.1);
  place-items: center;
}

.simple-steps div {
  display: grid;
  line-height: 1.25;
}

.simple-steps strong { font-size: 13px; }
.simple-steps small { margin-top: 5px; color: var(--muted-2); font-size: 10px; }

.media-section {
  padding-top: 36px;
}

.media-panel {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  overflow: hidden;
  padding: 60px;
  gap: 62px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 10%, rgba(139, 92, 246, 0.14), transparent 28rem),
    radial-gradient(circle at 0% 100%, rgba(255, 61, 127, 0.09), transparent 25rem),
    linear-gradient(145deg, rgba(24, 25, 43, 0.9), rgba(10, 13, 22, 0.95));
  box-shadow: var(--shadow);
}

.media-panel::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 27px 27px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, black 75%);
  opacity: 0.15;
}

.media-copy,
.media-stack {
  position: relative;
  z-index: 1;
}

.media-tags {
  display: flex;
  flex-wrap: wrap;
  margin-top: 27px;
  gap: 8px;
}

.media-tags span {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  gap: 7px;
  color: #aeb6c5;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 10px;
  font-weight: 700;
}

.media-tags i { color: var(--pink-2); }

.media-stack {
  display: grid;
  gap: 12px;
  perspective: 1000px;
}

.media-item {
  display: flex;
  align-items: center;
  min-height: 82px;
  padding: 17px 18px;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 17px;
  background: rgba(8, 11, 19, 0.82);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
  transition: transform 720ms cubic-bezier(.16, 1, .3, 1), border-color 620ms ease;
}

.media-item:nth-child(1) { transform: translateX(-15px) rotateY(-3deg); }
.media-item:nth-child(2) { transform: translateX(8px); }
.media-item:nth-child(3) { transform: translateX(-2px); }
.media-item:nth-child(4) { transform: translateX(18px) rotateY(3deg); }
.media-item:nth-child(5) { transform: translateX(-9px) rotateY(-2deg); }
.media-item:hover { transform: translateX(0) scale(1.02); border-color: var(--line-strong); }

.media-item > span {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 17px;
  place-items: center;
}

.media-item img { width: 38px; height: 38px; object-fit: contain; }
.media-item.instagram > span { background: linear-gradient(135deg, rgba(129, 52, 175, 0.4), rgba(221, 42, 123, 0.4), rgba(254, 218, 119, 0.3)); }
.media-item.facebook > span { background: rgba(24, 119, 242, 0.19); }
.media-item.tiktok > span { background: rgba(255, 255, 255, 0.06); }
.media-item.youtube > span { background: rgba(255, 0, 0, 0.12); }
.media-item.shazam > span { background: linear-gradient(145deg, rgba(36, 118, 255, .25), rgba(69, 215, 255, .12)); box-shadow: inset 0 0 0 1px rgba(85, 165, 255, .18); }

.media-item div {
  display: grid;
  flex: 1;
  line-height: 1.2;
}

.media-item strong { font-size: 16px; }
.media-item small { margin-top: 6px; color: #a5afbf; font-size: 12px; line-height: 1.4; }
.media-item > i { color: #7a8497; font-size: 14px; }

.store-heading {
  max-width: 980px;
}

.store-heading > p {
  max-width: 760px;
  margin-inline: auto;
  font-size: 17px;
}

.playlist-business-section {
  overflow: clip;
  border-block: 1px solid rgba(69, 224, 168, 0.07);
  background:
    radial-gradient(circle at 76% 50%, rgba(69, 224, 168, 0.12), transparent 30rem),
    linear-gradient(180deg, rgba(7, 18, 15, 0.25), rgba(7, 11, 18, 0.12));
}

.playlist-business-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 62px;
}

.playlist-business-copy h2 {
  margin: 23px 0 18px;
  font-family: var(--display);
  font-size: clamp(43px, 5.2vw, 68px);
  letter-spacing: -0.055em;
  line-height: 1.01;
}

.playlist-business-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.playlist-benefits {
  display: grid;
  margin-top: 32px;
  gap: 11px;
}

.playlist-benefits > span {
  display: grid;
  align-items: center;
  grid-template-columns: 66px 1fr;
  grid-template-rows: auto auto;
  min-height: 94px;
  padding: 14px 17px;
  column-gap: 17px;
  border: 1px solid rgba(69, 224, 168, 0.11);
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(69, 224, 168, 0.055), rgba(255, 255, 255, 0.02));
  transition: transform 680ms cubic-bezier(.16, 1, .3, 1), border-color 580ms ease;
}

.playlist-benefits > span:hover { border-color: rgba(69, 224, 168, 0.24); transform: translateX(5px); }

.playlist-benefits > span > i {
  display: grid;
  grid-row: 1 / 3;
  width: 66px;
  height: 66px;
  color: var(--green);
  border-radius: 20px;
  background: rgba(69, 224, 168, 0.1);
  font-size: 22px;
  place-items: center;
}

.playlist-benefits > span:nth-child(2) > i { color: var(--yellow); background: rgba(255, 206, 104, 0.1); }
.playlist-benefits > span:nth-child(3) > i {
  color: #fff;
  border: 1px solid rgba(30, 215, 96, 0.4);
  background: #1ed760;
  box-shadow: 0 0 0 5px rgba(30, 215, 96, 0.08);
}
.playlist-benefits b { font-size: 17px; }
.playlist-benefits small { margin-top: 5px; color: var(--muted); font-size: 13px; line-height: 1.45; }

.business-note {
  display: flex;
  align-items: flex-start;
  margin-top: 16px;
  padding: 15px;
  gap: 10px;
  border: 1px solid rgba(255, 206, 104, 0.11);
  border-radius: 13px;
  background: rgba(255, 206, 104, 0.035);
}

.business-note > i { margin-top: 3px; color: var(--yellow); }
.business-note p { margin: 0; color: #a59e8b; font-size: 12px; line-height: 1.6; }
.business-note strong { color: #cec29e; }

.playlist-business-art {
  position: relative;
  display: grid;
  min-height: 870px;
  perspective: 1500px;
  place-items: center;
}

.playlist-business-art::before {
  position: absolute;
  width: 590px;
  height: 590px;
  border: 1px solid rgba(69, 224, 168, 0.08);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 224, 168, 0.1), transparent 65%);
  content: "";
  animation: halo-breathe 5.5s ease-in-out infinite;
}

.playlist-visual-card {
  --card-base-x: 1deg;
  /* virado para a DIREITA, na direcao do texto */
  --card-base-y: 5deg;
  position: relative;
  z-index: 3;
  width: min(690px, 100%);
  min-height: 820px;
  padding: 24px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px;
  background: linear-gradient(160deg, rgba(13, 24, 26, 0.97), rgba(6, 9, 15, 0.985));
  box-shadow: 0 42px 80px rgba(0, 0, 0, 0.5), 0 0 70px rgba(69, 224, 168, 0.08);
  isolation: isolate;
}

.playlist-visual-card::after {
  position: absolute;
  inset: 0;
  z-index: 8;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.045);
  content: "";
  pointer-events: none;
}

.playlist-visual-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  object-position: 60% center;
  filter: brightness(0.24) saturate(1.22) contrast(1.08);
  transform: scale(1.03);
  border-radius: inherit;
}

.playlist-visual-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(5, 8, 13, 0.24), rgba(5, 8, 13, 0.72) 42%, rgba(5, 8, 13, 0.98)),
    linear-gradient(90deg, rgba(6, 18, 17, 0.88), transparent 72%);
}

.playlist-visual-top {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  gap: 16px;
}

.playlist-visual-top > span {
  display: inline-flex;
  align-items: center;
  padding: 10px 13px;
  gap: 8px;
  color: #c6ffe7;
  border: 1px solid rgba(69, 224, 168, 0.2);
  border-radius: 999px;
  background: rgba(7, 20, 17, 0.72);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.playlist-visual-top > span i { color: var(--green); }
.playlist-visual-top > div { display: flex; }

.playlist-visual-top > div i {
  display: grid;
  width: 52px;
  height: 52px;
  margin-left: -9px;
  overflow: hidden;
  border: 3px solid rgba(12, 16, 24, 0.95);
  border-radius: 17px;
  background: rgba(18, 23, 34, 0.94);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  place-items: center;
}

.playlist-visual-top > div i img { width: 38px; height: 38px; object-fit: contain; }

.playlist-source-card {
  position: relative;
  z-index: 3;
  display: grid;
  align-items: center;
  grid-template-columns: 68px 1fr 34px;
  margin-top: 22px;
  padding: 15px;
  gap: 15px;
  border: 1px solid rgba(69, 224, 168, 0.2);
  border-radius: 22px;
  background: linear-gradient(110deg, rgba(13, 46, 36, 0.9), rgba(7, 14, 20, 0.88));
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(17px);
  transition: transform 520ms cubic-bezier(.16, 1, .3, 1), border-color 420ms ease;
}

.playlist-source-card:hover { border-color: rgba(69, 224, 168, 0.42); transform: translateY(-4px) translateZ(22px); }
.playlist-source-card > span { display: grid; width: 68px; height: 68px; border-radius: 20px; background: rgba(29, 185, 84, 0.14); place-items: center; }
.playlist-source-card > span img { width: 48px; height: 48px; object-fit: contain; }
.playlist-source-card > div { display: grid; min-width: 0; }
.playlist-source-card small { color: #71d2ac; font-size: 9px; font-weight: 900; letter-spacing: .1em; }
.playlist-source-card strong { margin-top: 4px; font-family: var(--display); font-size: 21px; line-height: 1.1; }
.playlist-source-card em { margin-top: 7px; color: #a9b8b2; font-size: 11px; font-style: normal; }
.playlist-source-card em i { margin-right: 5px; color: var(--green); }
.playlist-source-card > b { display: grid; width: 34px; height: 34px; color: #062217; border-radius: 50%; background: var(--green); place-items: center; }

.playlist-mode-tabs {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 13px;
  padding: 5px;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(4, 8, 13, 0.82);
}

.playlist-mode-tabs button {
  display: grid;
  align-items: center;
  grid-template-columns: 42px 1fr;
  min-height: 58px;
  padding: 9px 12px;
  gap: 10px;
  color: #99a5b5;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  text-align: left;
  transition: color 320ms ease, background 420ms ease, border-color 420ms ease, transform 420ms cubic-bezier(.16, 1, .3, 1);
}

.playlist-mode-tabs button:hover { color: #fff; transform: translateY(-2px); }
.playlist-mode-tabs button > i { display: grid; width: 42px; height: 42px; border-radius: 13px; background: rgba(255, 255, 255, 0.055); place-items: center; }
.playlist-mode-tabs button span { display: grid; }
.playlist-mode-tabs button strong { font-size: 12px; }
.playlist-mode-tabs button small { margin-top: 3px; color: #7f8999; font-size: 9px; }
.playlist-mode-tabs button.active { color: #d9fff0; border-color: rgba(69, 224, 168, 0.22); background: rgba(69, 224, 168, 0.12); }
.playlist-mode-tabs button.active > i { color: var(--green); background: rgba(69, 224, 168, 0.14); }
.playlist-mode-tabs button.active small { color: #91bea9; }

.playlist-track-list { position: relative; z-index: 3; display: grid; margin-top: 13px; gap: 7px; }
.playlist-track-list > button {
  display: grid;
  align-items: center;
  grid-template-columns: 24px 58px minmax(0, 1fr) auto;
  min-height: 68px;
  padding: 7px 9px;
  gap: 10px;
  color: #f7f9fc;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 16px;
  background: rgba(9, 14, 21, 0.82);
  text-align: left;
  transition: transform 480ms cubic-bezier(.16, 1, .3, 1), border-color 380ms ease, background 380ms ease, opacity 300ms ease;
}

.playlist-track-list > button:hover { border-color: rgba(69, 224, 168, 0.27); transform: translateX(5px) translateZ(14px); }
.playlist-track-list > button[aria-pressed="false"] { opacity: .48; }
.playlist-track-list > button.downloading { border-color: rgba(69, 215, 255, 0.42); background: rgba(69, 215, 255, 0.11); transform: translateX(7px) scale(1.012); }
.playlist-track-list > button.done { border-color: rgba(69, 224, 168, 0.28); background: rgba(69, 224, 168, 0.08); }
.playlist-track-list > button > .track-copy { display: grid; min-width: 0; }
.playlist-track-list > button strong { overflow-wrap: anywhere; font-size: 12px; line-height: 1.25; }
.playlist-track-list > button small { margin-top: 4px; color: #7f8b9b; font-size: 9px; line-height: 1.3; }
.playlist-track-list > button > b { display: grid; min-width: 62px; min-height: 34px; padding-inline: 10px; color: #052117; border: 1px solid rgba(111, 245, 190, .35); border-radius: 11px; background: linear-gradient(135deg, #56e4ad, #36c98f); box-shadow: 0 9px 18px rgba(69, 224, 168, .12); font-size: 9px; place-items: center; }
.playlist-track-list > button[aria-pressed="false"] > b { color: #6d7787; border-color: rgba(255, 255, 255, .08); }
.track-number { color: #829087; font-size: 10px; font-weight: 900; text-align: center; }
.track-cover { display: block; width: 58px; height: 46px; object-fit: cover; border: 1px solid rgba(255, 255, 255, .12); border-radius: 11px; box-shadow: 0 8px 16px rgba(0, 0, 0, .3); }

.playlist-progress { position: relative; z-index: 3; margin-top: 13px; padding: 12px 13px; border: 1px solid rgba(69, 224, 168, .12); border-radius: 15px; background: rgba(4, 10, 14, .84); }
.playlist-progress header { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.playlist-progress header span { display: flex; align-items: center; min-width: 0; gap: 7px; }
.playlist-progress header i { color: var(--green); }
.playlist-progress header strong { overflow-wrap: anywhere; font-size: 10px; line-height: 1.35; }
.playlist-progress header em { flex: 0 0 auto; color: #91ad9f; font-size: 9px; font-style: normal; }
.playlist-progress > span { display: block; height: 6px; margin-top: 10px; overflow: hidden; border-radius: 999px; background: rgba(255, 255, 255, .07); }
.playlist-progress > span > i { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--green), var(--cyan)); box-shadow: 0 0 16px rgba(69, 224, 168, .42); transition: width 420ms cubic-bezier(.16, 1, .3, 1); }

.playlist-start {
  position: relative;
  z-index: 3;
  display: grid;
  align-items: center;
  grid-template-columns: 42px 1fr 24px;
  width: 100%;
  min-height: 58px;
  margin-top: 11px;
  padding: 8px 13px;
  gap: 10px;
  color: #062217;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(100deg, #53e2ac, #42cfe9);
  box-shadow: 0 14px 30px rgba(69, 224, 168, .18);
  font-weight: 900;
  text-align: left;
  transition: transform 440ms cubic-bezier(.16, 1, .3, 1), filter 320ms ease;
}
.playlist-start:hover { filter: brightness(1.08); transform: translateY(-3px); }
.playlist-start > i:first-child { display: grid; width: 42px; height: 42px; border-radius: 13px; background: rgba(255, 255, 255, .3); place-items: center; }
.playlist-start > i:last-child { justify-self: end; }
.playlist-start:disabled { opacity: .58; cursor: progress; transform: none; }

.playlist-float-tip {
  position: absolute;
  z-index: 6;
  right: -28px;
  bottom: 72px;
  display: grid;
  align-items: center;
  grid-template-columns: 48px minmax(150px, 1fr) 24px;
  min-width: 300px;
  padding: 13px;
  gap: 11px;
  border: 1px solid rgba(69, 215, 255, .24);
  border-radius: 19px;
  background: rgba(9, 18, 28, .95);
  box-shadow: 0 25px 55px rgba(0, 0, 0, .42), 0 0 32px rgba(69, 215, 255, .08);
  transform: translateZ(52px) rotateY(-4deg);
  transition: transform 520ms cubic-bezier(.16, 1, .3, 1);
}
.playlist-visual-card:hover .playlist-float-tip { transform: translateY(-5px) translateZ(64px) rotateY(-2deg); }
.playlist-float-tip > i:first-child { display: grid; width: 48px; height: 48px; color: var(--cyan); border-radius: 14px; background: rgba(69, 215, 255, .12); place-items: center; }
.playlist-float-tip > span { display: grid; }
.playlist-float-tip small { color: #66bdd5; font-size: 8px; font-weight: 900; letter-spacing: .1em; }
.playlist-float-tip strong { margin-top: 3px; font-size: 11px; }
.playlist-float-tip > i:last-child { color: var(--green); }

.commerce-section {
  overflow: hidden;
}

.services-section {
  overflow: hidden;
  border-block: 1px solid rgba(139, 92, 246, 0.08);
  background:
    radial-gradient(circle at 80% 35%, rgba(139, 92, 246, 0.085), transparent 28rem),
    linear-gradient(180deg, rgba(18, 11, 29, 0.14), rgba(8, 10, 17, 0.04));
}

.services-heading {
  max-width: 900px;
}

.services-heading > p {
  max-width: 780px;
  margin-inline: auto;
  font-size: 17px;
}

.eyebrow-gold {
  color: #fff;
  border-color: rgba(255, 106, 42, 0.34);
  background: rgba(255, 106, 42, 0.1);
}

.eyebrow-gold i { color: #ff7a32; }

.eyebrow-purple {
  color: #d9c7ff;
  border-color: rgba(139, 92, 246, 0.22);
  background: rgba(139, 92, 246, 0.075);
}

.eyebrow-purple i { color: #b896ff; }

.commerce-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(25, 28, 43, 0.85), rgba(10, 13, 22, 0.94));
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.2);
}

.market-showcase,
.services-showcase {
  min-height: auto;
  padding: 38px;
}

.commerce-card::before {
  position: absolute;
  top: -180px;
  right: -150px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 106, 42, 0.13);
  content: "";
  filter: blur(35px);
}

.services-card::before { background: rgba(139, 92, 246, 0.14); }

.commerce-card-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.commerce-icon {
  display: grid;
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  color: #fff;
  border: 1px solid rgba(255, 106, 42, 0.28);
  border-radius: 20px;
  background: rgba(255, 106, 42, 0.14);
  font-size: 25px;
  place-items: center;
}

.services-card .commerce-icon { color: #c4a8ff; border-color: rgba(139, 92, 246, 0.2); background: rgba(139, 92, 246, 0.1); }

.commerce-card-heading > div {
  display: grid;
  min-width: 0;
  flex: 1;
  line-height: 1.2;
}

.commerce-card-heading small { color: #ff915c; font-size: 9px; font-weight: 800; letter-spacing: 0.1em; }
.services-card .commerce-card-heading small { color: #776b91; }
.commerce-card h3 { margin: 7px 0 0; font-family: var(--display); font-size: 32px; letter-spacing: -0.04em; }

.coming-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 8px;
  gap: 5px;
  color: #fff;
  border: 1px solid rgba(255, 106, 42, 0.28);
  border-radius: 999px;
  background: rgba(255, 106, 42, 0.1);
  font-size: 9px;
  font-weight: 800;
}

.services-card .coming-pill { color: #cbb7f4; border-color: rgba(139, 92, 246, 0.18); background: rgba(139, 92, 246, 0.07); }

.commerce-card > p {
  position: relative;
  z-index: 1;
  margin: 21px 0 0;
  color: var(--muted);
  max-width: 860px;
  font-size: 16px;
  line-height: 1.72;
}

.storefront-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.storefront-badge {
  display: inline-flex;
  align-items: center;
  padding: 11px 14px;
  gap: 8px;
  color: #fff;
  border-radius: 13px;
  background: linear-gradient(135deg, #ff7a32, #f04b1f);
  box-shadow: 0 10px 22px rgba(255, 106, 42, 0.18);
  font-size: 11px;
  font-weight: 900;
}

.product-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 29px;
  gap: 14px;
}

.shop-product {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 23px;
  background: linear-gradient(160deg, rgba(27, 29, 39, 0.98), rgba(10, 12, 19, 0.98));
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.22);
  transition: transform 760ms cubic-bezier(.16, 1, .3, 1), border-color 650ms ease, box-shadow 760ms cubic-bezier(.16, 1, .3, 1);
}

.shop-product:hover { border-color: rgba(255, 106, 42, 0.3); box-shadow: 0 30px 50px rgba(0, 0, 0, 0.32); transform: translateY(-6px); }

.shop-product-image {
  position: relative;
  height: 225px;
  overflow: hidden;
  background: #07080d;
}

.shop-product-image::after {
  position: absolute;
  inset: auto 0 0;
  height: 72px;
  background: linear-gradient(transparent, rgba(9, 11, 17, 0.96));
  content: "";
}

.shop-product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 950ms cubic-bezier(.16, 1, .3, 1); }
.shop-product:hover .shop-product-image img { transform: scale(1.045); }

.shop-product-image > span {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  gap: 7px;
  color: #1b1207;
  border-radius: 999px;
  background: rgba(255, 225, 155, 0.94);
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.22);
  font-size: 9px;
  font-weight: 900;
}

.shop-product-copy { display: grid; padding: 20px; }
.shop-product-copy > small { color: #ff915c; font-size: 8px; font-weight: 900; letter-spacing: 0.11em; }
.shop-product-copy h4 { margin: 8px 0 0; font-family: var(--display); font-size: 20px; letter-spacing: -0.035em; }
.shop-product-copy p { min-height: 54px; margin: 10px 0 0; color: var(--muted); font-size: 11px; line-height: 1.62; }
.shop-product-copy > strong { display: flex; align-items: center; justify-content: space-between; margin-top: 17px; padding-top: 15px; gap: 8px; color: #fff; border-top: 1px solid rgba(255, 255, 255, 0.07); font-size: 10px; }
.shop-product-copy > strong i:first-child { color: #ff7a32; }
.shop-product-copy > strong i:last-child { margin-left: auto; }

.store-category-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 17px;
  gap: 10px;
}

.store-category-row > span {
  display: grid;
  align-items: center;
  grid-template-columns: 46px 1fr;
  grid-template-rows: auto auto;
  min-height: 82px;
  padding: 12px;
  column-gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.027);
}

.store-category-row > span > i { display: grid; grid-row: 1 / 3; width: 46px; height: 46px; color: #fff; border-radius: 13px; background: rgba(255, 106, 42, 0.16); place-items: center; }
.store-category-row b { font-size: 13px; }
.store-category-row small { color: var(--muted); font-size: 9px; line-height: 1.4; }

.commerce-foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  margin-top: 17px;
  padding: 13px;
  gap: 11px;
  border: 1px solid rgba(255, 106, 42, 0.18);
  border-radius: 14px;
  background: rgba(255, 106, 42, 0.055);
}

.commerce-foot > i { color: #ff7a32; }
.commerce-foot span { display: grid; line-height: 1.25; }
.commerce-foot strong { font-size: 12px; }
.commerce-foot small { margin-top: 5px; color: #aeb4bf; font-size: 10px; }

.services-section .section-heading > p {
  max-width: 850px;
  font-size: 17px;
  line-height: 1.72;
}

.services-showcase-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.services-showcase-head .coming-pill {
  padding: 10px 13px;
  font-size: 11px;
}

.service-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
  gap: 15px;
}

.service-showcase-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: linear-gradient(155deg, rgba(28, 23, 39, 0.97), rgba(10, 12, 20, 0.99));
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
  transition: transform 760ms cubic-bezier(.16, 1, .3, 1), border-color 650ms ease, box-shadow 760ms cubic-bezier(.16, 1, .3, 1);
}

.service-showcase-card:hover { border-color: rgba(176, 135, 255, 0.3); box-shadow: 0 32px 55px rgba(0, 0, 0, 0.34); transform: translateY(-6px); }

.service-showcase-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: #080910;
}

.service-showcase-image::after { position: absolute; inset: auto 0 0; height: 110px; background: linear-gradient(transparent, rgba(11, 11, 19, 0.98)); content: ""; }
.service-showcase-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 26%; transition: transform 950ms cubic-bezier(.16, 1, .3, 1); }
.service-showcase-card:hover .service-showcase-image img { transform: scale(1.045); }
.repair-service-card .service-showcase-image img { object-position: center 42%; }

.service-showcase-image > span {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 15px;
  display: inline-flex;
  align-items: center;
  padding: 9px 11px;
  gap: 7px;
  color: #efe7ff;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(20, 14, 31, 0.78);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 800;
}

.service-showcase-image > span i { color: #c6a9ff; }

.service-showcase-copy { display: grid; padding: 22px; }
.service-showcase-copy > small { color: #a889df; font-size: 10px; font-weight: 900; letter-spacing: 0.1em; }
.service-showcase-copy h4 { margin: 9px 0 0; font-family: var(--display); font-size: 24px; letter-spacing: -0.04em; line-height: 1.12; }
.service-showcase-copy p { min-height: 92px; margin: 13px 0 0; color: #9aa4b5; font-size: 14px; line-height: 1.65; }
.service-showcase-copy > div { display: flex; flex-wrap: wrap; margin-top: 16px; gap: 7px; }
.service-showcase-copy > div span { display: inline-flex; align-items: center; padding: 8px 9px; gap: 6px; color: #c0c8d5; border: 1px solid rgba(255, 255, 255, 0.075); border-radius: 999px; background: rgba(255, 255, 255, 0.025); font-size: 10px; font-weight: 700; }
.service-showcase-copy > div span i { color: #b896ff; }

.merchant-banner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  margin-top: 22px;
  padding: 20px;
  gap: 16px;
  border: 1px solid rgba(69, 215, 255, 0.1);
  border-radius: 19px;
  background: linear-gradient(120deg, rgba(69, 215, 255, 0.055), rgba(139, 92, 246, 0.055));
}

.merchant-stack {
  position: relative;
  display: flex;
  width: 90px;
  flex: 0 0 auto;
}

.merchant-stack i {
  display: grid;
  width: 46px;
  height: 46px;
  margin-right: -12px;
  color: #c7d0de;
  border: 3px solid #171a28;
  border-radius: 50%;
  background: #252b3a;
  font-size: 13px;
  place-items: center;
}

.merchant-stack i:nth-child(2) { color: var(--yellow); background: #332d21; }
.merchant-stack i:nth-child(3) { color: var(--cyan); background: #172d36; }
.merchant-banner > span:nth-child(2) { display: grid; flex: 1; line-height: 1.25; }
.merchant-banner strong { font-size: 16px; }
.merchant-banner small { margin-top: 6px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.merchant-banner > i { color: var(--cyan); }

.ease-flow {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
}

.ease-flow article {
  position: relative;
  min-height: 275px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: linear-gradient(145deg, rgba(22, 27, 44, 0.72), rgba(12, 15, 25, 0.72));
}

.flow-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(255, 255, 255, 0.12);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
}

.flow-icon {
  display: grid;
  width: 74px;
  height: 74px;
  color: var(--pink-2);
  border-radius: 22px;
  background: rgba(255, 61, 127, 0.11);
  font-size: 28px;
  place-items: center;
}

.ease-flow article:nth-of-type(2) .flow-icon { color: var(--cyan); background: rgba(69, 215, 255, 0.11); }
.ease-flow article:nth-of-type(3) .flow-icon { color: var(--green); background: rgba(69, 224, 168, 0.11); }

.ease-flow h3 {
  margin: 32px 0 10px;
  font-family: var(--display);
  font-size: 19px;
}

.ease-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.flow-arrow {
  color: #3d4557;
}

.trust-section {
  padding-top: 25px;
}

.trust-panel {
  padding: 46px;
  border: 1px solid rgba(69, 224, 168, 0.13);
  border-radius: 30px;
  background:
    radial-gradient(circle at 10% 0%, rgba(69, 224, 168, 0.1), transparent 22rem),
    linear-gradient(145deg, rgba(17, 27, 32, 0.8), rgba(10, 14, 23, 0.92));
}

.trust-heading {
  display: flex;
  align-items: flex-start;
  max-width: 870px;
  gap: 20px;
}

.trust-shield {
  display: grid;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  color: var(--green);
  border: 1px solid rgba(69, 224, 168, 0.18);
  border-radius: 20px;
  background: rgba(69, 224, 168, 0.1);
  box-shadow: 0 0 32px rgba(69, 224, 168, 0.1);
  font-size: 24px;
  place-items: center;
}

.trust-heading h2 {
  margin: 17px 0 12px;
  font-size: clamp(34px, 4vw, 48px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 38px;
  gap: 12px;
}

.trust-grid article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.025);
}

.trust-grid article > i {
  color: var(--green);
  font-size: 19px;
}

.trust-grid h3 { margin: 18px 0 8px; font-size: 13px; }
.trust-grid p { margin: 0; color: var(--muted-2); font-size: 10px; line-height: 1.65; }

.faq-section {
  padding-top: 62px;
}

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 72px;
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.028);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 15px 18px;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  font-size: 12px;
  font-weight: 800;
}

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

.faq-list summary span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.faq-list summary span i {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  color: var(--cyan);
  border-radius: 12px;
  background: rgba(69, 215, 255, 0.09);
  place-items: center;
}

.faq-list summary > i {
  color: #657084;
  transition: transform 180ms ease;
}

.faq-list details[open] {
  border-color: rgba(69, 215, 255, 0.15);
  background: rgba(69, 215, 255, 0.035);
}

.faq-list details[open] summary > i {
  color: var(--cyan);
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 21px 21px 68px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.download-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  padding: 96px 0 70px;
  overflow: visible;
}

.download-section::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 85%;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(255, 61, 127, 0.035));
  content: "";
}

.download-panel {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 650px;
  overflow: hidden;
  padding: 66px;
  gap: 55px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 38px;
  background:
    radial-gradient(circle at 15% 45%, rgba(255, 61, 127, 0.16), transparent 25rem),
    radial-gradient(circle at 100% 0%, rgba(69, 224, 168, 0.11), transparent 30rem),
    linear-gradient(145deg, rgba(25, 28, 46, 0.96), rgba(10, 12, 20, 0.98));
  box-shadow: 0 45px 110px rgba(0, 0, 0, 0.48);
}

.download-panel::after {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: radial-gradient(circle at 20% 50%, black, transparent 42%);
  pointer-events: none;
}

.download-glow {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), #c577d9, var(--cyan), var(--green), transparent);
  box-shadow: 0 0 22px rgba(255, 61, 127, 0.5);
}

.download-art {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 470px;
  perspective: 1100px;
  place-items: center;
}

.download-art::before {
  position: absolute;
  bottom: 58px;
  width: 330px;
  height: 92px;
  border: 1px solid rgba(69, 215, 255, 0.13);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 61, 127, 0.16), rgba(69, 215, 255, 0.05) 48%, transparent 70%);
  box-shadow: 0 0 55px rgba(255, 61, 127, 0.1);
  content: "";
  transform: rotateX(68deg);
}

.download-art-label {
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 5;
  display: grid;
  align-items: center;
  grid-template-columns: 38px 1fr;
  min-width: 236px;
  padding: 9px 13px;
  gap: 10px;
  border: 1px solid rgba(69, 224, 168, 0.2);
  border-radius: 16px;
  background: rgba(7, 22, 25, 0.92);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3), 0 0 26px rgba(69, 224, 168, 0.08);
  transform: translateX(-50%);
}

.download-art-label > i {
  display: grid;
  width: 38px;
  height: 38px;
  color: #92ffda;
  border-radius: 12px;
  background: rgba(69, 224, 168, 0.13);
  font-size: 20px;
  place-items: center;
}

.download-art-label span { display: grid; line-height: 1.2; }
.download-art-label small { color: #66d8b2; font-size: 7px; font-weight: 900; letter-spacing: .11em; }
.download-art-label strong { margin-top: 3px; color: #f4fff9; font-size: 11px; }

.download-logo {
  --card-base-x: 0deg;
  --card-base-y: 0deg;
  position: relative;
  display: grid;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 61, 127, 0.15), transparent 68%);
  box-shadow: 0 0 80px rgba(255, 61, 127, 0.14);
  place-items: center;
}

.download-logo::before,
.download-logo::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.download-logo::before { inset: -35px; border-style: dashed; animation: orbit-rotate 20s linear infinite; }
.download-logo::after { inset: -75px; opacity: 0.5; }

.download-logo img {
  position: relative;
  z-index: 2;
  width: 250px;
  height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 25px 28px rgba(0, 0, 0, 0.42));
  animation: phone-float 6s ease-in-out infinite;
}

.download-orbit {
  --orbit-rotate: 0deg;
  position: absolute;
  z-index: 4;
  display: grid;
  align-items: center;
  grid-template-columns: 42px 1fr;
  width: 168px;
  min-height: 62px;
  padding: 9px 11px;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(14, 19, 31, 0.96);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.34), inset 0 1px rgba(255, 255, 255, 0.035);
  animation: download-chip-drift 5s cubic-bezier(.45, .05, .2, 1) infinite;
}

.download-orbit > i {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: currentColor;
  box-shadow: 0 8px 20px color-mix(in srgb, currentColor 18%, transparent);
  color: inherit;
  place-items: center;
}

.download-orbit > i::before { color: #071016; }
.download-orbit > span { display: grid; min-width: 0; line-height: 1.18; }
.download-orbit small { color: currentColor; font-size: 7px; font-weight: 900; letter-spacing: .11em; }
.download-orbit strong { margin-top: 3px; color: #f1f4fb; font-size: 10px; }

@keyframes download-chip-drift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(var(--orbit-rotate)); }
  50% { transform: translate3d(0, -8px, 18px) rotate(var(--orbit-rotate)); }
}

.orbit-pdf { --orbit-rotate: 5deg; top: 92px; right: -5px; color: #ff8d96; animation-delay: -1.6s; }
.orbit-shield { --orbit-rotate: -4deg; right: 0; bottom: 62px; color: var(--green); animation-delay: -3.1s; }
.orbit-music { --orbit-rotate: 4deg; bottom: 82px; left: -12px; color: var(--cyan); animation-delay: -.4s; }

.download-copy {
  position: relative;
  z-index: 2;
}

.download-copy h2 {
  max-width: 650px;
  font-size: clamp(44px, 5vw, 67px);
}

.download-copy > p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.download-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 535px;
  margin-top: 24px;
  gap: 10px;
}

.download-highlights > span {
  display: grid;
  align-items: center;
  grid-template-columns: 42px 1fr;
  padding: 12px;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  text-align: left;
}

.download-highlights i {
  display: grid;
  width: 42px;
  height: 42px;
  grid-row: 1 / 3;
  color: var(--green);
  border-radius: 13px;
  background: rgba(69, 224, 168, 0.1);
  place-items: center;
}

.download-highlights strong { align-self: end; font-size: 11px; }
.download-highlights small { align-self: start; color: #8490a3; font-size: 8px; line-height: 1.4; }

.download-meta {
  display: flex;
  flex-wrap: wrap;
  margin-top: 25px;
  gap: 8px;
}

.download-meta span {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  gap: 6px;
  color: #8f98a9;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 9px;
}

.download-meta i { color: var(--green); }
.download-meta b { color: #ccd2de; }

.download-button {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 535px;
  min-height: 76px;
  margin-top: 27px;
  padding: 10px 16px 10px 12px;
  gap: 14px;
  color: #07120e;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  background: linear-gradient(135deg, #5eeab8, #45e0a8 52%, #38c4a5);
  box-shadow: 0 18px 42px rgba(69, 224, 168, 0.23);
  transition: transform 650ms cubic-bezier(.16, 1, .3, 1), box-shadow 650ms cubic-bezier(.16, 1, .3, 1), filter 520ms ease;
}

.download-button:hover {
  box-shadow: 0 24px 52px rgba(69, 224, 168, 0.32);
  filter: brightness(1.05);
  transform: translateY(-3px);
}

.download-button-icon {
  display: grid;
  width: 53px;
  height: 53px;
  flex: 0 0 auto;
  color: #caffea;
  border-radius: 15px;
  background: rgba(5, 33, 25, 0.74);
  font-size: 24px;
  place-items: center;
}

.download-button > span:nth-child(2) {
  display: grid;
  flex: 1;
  line-height: 1.18;
}

.download-button small {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.download-button strong {
  margin-top: 5px;
  font-family: var(--display);
  font-size: 16px;
}

.download-button > i:last-child {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(7, 18, 14, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.17);
  place-items: center;
}

.install-note {
  display: flex;
  align-items: flex-start;
  max-width: 620px;
  margin-top: 19px;
  padding: 13px;
  gap: 10px;
  border: 1px solid rgba(255, 206, 104, 0.12);
  border-radius: 13px;
  background: rgba(255, 206, 104, 0.045);
}

.install-note > i {
  margin-top: 3px;
  color: var(--yellow);
}

.install-note p {
  margin: 0;
  color: #9b9586;
  font-size: 9px;
  line-height: 1.6;
}

.install-note strong { color: #d9cda9; }

.install-steps {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  margin-top: 16px;
  padding: 18px 24px;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
}

.install-steps article {
  display: flex;
  align-items: center;
  gap: 12px;
}

.install-steps article > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--green);
  border-radius: 13px;
  background: rgba(69, 224, 168, 0.1);
  place-items: center;
}

.install-steps article div {
  display: grid;
  line-height: 1.25;
}

.install-steps strong { font-size: 11px; }
.install-steps small { margin-top: 4px; color: var(--muted-2); font-size: 8px; }
.install-steps > i { color: #3d4556; font-size: 9px; }

.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: 110px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 61, 127, 0.075), transparent 25rem),
    radial-gradient(circle at 88% 22%, rgba(69, 215, 255, 0.065), transparent 27rem),
    #05070c;
}

.footer-glow {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), #bc6fe0, var(--cyan), var(--green), transparent);
  box-shadow: 0 0 24px rgba(255, 61, 127, 0.45);
}

.footer-showcase {
  display: grid;
  align-items: start;
  grid-template-columns: 0.9fr 1.1fr;
  padding-bottom: 82px;
  gap: 88px;
}

.footer-presentation {
  max-width: 560px;
}

.footer-logo {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 15px;
}

.footer-logo img {
  width: 88px;
  height: 88px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  box-shadow: 0 16px 35px rgba(255, 61, 127, 0.16);
}

.footer-logo > span {
  display: grid;
  line-height: 1.15;
}

.footer-logo strong { font-family: var(--display); font-size: 28px; }
.footer-logo small { margin-top: 8px; color: #7b879a; font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-logo small i { margin-right: 5px; color: var(--green); }

.footer-presentation h2 {
  margin: 38px 0 20px;
  font-family: var(--display);
  font-size: clamp(48px, 4.6vw, 66px);
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.footer-presentation h2 span {
  color: transparent;
  background: linear-gradient(90deg, var(--pink), #cf7bd4 48%, var(--cyan));
  background-clip: text;
  -webkit-background-clip: text;
}

.footer-presentation > p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.footer-capabilities {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 10px;
}

.footer-capabilities span {
  display: inline-flex;
  align-items: center;
  padding: 11px 14px;
  gap: 8px;
  color: #9aa4b5;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 12px;
  font-weight: 800;
}

.footer-capabilities span:nth-child(1) i { color: var(--pink-2); }
.footer-capabilities span:nth-child(2) i { color: var(--green); }
.footer-capabilities span:nth-child(3) i { color: var(--cyan); }
.footer-capabilities span:nth-child(4) i { color: var(--yellow); }

.footer-navigation {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.4fr;
  gap: 38px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-column h3 {
  display: inline-flex;
  align-items: center;
  margin: 2px 0 20px;
  gap: 10px;
  color: #dfe3eb;
  font-family: var(--display);
  font-size: 18px;
}

.footer-column h3 i { color: var(--pink-2); }
.footer-column:nth-child(2) h3 i { color: var(--cyan); }
.footer-security-column h3 i { color: var(--green); }

.footer-column > a {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 11px 12px;
  gap: 11px;
  color: #818b9d;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: color 460ms ease, border-color 460ms ease, background 460ms ease, transform 620ms cubic-bezier(.16, 1, .3, 1);
}

.footer-column > a i {
  width: 21px;
  color: #505b6e;
  text-align: center;
  transition: color 460ms ease, transform 620ms cubic-bezier(.16, 1, .3, 1);
}

.footer-column > a:hover {
  color: #d6dbe4;
  border-color: rgba(255, 255, 255, 0.075);
  background: rgba(255, 255, 255, 0.03);
  transform: translateX(3px);
}

.footer-column > a:hover i { color: var(--pink-2); }

.footer-security-column {
  gap: 9px;
}

.footer-security-box {
  display: flex;
  align-items: flex-start;
  padding: 17px;
  gap: 14px;
  border: 1px solid rgba(69, 224, 168, 0.09);
  border-radius: 14px;
  background: rgba(69, 224, 168, 0.025);
}

.footer-security-box > span {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  color: var(--green);
  border-radius: 15px;
  background: rgba(69, 224, 168, 0.09);
  place-items: center;
}

.footer-security-box > div {
  display: grid;
  line-height: 1.3;
}

.footer-security-box strong { font-size: 13px; }
.footer-security-box p { margin: 6px 0 0; color: #788497; font-size: 11px; line-height: 1.6; }

.footer-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 24px;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.022);
}

.footer-trust-row > span {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  gap: 14px;
}

.footer-trust-row > span > i {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  color: var(--pink-2);
  border-radius: 17px;
  background: rgba(255, 61, 127, 0.09);
  place-items: center;
}

.footer-trust-row > span:nth-child(2) > i { color: var(--cyan); background: rgba(69, 215, 255, 0.09); }
.footer-trust-row > span:nth-child(3) > i { color: var(--green); background: rgba(69, 224, 168, 0.09); }
.footer-trust-row > span > span { display: grid; line-height: 1.25; }
.footer-trust-row strong { font-size: 14px; }
.footer-trust-row small { margin-top: 5px; color: #788397; font-size: 11px; }

.footer-bottom-wrap {
  margin-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.16);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  gap: 22px;
  color: #566073;
  font-size: 12px;
}

.footer-bottom span,
.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-bottom a {
  padding: 12px 15px;
  color: #9aa4b4;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
  font-weight: 800;
}

.footer-bottom a i { color: #fff; }

.reveal {
  opacity: 0;
  transform: translate3d(0, 42px, 0) scale(0.985);
  transform-origin: 50% 50%;
  transition: opacity 820ms ease, transform 980ms cubic-bezier(.16, 1, .3, 1);
}

.reveal-rise { transform: translate3d(0, 48px, 0) scale(0.985); }
.reveal-zoom { transform: translate3d(0, 16px, 0) scale(0.92); }
.reveal-drop { transform: translate3d(0, -34px, 0) scale(0.98); }
.reveal-tilt { transform: perspective(1300px) translate3d(0, 28px, 0) rotateX(7deg) scale(0.97); transform-origin: 50% 0; }
.reveal-focus { transform: translate3d(0, 12px, 0) scale(1.035); }
.reveal-turn { transform: perspective(1300px) translate3d(0, 28px, 0) rotateY(-7deg) scale(0.975); }

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal-piece {
  opacity: 0;
}

.piece-rise { translate: 0 28px; }
.piece-pop { scale: 0.84; rotate: -2deg; }
.piece-drop { translate: 0 -22px; }
.piece-turn { scale: 0.92; rotate: 3deg; }
.piece-focus { scale: 1.04; }
.piece-glide { translate: 24px 0; }

.reveal.is-visible .reveal-piece {
  animation: reveal-piece-settle 860ms cubic-bezier(.16, 1, .3, 1) both;
}

.reveal.is-visible .reveal-step-1 { animation-delay: 90ms; }
.reveal.is-visible .reveal-step-2 { animation-delay: 150ms; }
.reveal.is-visible .reveal-step-3 { animation-delay: 210ms; }
.reveal.is-visible .reveal-step-4 { animation-delay: 270ms; }
.reveal.is-visible .reveal-step-5 { animation-delay: 330ms; }
.reveal.is-visible .reveal-step-6 { animation-delay: 390ms; }
.reveal.is-visible .reveal-step-7 { animation-delay: 450ms; }
.reveal.is-visible .reveal-step-8 { animation-delay: 510ms; }

@keyframes reveal-piece-settle {
  to {
    opacity: 1;
    translate: 0 0;
    scale: 1;
    rotate: 0deg;
  }
}

@keyframes phone-float {
  0%, 100% { transform: translate3d(0, 2px, 0) rotate(3.2deg); }
  45% { transform: translate3d(0, -14px, 0) rotate(1.1deg); }
  68% { transform: translate3d(0, -10px, 0) rotate(1.7deg); }
}

@keyframes halo-breathe {
  0%, 100% { opacity: .68; transform: scale(.95); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes badge-float-a {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-11px) rotate(-2deg); }
}

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

@keyframes orbit-rotate { to { transform: rotate(360deg); } }
@keyframes orbit-rotate-reverse { to { transform: rotate(-360deg); } }

@keyframes small-pulse {
  0% { opacity: 0.7; transform: scale(0.86); }
  75%, 100% { opacity: 0; transform: scale(1.22); }
}

@keyframes scanning {
  0%, 100% { top: 80px; opacity: 0.35; }
  50% { top: 365px; opacity: 1; }
}

@keyframes scanner-paper-focus {
  0%, 100% { transform: rotate(1deg) scale(1); }
  50% { transform: rotate(0.35deg) scale(1.018); }
}

@keyframes scanner-paper-sweep {
  0% { opacity: 0; transform: translateX(-42%); }
  18%, 72% { opacity: 0.78; }
  100% { opacity: 0; transform: translateX(42%); }
}

@keyframes scanner-enhance-line {
  from { top: 18%; opacity: 0; }
  22% { opacity: 1; }
  to { top: 82%; opacity: 0; }
}

@keyframes scanner-paper-complete {
  0% { transform: rotate(0deg) scale(1.035); }
  58% { transform: rotate(-0.25deg) scale(1.065); }
  100% { transform: rotate(0deg) scale(1.025); }
}

@keyframes scanner-result-pop {
  from { opacity: 0; scale: 0.82; }
  to { opacity: 1; scale: var(--scanner-pdf-scale); }
}

@media (max-width: 1080px) {
  .section { padding: 82px 0; }
  .main-nav a { padding-inline: 9px; font-size: 11px; }
  .header-status { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr); gap: 30px; }
  .hero h1 { font-size: clamp(54px, 7vw, 75px); }
  .badge-spam { left: 8px; }
  .badge-scan { right: 2px; }
  .scanner-grid { gap: 52px; }
  .security-intro { grid-template-columns: 1fr; gap: 30px; }
  .security-summary { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .protection-experience { grid-template-columns: 1fr; min-height: 0; padding: 44px; gap: 38px; }
  .ad-experience .protection-experience-copy,
  .ad-experience .protection-device { order: initial; }
  .protection-experience-copy { max-width: 760px; margin-inline: auto; text-align: center; }
  .protection-kicker { justify-content: center; }
  .protection-feature-list { max-width: 680px; margin-inline: auto; }
  .protection-device { width: min(680px, 100%); margin-inline: auto; }
  .download-panel { padding: 45px; gap: 35px; }
  .download-logo { width: 250px; height: 250px; }
  .download-logo img { width: 210px; height: 210px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .category-strip { grid-template-columns: repeat(2, 1fr); }
  .real-app-stage { height: 560px; }
  .css-phone { width: 240px; height: 480px; }
  .scene-feature-music { left: 28px; }
  .scene-feature-shield { right: 24px; }
  .scene-feature-pdf { left: 36px; }
  .scene-feature-store { right: 28px; }
  .playlist-business-grid { grid-template-columns: 1fr; gap: 42px; }
  .playlist-business-copy { max-width: 760px; margin-inline: auto; text-align: center; }
  .playlist-business-copy .eyebrow { margin-inline: auto; }
  .media-panel { padding: 46px; gap: 42px; }
  .tool-story { grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr); padding: 40px; gap: 42px; }
  .offline-player-callout { padding: 42px; gap: 42px; }
  .commerce-card { padding: 25px; }
  .footer-showcase { grid-template-columns: 1fr; gap: 60px; }
  .footer-presentation { max-width: 680px; }
  .footer-navigation { grid-template-columns: repeat(3, 1fr); }
  .footer-navigation { gap: 28px; }
}

@media (max-width: 900px) {
  .shell { width: min(100% - 34px, 1180px); }
  .section { padding: 66px 0; }
  .header-inner { min-height: 74px; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .main-nav {
    position: fixed;
    top: 74px;
    right: 0;
    left: 0;
    display: grid;
    padding: 14px 22px 22px;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 9, 17, 0.97);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: 180ms ease;
    max-height: calc(100dvh - 74px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav a { min-height: 48px; padding-inline: 15px; font-size: 13px; }
  .hero {
    position: relative;
    isolation: isolate;
    overflow: clip;
    padding: 28px 0 24px;
    background: none;
  }
  .hero::before {
    position: absolute;
    z-index: 0;
    inset: 32% -28% 0;
    background:
      radial-gradient(ellipse 74% 42% at 35% 48%, rgba(255, 61, 127, .105), transparent 72%),
      radial-gradient(ellipse 74% 42% at 68% 48%, rgba(69, 215, 255, .095), transparent 72%),
      linear-gradient(180deg, transparent 0%, rgba(11, 18, 31, .34) 34%, rgba(9, 14, 25, .5) 61%, transparent 100%);
    content: "";
    pointer-events: none;
  }
  .hero > .shell {
    position: relative;
    z-index: 1;
  }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; gap: 24px; }
  .hero-copy { max-width: 720px; padding-top: 18px; text-align: center; }
  .hero-copy .eyebrow, .hero-actions, .hero-proof { justify-content: center; margin-inline: auto; }
  .hero h1 { margin-inline: auto; }
  .hero h1 .hero-title-line { margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-visual {
    width: min(540px, 100%);
    height: 560px;
    min-height: 560px;
    margin: 0 auto;
    overflow: visible;
    translate: 0 -24px;
  }
  .hero-visual::after {
    content: none;
  }
  .hero-visual .visual-halo,
  .hero-visual .orbit {
    -webkit-mask-image: linear-gradient(to bottom, #000 0 64%, rgba(0, 0, 0, .82) 76%, rgba(0, 0, 0, .38) 89%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0 64%, rgba(0, 0, 0, .82) 76%, rgba(0, 0, 0, .38) 89%, transparent 100%);
  }
  .phone {
    width: 320px;
    scale: .82;
    transform-origin: center;
  }
  .hero-visual .floating-badge,
  .hero-visual .floating-note { scale: .9; }
  .hero-visual .badge-spam { transform-origin: left center; }
  .hero-visual .badge-scan,
  .hero-visual .floating-note { transform-origin: right center; }
  .real-app-section { padding-top: 66px; }
  .category-strip { grid-template-columns: repeat(2, 1fr); }
  .real-app-stage { height: 540px; }
  .scene-feature { min-width: 180px; }
  .scene-feature-music { left: 18px; }
  .scene-feature-shield { right: 18px; }
  .scene-feature-pdf { left: 25px; }
  .scene-feature-store { right: 20px; }
  .real-app-facts { grid-template-columns: repeat(2, 1fr); }
  .section-heading { margin-bottom: 36px; }
  .tool-story { grid-template-columns: 1fr; min-height: 0; padding: 32px; gap: 30px; }
  .tool-story-reverse .tool-story-copy,
  .tool-story-reverse .tool-story-visual { order: initial; }
  .tool-story-visual,
  .tool-story-reverse .tool-story-visual { --story-base-y: 0deg; width: 100%; }
  .offline-player-callout { grid-template-columns: 1fr; min-height: 0; padding: 36px; gap: 28px; }
  .offline-player-stage { min-height: 400px; }
  .offline-player-copy { max-width: 720px; margin-inline: auto; text-align: center; }
  .offline-player-copy .eyebrow,
  .offline-player-points { justify-content: center; margin-inline: auto; }
  .scanner-grid { grid-template-columns: 1fr; }
  .security-intro { grid-template-columns: 1fr; gap: 26px; }
  .security-copy, .scanner-copy, .playlist-business-copy { max-width: 720px; margin-inline: auto; text-align: center; }
  .security-copy .eyebrow, .scanner-copy .eyebrow, .playlist-business-copy .eyebrow { margin-inline: auto; }
  .security-summary { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .protection-experiences { margin-top: 38px; gap: 28px; }
  .protection-experience { grid-template-columns: 1fr; padding: 38px; gap: 34px; }
  .ad-experience .protection-experience-copy,
  .ad-experience .protection-device { order: initial; }
  .protection-experience-copy { max-width: 720px; margin-inline: auto; text-align: center; }
  .protection-kicker { justify-content: center; }
  .protection-feature-list { max-width: 680px; margin-inline: auto; }
  .protection-device { width: min(680px, 100%); margin-inline: auto; }
  .scanner-visual { order: 2; min-height: 550px; }
  .media-panel { grid-template-columns: 1fr; min-height: 0; padding: 36px; gap: 32px; }
  .media-copy { text-align: center; }
  .media-copy .eyebrow, .media-tags { justify-content: center; margin-inline: auto; }
  .playlist-business-grid { grid-template-columns: 1fr; }
  .playlist-business-copy { max-width: 720px; margin-inline: auto; }
  .playlist-business-art { min-height: 760px; }
  .playlist-visual-card { width: min(680px, 100%); }
  .commerce-card { min-height: auto; }
  .product-showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .store-category-row { grid-template-columns: repeat(3, 1fr); }
  .service-showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .ease-flow { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); justify-self: center; }
  .faq-layout { grid-template-columns: 1fr; gap: 38px; }
  .faq-heading { position: static; max-width: 700px; }
  .download-panel { grid-template-columns: 1fr; min-height: 0; padding: 38px; gap: 24px; }
  .download-section { padding: 80px 0 52px; }
  .download-art { min-height: 340px; }
  .download-copy { text-align: center; }
  .download-copy .eyebrow, .download-button, .download-copy > p, .download-highlights, .download-meta, .install-note { margin-inline: auto; }
  .download-meta { justify-content: center; }
  .install-note { text-align: left; }
  .install-steps { grid-template-columns: 1fr; }
  .install-steps > i { justify-self: center; transform: rotate(90deg); }
  .footer-showcase { grid-template-columns: 1fr; gap: 38px; }
  .site-footer { padding-top: 72px; }
  .footer-presentation { max-width: 680px; }
  .footer-navigation { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 620px) {
  html { scroll-padding-top: 82px; }
  .shell { width: min(100% - 24px, 1180px); }
  .section { padding: 42px 0; }
  .header-inner { min-height: 68px; gap: 12px; }
  .brand-mark { width: 44px; height: 44px; border-radius: 13px; }
  .brand-copy strong { font-size: 15px; }
  .brand-copy small { font-size: 8px; }
  .menu-toggle span { display: none; }
  .main-nav { top: 68px; max-height: calc(100dvh - 68px); padding-inline: 12px; }
  .hero { padding: 22px 0 14px; }
  .hero-grid { gap: 16px; }
  .hero-copy { width: 100%; min-width: 0; padding-top: 8px; overflow: visible; }
  .hero-copy .eyebrow { max-width: 100%; justify-content: center; line-height: 1.35; text-align: center; white-space: normal; }
  .hero h1 { width: 100%; max-width: 100%; padding-inline: 2px; overflow: visible; font-size: clamp(40px, 12.4vw, 54px); letter-spacing: -.045em; }
  .hero h1 .hero-title-line { max-width: 100%; padding-right: .12em; overflow: visible; }
  .hero-lead { font-size: 15px; line-height: 1.62; }
  .hero-actions { margin-top: 24px; }
  .hero-proof { margin-top: 18px; }
  .hero-actions { display: grid; width: 100%; }
  .button { width: 100%; }
  .hero-visual {
    width: 100%;
    height: 550px;
    min-height: 550px;
    margin: 0 auto -38px;
    overflow: visible;
    transform: none;
    translate: 0 -66px;
  }
  .phone { width: min(300px, calc(100vw - 38px)); scale: .72; transform-origin: center; }
  .floating-badge { min-width: 160px; padding: 9px; }
  .floating-badge strong { font-size: 10px; }
  .floating-badge small { font-size: 6px; }
  .hero-visual .floating-badge,
  .hero-visual .floating-note { scale: .82; }
  .badge-spam { top: 90px; left: 0; }
  .badge-scan { right: 0; bottom: 52px; z-index: 10; }
  .floating-note {
    display: flex;
    top: 64px;
    right: -3px;
    min-width: 184px;
    padding: 8px 10px 8px 8px;
    z-index: 11;
  }
  .ad-float-icon { width: 38px; height: 38px; border-radius: 12px; font-size: 15px; }
  .orbit { width: 390px; height: 390px; }
  .orbit-two { width: 315px; height: 315px; }
  .category-strip { grid-template-columns: 1fr; gap: 9px; }
  .category-strip article { padding: 15px; }
  .real-app-section { padding-top: 42px; }
  .real-app-stage {
    display: grid;
    height: 510px;
    min-height: 0;
    margin-inline: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 24px;
    perspective: 1000px;
  }
  .css-phone {
    width: 214px;
    height: 425px;
    animation: css-device-float 5.2s ease-in-out infinite;
  }
  .css-phone-frame { padding: 10px; border-radius: 46px; }
  .css-phone-speaker { top: 17px; width: 78px; height: 25px; }
  .css-phone-screen { padding: 0; border-radius: 37px; }
  .scene-orbit { width: 330px; height: 330px; }
  .scene-orbit-two { width: 260px; height: 260px; }
  .scene-floor { bottom: 22px; width: 340px; }
  .scene-label { display: none; }
  .scene-feature { min-width: 132px; padding: 8px; gap: 7px; border-radius: 14px; }
  .scene-feature > span { width: 34px; height: 34px; border-radius: 10px; }
  .scene-feature small { font-size: 5px; }
  .scene-feature strong { margin-top: 3px; font-size: 7px; }
  .scene-feature > i { display: none; }
  .scene-feature-music { top: 28px; left: 8px; transform: rotate(-4deg); }
  .scene-feature-pdf { right: 8px; bottom: 30px; left: auto; z-index: 12; transform: rotateY(-7deg) rotateZ(3deg); }
  .scene-feature-shield, .scene-feature-store { display: none; }
  .real-app-facts { grid-template-columns: 1fr; gap: 8px; }
  .section-heading { margin-bottom: 28px; }
  .section-heading h2, .security-copy h2, .scanner-copy h2, .media-copy h2, .faq-heading h2 { font-size: clamp(34px, 10.5vw, 41px); }
  .section-heading p, .security-copy > p, .scanner-copy > p, .media-copy > p, .faq-heading > p { font-size: 14px; }
  .tool-stories { gap: 16px; }
  .tool-story { padding: 22px 15px; gap: 22px; border-radius: 24px; }
  .tool-story-pink {
    padding: 19px 12px 14px;
    border-color: rgba(255, 61, 127, .24);
    background:
      radial-gradient(circle at 50% 52%, rgba(255, 61, 127, .14), transparent 22rem),
      linear-gradient(155deg, rgba(30, 20, 38, .98), rgba(8, 11, 19, .99));
    box-shadow: 0 30px 65px rgba(0, 0, 0, .35), 0 0 38px rgba(255, 61, 127, .06);
  }
  .tool-story-pink .tool-story-copy { padding-inline: 5px; }
  .tool-story-pink .tool-story-label > span { box-shadow: 0 15px 32px rgba(255, 61, 127, .2), inset 0 1px rgba(255, 255, 255, .1); }
  .tool-story-copy { text-align: center; }
  .tool-story-label { justify-content: center; }
  .tool-story h3 { font-size: clamp(30px, 9.5vw, 37px); }
  .tool-story-copy > p { font-size: 14px; line-height: 1.68; }
  .tool-story-label > span { width: 54px; height: 54px; border-radius: 16px; }
  .tool-story-points { margin-top: 21px; gap: 8px; text-align: left; }
  .tool-story-points > span { grid-template-columns: 42px 1fr; padding: 10px; }
  .tool-story-points > span > i { width: 42px; height: 42px; }
  .priority-music-sources { grid-template-columns: 1fr; }
  .priority-source { grid-template-columns: 48px 1fr 18px; min-height: 84px; padding: 10px; }
  .priority-source img { width: 48px; height: 48px; }
  .priority-source strong { font-size: 12px; }
  .priority-source em { font-size: 9px; }
  .tool-story-visual { min-height: 345px; border-radius: 22px; }
  .tool-story-pink .tool-story-visual {
    min-height: 405px;
    border-color: rgba(255, 61, 127, .28);
    box-shadow: 0 28px 58px rgba(0, 0, 0, .42), 0 0 32px rgba(255, 61, 127, .09), inset 0 1px rgba(255, 255, 255, .07);
  }
  .converter-story-visual > img { filter: saturate(1.08) brightness(.72); }
  .converter-story-panel { right: 14px; bottom: 90px; left: 14px; padding: 14px; }
  .converter-story-panel strong { font-size: 13px; }
  .story-platform-row { right: 14px; bottom: 14px; left: 14px; gap: 6px; }
  .story-platform-row span { min-height: 55px; padding: 7px 3px; gap: 5px; font-size: 9px; }
  .story-platform-row img { width: 27px; height: 27px; }
  .search-story-visual { padding: 14px; }
  .search-story-window { width: 100%; padding: 14px; }
  /* No celular a faixa continua inteira, so' um pouco menor. Nada de esconder
     as palavras nem empurrar o simbolo para fora da tela. */
  .search-hero-icon { margin-bottom: 12px; padding-bottom: 11px; column-gap: 11px; }
  .search-hero-icon > span { width: 48px; height: 48px; border-radius: 15px; font-size: 21px; }
  .search-hero-icon b { font-size: 12px; }
  .search-hero-icon small { font-size: 9px; }
  .search-story-results > span { padding: 10px; }
  .cutter-story-visual { padding: 18px; }
  .cutter-wave { height: 125px; gap: 5px; }
  .social-story-icons { top: 15px; left: 15px; gap: 6px; }
  .social-story-icons span { width: 49px; height: 49px; border-radius: 15px; }
  .social-story-icons img { width: 29px; height: 29px; }
  .social-story-panel { right: 15px; bottom: 15px; left: 15px; }
  .status-story-visual { padding: 17px; }
  .whatsapp-visual-intro { gap: 11px; }
  .whatsapp-visual-intro > span { width: 65px; height: 65px; border-radius: 20px; font-size: 38px; }
  .whatsapp-visual-intro strong { font-size: 13px; }
  .whatsapp-visual-intro > em { display: none; }
  .status-story-grid { gap: 7px; }
  .status-story-grid > span { height: 180px; border-radius: 17px; }
  .deleted-story-visual,
  .chat-story-visual { padding: 16px; }
  .recovered-message { padding: 13px; }
  .offline-player-callout { min-height: 0; padding: 25px 14px; gap: 22px; border-radius: 25px; }
  .offline-player-stage { min-height: 390px; }
  .offline-app-player { width: min(310px, 100%); min-height: 360px; padding: 19px; }
  .offline-badge-large { right: 50%; bottom: 0; min-width: 0; width: min(280px, 94%); padding: 12px; translate: calc(50% + var(--player-badge-x)) var(--player-badge-y); }
  .offline-badge-large > span { width: 52px; height: 52px; }
  .offline-player-copy h3 { font-size: clamp(32px, 10vw, 39px); }
  .offline-player-copy > p { font-size: 15px; }
  .offline-player-points { display: grid; grid-template-columns: 1fr; width: min(280px, 100%); }
  .offline-player-points span { width: 100%; grid-template-columns: 36px 1fr; border-radius: 15px; text-align: left; }
  .offline-player-points span > i,
  .offline-wifi-icon { width: 36px; height: 36px; }
  .scanner-grid { gap: 28px; }
  .security-intro { gap: 20px; }
  .security-copy, .scanner-copy { text-align: center; }
  .security-copy .eyebrow, .scanner-copy .eyebrow { margin-inline: auto; }
  .security-copy h2 { font-size: clamp(35px, 10.5vw, 43px); }
  .security-copy > p { font-size: 14px; line-height: 1.65; }
  .security-summary { grid-template-columns: 1fr; gap: 8px; }
  .security-points > div { min-height: 72px; padding: 11px; }
  .protection-experiences { width: min(100% - 18px, 1180px); margin-top: 26px; gap: 18px; }
  .protection-experience { padding: 23px 13px; gap: 24px; border-radius: 27px; }
  .protection-experience-copy h3 { margin: 18px 0 13px; font-size: clamp(32px, 10vw, 40px); }
  .protection-experience-copy > p { font-size: 14px; line-height: 1.65; }
  .protection-kicker { align-items: center; flex-direction: column; gap: 10px; text-align: center; }
  .protection-kicker > span { width: 62px; height: 62px; border-radius: 19px; }
  .protection-feature-list { margin-top: 21px; gap: 7px; text-align: left; }
  .protection-feature-list span { grid-template-columns: 44px 1fr; min-height: 60px; padding: 8px 10px; }
  .protection-feature-list span i { width: 44px; height: 44px; }
  .protection-device { min-height: 0; padding: 46px 12px 14px; border-radius: 30px; }
  .protection-phone-speaker { top: 13px; width: 68px; height: 18px; }
  .protection-device-head,
  .ad-hunter-head { grid-template-columns: 58px 1fr; gap: 10px; }
  .spam-hero-icon,
  .ad-hunter-head > span { width: 58px; height: 58px; border-radius: 18px; font-size: 22px; }
  .spam-hero-icon > b { width: 29px; height: 29px; border-width: 3px; }
  .protection-device-head strong,
  .ad-hunter-head strong { font-size: 17px; }
  [data-spam-master],
  [data-ad-monitor] { grid-column: 1 / -1; grid-template-columns: 20px auto; place-content: center; min-height: 44px; width: 100%; margin-top: 4px; }
  .spam-today { display: grid; grid-template-columns: 44px 1fr; padding: 10px; }
  .spam-today > span { width: 44px; height: 44px; }
  .spam-today em { grid-column: 1 / -1; justify-content: center; }
  .spam-filters { grid-template-columns: 1fr; gap: 7px; }
  .spam-filters button { min-height: 64px; }
  .spam-history { padding: 10px 8px; }
  .spam-history > header { align-items: flex-start; flex-direction: column; }
  .spam-history article { grid-template-columns: 26px 1fr auto; padding: 6px; }
  .spam-history article button { min-width: 65px; padding-inline: 7px; }
  .ad-radar-stage { width: min(290px, 96%); height: 235px; }
  .ring-three { width: 215px; height: 215px; }
  .ad-suspects { grid-template-columns: 1fr; }
  .ad-hunter-actions { grid-template-columns: 1fr; }
  .scanner-visual { min-height: 535px; perspective: 1100px; }
  .scanner-phone { --card-base-x: 1deg; --card-base-y: -3deg; --card-base-z: 1deg; width: min(320px, calc(100% - 18px)); border-width: 6px; border-radius: 32px; }
  .document-camera { height: 385px; }
  .scanner-visual {
    --scanner-paper-width: 205px;
    --scanner-paper-height: 275px;
    --scanner-paper-half-width: 102.5px;
    --scanner-paper-half-height: 137.5px;
  }
  .document-paper { padding: 27px; }
  .corner.tl { top: 53px; left: 46px; }
  .corner.tr { top: 53px; right: 46px; }
  .corner.bl { bottom: 52px; left: 46px; }
  .corner.br { right: 46px; bottom: 52px; }
  .scanner-controls { height: 72px; }
  .pdf-float { right: 0; bottom: 42px; min-width: 210px; z-index: 12; }
  .media-panel { padding: 25px 15px; gap: 25px; border-radius: 24px; }
  .media-copy { text-align: center; }
  .media-copy .eyebrow, .media-tags { justify-content: center; margin-inline: auto; }
  .media-stack { gap: 8px; }
  .media-item { min-height: 72px; padding: 11px 12px; gap: 11px; }
  .media-item > span { width: 50px; height: 50px; border-radius: 15px; }
  .media-item img { width: 33px; height: 33px; }
  .media-item strong { font-size: 15px; }
  .media-item small { font-size: 11px; }
  .media-item:nth-child(n) { transform: none; }
  .playlist-business-copy h2 { font-size: clamp(34px, 10.5vw, 41px); }
  .playlist-business-copy { text-align: center; }
  .playlist-business-copy .eyebrow { margin-inline: auto; }
  .playlist-business-art { min-height: 0; margin-top: 8px; }
  .playlist-business-art::before { width: 330px; height: 330px; }
  .playlist-business-copy > p { font-size: 14px; line-height: 1.65; }
  .playlist-benefits > span { grid-template-columns: 58px 1fr; min-height: 88px; padding: 12px 14px; }
  .playlist-benefits > span > i { width: 58px; height: 58px; }
  .playlist-benefits b { font-size: 15px; }
  .playlist-benefits small { font-size: 12px; }
  .playlist-visual-card { --card-base-x: 1deg; --card-base-y: 2deg; min-height: 0; padding: 15px 11px; border-radius: 24px; }
  .playlist-visual-top { align-items: flex-start; padding: 0; }
  .playlist-visual-top > span { padding: 8px 10px; font-size: 8px; }
  .playlist-visual-top > div i { width: 39px; height: 39px; border-radius: 12px; }
  .playlist-visual-top > div i img { width: 29px; height: 29px; }
  .playlist-source-card { grid-template-columns: 55px 1fr 29px; padding: 11px; gap: 10px; }
  .playlist-source-card > span { width: 55px; height: 55px; border-radius: 17px; }
  .playlist-source-card > span img { width: 40px; height: 40px; }
  .playlist-source-card strong { font-size: 17px; }
  .playlist-mode-tabs { grid-template-columns: 1fr; }
  .playlist-track-list > button { grid-template-columns: 20px 50px minmax(0, 1fr) auto; min-height: 65px; padding-inline: 7px; gap: 7px; }
  .track-cover { width: 50px; height: 41px; border-radius: 10px; }
  .playlist-track-list > button > b { min-width: 54px; min-height: 32px; padding-inline: 7px; font-size: 8px; }
  .playlist-progress header { align-items: flex-start; flex-direction: column; }
  .playlist-start { grid-template-columns: 38px 1fr 18px; }
  .playlist-start > i:first-child { width: 38px; height: 38px; }
  .playlist-float-tip { position: relative; right: auto; bottom: auto; grid-template-columns: 42px 1fr 20px; min-width: 0; margin-top: 12px; transform: none; }
  .playlist-visual-card:hover .playlist-float-tip { transform: translateY(-3px); }
  .playlist-float-tip > i:first-child { width: 42px; height: 42px; }
  .commerce-card { padding: 20px 14px; border-radius: 23px; }
  .market-showcase, .services-showcase { padding: 22px 14px; }
  .storefront-header { align-items: center; flex-direction: column; text-align: center; }
  .storefront-badge { align-self: center; }
  .commerce-card-heading { align-items: center; justify-content: center; flex-wrap: wrap; text-align: center; }
  .commerce-card-heading > div { min-width: 190px; }
  .commerce-card h3 { font-size: 23px; }
  .coming-pill { margin-left: 0; }
  .product-showcase-grid { grid-template-columns: 1fr; }
  .shop-product-image { height: 210px; }
  .store-category-row { grid-template-columns: 1fr; }
  .services-showcase-head { align-items: center; flex-direction: column; text-align: center; }
  .service-showcase-grid { grid-template-columns: 1fr; }
  .service-showcase-image { height: 240px; }
  .service-showcase-copy p { min-height: 0; }
  .merchant-banner { align-items: center; padding: 15px; }
  .merchant-banner > i { display: none; }
  .ease-flow { gap: 11px; }
  .ease-flow article { min-height: 0; padding: 23px; text-align: center; }
  .flow-icon { margin-inline: auto; }
  .flow-arrow { font-size: 12px; }
  .trust-panel { padding: 25px 19px; border-radius: 23px; }
  .trust-heading { display: grid; }
  .trust-grid { grid-template-columns: 1fr; }
  .faq-layout { gap: 25px; }
  .faq-section { padding-top: 42px; }
  .faq-heading { text-align: center; }
  .faq-heading .eyebrow { margin-inline: auto; }
  .faq-list summary { min-height: 58px; padding: 13px; font-size: 12px; }
  .faq-list details p { padding: 0 17px 19px; }
  .download-panel { min-height: 0; padding: 22px 14px 16px; gap: 10px; border-radius: 27px; background: radial-gradient(circle at 50% 13%, rgba(69, 224, 168, .12), transparent 15rem), radial-gradient(circle at 0 48%, rgba(255, 61, 127, .16), transparent 20rem), linear-gradient(155deg, rgba(25, 28, 46, .98), rgba(8, 11, 19, .99)); }
  .download-section { padding: 48px 0 32px; }
  .download-art { min-height: 330px; margin: 0; transform: none; }
  .download-art::before { bottom: 35px; width: 245px; height: 74px; }
  .download-art-label { top: 2px; min-width: 220px; }
  .download-logo { width: 190px; height: 190px; }
  .download-logo::before { inset: -25px; }
  .download-logo::after { inset: -53px; }
  .download-logo img { width: 160px; height: 160px; }
  .download-orbit { grid-template-columns: 34px 1fr; width: 134px; min-height: 52px; padding: 7px 8px; gap: 7px; border-radius: 14px; }
  .download-orbit > i { width: 34px; height: 34px; border-radius: 10px; font-size: 13px; }
  .download-orbit small { font-size: 6px; }
  .download-orbit strong { font-size: 8px; }
  .orbit-pdf { top: 72px; right: -4px; }
  .orbit-music { bottom: 45px; left: -2px; }
  .orbit-shield { right: 0; bottom: 13px; }
  .download-copy { padding: 8px 3px 2px; }
  .download-copy .eyebrow { margin-bottom: 17px; }
  .download-copy h2 { margin: 0 auto 17px; font-size: clamp(34px, 10.5vw, 42px); line-height: 1.02; }
  .download-copy > p { font-size: 13px; line-height: 1.65; }
  .download-highlights { grid-template-columns: 1fr; margin-top: 19px; gap: 8px; }
  .download-highlights > span { min-height: 66px; padding: 10px; }
  .download-highlights strong { font-size: 12px; }
  .download-highlights small { font-size: 9px; }
  .download-meta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; margin-top: 16px; }
  .download-meta span { justify-content: center; min-height: 38px; border-radius: 12px; font-size: 8px; }
  .download-meta span:last-child { grid-column: 1 / -1; }
  .download-button { min-height: 78px; margin-top: 18px; text-align: left; }
  .download-button strong { font-size: 15px; }
  .download-button > i:last-child { display: grid; }
  .install-note { padding: 13px; border-radius: 15px; }
  .install-note p { font-size: 9px; line-height: 1.55; }
  .install-steps { position: relative; padding: 12px; gap: 0; border-radius: 20px; background: rgba(12, 16, 26, .88); }
  .install-steps article { position: relative; z-index: 1; min-height: 72px; padding: 10px; border: 1px solid rgba(255, 255, 255, .065); border-radius: 15px; background: rgba(255, 255, 255, .025); }
  .install-steps article > span { width: 44px; height: 44px; }
  .install-steps strong { font-size: 12px; }
  .install-steps small { margin-top: 3px; font-size: 9px; line-height: 1.4; }
  .install-steps > i { display: grid; height: 22px; color: var(--green); transform: none; place-items: center; }
  .site-footer { padding-top: 52px; }
  .footer-showcase { gap: 32px; padding-bottom: 34px; }
  .footer-logo img { width: 72px; height: 72px; }
  .footer-logo strong { font-size: 23px; }
  .footer-presentation h2 { font-size: 42px; }
  .footer-presentation > p { font-size: 15px; }
  .footer-navigation { grid-template-columns: 1fr; gap: 24px; }
  .footer-column > a { min-height: 48px; font-size: 13px; }
  .footer-trust-row { grid-template-columns: 1fr; }
  .footer-bottom-wrap { margin-top: 24px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; min-height: auto; padding-block: 22px; gap: 12px; }
}

@media (max-width: 420px) {
  .shell { width: min(100% - 20px, 1180px); }
  .section { padding: 36px 0; }
  .real-app-section,
  .faq-section { padding-top: 36px; }
  .brand { gap: 8px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-copy strong { font-size: 14px; }
  .brand-copy small { letter-spacing: .08em; }
  .menu-toggle { min-width: 44px; min-height: 44px; padding: 0; justify-content: center; }
  .eyebrow { min-height: 35px; padding: 8px 11px; gap: 8px; font-size: 10px; }
  .eyebrow i { font-size: 14px; }
  .hero h1 { font-size: clamp(37px, 12.2vw, 49px); }
  .hero-visual { height: 505px; min-height: 505px; margin-bottom: -46px; translate: 0 -76px; }
  .phone { width: min(292px, calc(100vw - 34px)); scale: .71; }
  .hero-visual .floating-badge,
  .hero-visual .floating-note { scale: .76; }
  .floating-badge { min-width: 144px; }
  .badge-icon { width: 34px; height: 34px; }
  .badge-spam { top: 80px; }
  .badge-scan { bottom: 38px; }
  .orbit { width: 342px; height: 342px; }
  .orbit-two { width: 278px; height: 278px; }
  .real-app-stage { height: 480px; }
  .css-phone { width: 194px; height: 390px; }
  .css-phone-frame { padding: 9px; border-radius: 42px; }
  .css-phone-speaker { top: 15px; width: 72px; height: 23px; }
  .css-phone-screen { padding: 0; border-radius: 34px; }
  .scene-feature { min-width: 118px; }
  .scene-feature-pdf { right: 2px; bottom: 25px; }
  .section-heading h2,
  .security-copy h2,
  .scanner-copy h2,
  .media-copy h2,
  .faq-heading h2 { font-size: clamp(31px, 10vw, 38px); }
  .tool-story { padding-inline: 12px; }
  .tool-story h3 { font-size: clamp(28px, 9vw, 34px); }
  .tool-story-visual { min-height: 320px; }
  .tool-story-pink .tool-story-visual { min-height: 385px; }
  .story-platform-row span { font-size: 8px; }
  .story-platform-row img { width: 25px; height: 25px; }
  .search-story-window { padding: 11px; }
  .search-story-results > span { grid-template-columns: 38px 1fr 30px; gap: 8px; }
  .search-story-results > span > i:first-child { width: 38px; height: 38px; }
  .status-story-grid > span { height: 155px; }
  .offline-player-stage { min-height: 360px; }
  .offline-app-player { width: min(290px, 100%); min-height: 340px; padding: 16px; }
  .offline-album { width: 155px; height: 155px; }
  .offline-badge-large { width: min(260px, 96%); }
  .protection-experiences { width: min(100% - 12px, 1180px); }
  .protection-experience { padding-inline: 10px; }
  .protection-experience-copy h3 { font-size: clamp(30px, 9.5vw, 37px); }
  .protection-feature-list b { font-size: 12px; }
  .protection-device { padding-inline: 9px; border-radius: 27px; }
  .spam-filters button { grid-template-columns: 36px 1fr 36px; padding-inline: 8px; gap: 7px; }
  .spam-history article { grid-template-columns: 22px minmax(0, 1fr) 61px; }
  .spam-history article strong { overflow-wrap: anywhere; font-size: 9px; }
  .spam-history article button { min-width: 61px; font-size: 7px; }
  .ad-radar-stage { width: 100%; height: 220px; }
  .app-one { left: 44px; }
  .app-two { right: 42px; }
  .app-three { left: 67px; }
  .scanner-visual { min-height: 505px; }
  .scanner-phone { width: min(300px, calc(100% - 8px)); }
  .document-camera { height: 360px; }
  .scanner-visual {
    --scanner-paper-width: 190px;
    --scanner-paper-height: 250px;
    --scanner-paper-half-width: 95px;
    --scanner-paper-half-height: 125px;
  }
  .pdf-float { bottom: 34px; min-width: 194px; padding: 10px; }
  .media-panel { padding-inline: 12px; }
  .media-item { padding-inline: 10px; }
  .playlist-business-art { min-height: 0; }
  .playlist-visual-top { flex-direction: column; }
  .playlist-visual-top > div { align-self: flex-end; }
  .playlist-benefits > span { grid-template-columns: 49px 1fr; padding-inline: 10px; }
  .playlist-benefits > span > i { width: 49px; height: 49px; border-radius: 15px; }
  .playlist-benefits b { font-size: 13px; }
  .playlist-benefits small { font-size: 11px; }
  .playlist-source-card { grid-template-columns: 48px 1fr 27px; }
  .playlist-source-card > span { width: 48px; height: 48px; }
  .playlist-source-card > span img { width: 35px; height: 35px; }
  .playlist-source-card strong { font-size: 15px; }
  .playlist-source-card em { font-size: 9px; }
  .playlist-mode-tabs button { grid-template-columns: 38px 1fr; padding-inline: 9px; }
  .playlist-mode-tabs button > i { width: 38px; height: 38px; }
  .playlist-track-list > button { grid-template-columns: 17px 45px minmax(0, 1fr) auto; min-height: 61px; gap: 6px; }
  .track-cover { width: 45px; height: 38px; border-radius: 9px; }
  .playlist-track-list > button > b { min-width: 49px; min-height: 30px; padding-inline: 5px; font-size: 7px; }
  .playlist-track-list > button strong { font-size: 11px; }
  .playlist-track-list > button small { font-size: 8px; }
  .playlist-float-tip { grid-template-columns: 38px 1fr 18px; padding: 10px; }
  .playlist-float-tip > i:first-child { width: 38px; height: 38px; }
  .commerce-card-heading > div { min-width: 0; width: 100%; }
  .shop-product-image { height: 190px; }
  .service-showcase-image { height: 215px; }
  .merchant-stack { display: none; }
  .merchant-banner { text-align: center; }
  .download-art { min-height: 310px; }
  .download-section { padding: 40px 0 28px; }
  .download-logo { width: 172px; height: 172px; }
  .download-logo img { width: 145px; height: 145px; }
  .download-orbit { width: 122px; min-height: 49px; height: auto; }
  .download-art-label { min-width: 210px; padding-inline: 10px; }
  .download-copy h2 { font-size: clamp(32px, 10.5vw, 38px); }
  .download-button { padding-right: 10px; gap: 9px; }
  .download-button-icon { width: 49px; height: 49px; }
  .download-button > i:last-child { width: 34px; height: 34px; }
  .footer-presentation h2 { font-size: 36px; }
  .site-footer { padding-top: 44px; }
}

@media (hover: none), (pointer: coarse) {
  .phone-frame,
  .css-phone-frame,
  .tool-story-visual,
  .offline-app-player,
  .protection-device,
  .scanner-phone,
  .playlist-visual-card,
  .download-logo { will-change: auto; }

  .tool-story-visual:hover,
  .media-item:hover,
  .shop-product:hover,
  .service-showcase-item:hover { scale: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ambient-orb,
  .orbit,
  .visual-halo,
  .phone,
  .floating-badge,
  .floating-note,
  .ad-float-icon,
  .css-phone,
  .scene-feature,
  .scanner-phone,
  .pdf-float,
  .scan-line,
  .ad-scan-line,
  .offline-equalizer i { animation-duration: 0.01ms; animation-iteration-count: 1; }

  .hero-copy.hero-sequence .eyebrow,
  .hero-copy.hero-sequence .hero-title-line,
  .hero-copy.hero-sequence .hero-lead,
  .hero-copy.hero-sequence .hero-actions .button,
  .hero-copy.hero-sequence .hero-proof span,
  .hero-visual.hero-sequence .phone,
  .hero-visual.hero-sequence .apk-ui-nav,
  .hero-visual.hero-sequence .apk-ui-greeting,
  .hero-visual.hero-sequence .apk-ui-search,
  .hero-visual.hero-sequence .apk-ui-converter,
  .hero-visual.hero-sequence .apk-ui-recent,
  .hero-visual.hero-sequence .floating-badge,
  .hero-visual.hero-sequence .floating-note,
  .category-strip.hero-sequence article,
  .category-strip.hero-sequence article .category-icon,
  .category-strip.hero-sequence article > div,
  .category-strip.hero-sequence article > i { transition-duration: .01ms; transition-delay: 0ms; }

  .hero-visual.hero-sequence .phone-screen::after,
  .ad-float-icon::before,
  .ad-hunter-head > span::before { animation: none; }
}

/* ========================================================================== 
   Lower-page showcase redesign
   Isolated preview: .tool-stories through the footer
   ========================================================================== */

.lower-showcase-redesign {
  --lower-ink: #f8f9fc;
  --lower-muted: #aab2c3;
  --lower-line: rgba(255, 255, 255, 0.13);
  --lower-line-soft: rgba(255, 255, 255, 0.075);
  --lower-black: #05070c;
  --lower-panel: #0c1019;
}

.lower-showcase-redesign #conteudo {
  counter-reset: lower-section;
  background:
    radial-gradient(ellipse 72rem 48rem at 8% 12%, rgba(255, 61, 127, 0.07), transparent 72%),
    radial-gradient(ellipse 70rem 50rem at 92% 29%, rgba(69, 224, 168, 0.065), transparent 72%),
    radial-gradient(ellipse 74rem 52rem at 10% 49%, rgba(77, 153, 255, 0.07), transparent 72%),
    radial-gradient(ellipse 72rem 50rem at 92% 68%, rgba(194, 138, 255, 0.065), transparent 72%),
    radial-gradient(ellipse 68rem 46rem at 12% 88%, rgba(255, 206, 104, 0.05), transparent 72%),
    linear-gradient(180deg, #070a11 0%, #080d14 28%, #090b15 54%, #080d13 78%, #070910 100%);
}

.lower-showcase-redesign .tool-stories {
  display: block;
  margin-top: 82px;
}

.lower-showcase-redesign .tool-story {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  min-height: 680px;
  overflow: visible;
  padding: 110px 0;
  gap: clamp(64px, 7vw, 112px);
  border: 0;
  border-top: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.018) 22%, rgba(255, 255, 255, 0.018) 78%, transparent) top / 100% 1px no-repeat;
  box-shadow: none;
  counter-increment: lower-section;
  isolation: isolate;
}

.lower-showcase-redesign .tool-story:last-child {
  border-bottom: 0;
}

.lower-showcase-redesign .tool-story::before {
  position: absolute;
  z-index: -1;
  inset: 12% -8% 8% 52%;
  width: auto;
  height: auto;
  content: "";
  clip-path: polygon(14% 0, 100% 11%, 90% 100%, 0 88%);
  background: linear-gradient(135deg, color-mix(in srgb, var(--story-color) 15%, transparent), transparent 68%);
  mask-image: none;
  opacity: 0.72;
  transform: perspective(900px) rotateY(-8deg) rotateX(2deg);
  transform-origin: center;
}

.lower-showcase-redesign .tool-story::after {
  position: absolute;
  z-index: -1;
  top: 42px;
  right: 0;
  content: counter(lower-section, decimal-leading-zero);
  /* 13% sumia na tela; 30% ainda e' fundo, mas da' pra ler. */
  color: color-mix(in srgb, var(--story-color) 30%, transparent);
  font-family: var(--display);
  font-size: 108px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.lower-showcase-redesign .tool-story-reverse::before {
  inset: 12% 52% 8% -8%;
  clip-path: polygon(0 11%, 86% 0, 100% 88%, 10% 100%);
  transform: perspective(900px) rotateY(8deg) rotateX(2deg);
}

.lower-showcase-redesign .tool-story-reverse::after {
  right: auto;
  left: 0;
}

.lower-showcase-redesign .tool-story-copy {
  position: relative;
  z-index: 4;
  max-width: 520px;
}

.lower-showcase-redesign .tool-story-reverse .tool-story-copy {
  justify-self: end;
}

.lower-showcase-redesign .tool-story-label {
  gap: 12px;
}

.lower-showcase-redesign .tool-story-label > span {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 7px;
  background: var(--story-color);
  color: #071018;
  box-shadow: 7px 8px 0 color-mix(in srgb, var(--story-color) 18%, transparent);
  font-size: 18px;
}

.lower-showcase-redesign .tool-story-label small {
  color: var(--story-color);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.lower-showcase-redesign .tool-story h3,
.lower-showcase-redesign .protection-experience-copy h3,
.lower-showcase-redesign .scanner-copy h2,
.lower-showcase-redesign .media-copy h2,
.lower-showcase-redesign .playlist-business-copy h2,
.lower-showcase-redesign .store-heading h2,
.lower-showcase-redesign .services-heading h2,
.lower-showcase-redesign .ease-section h2,
.lower-showcase-redesign .trust-heading h2,
.lower-showcase-redesign .faq-heading h2,
.lower-showcase-redesign .download-copy h2,
.lower-showcase-redesign .footer-presentation h2 {
  letter-spacing: 0;
}

.lower-showcase-redesign .tool-story h3 {
  max-width: 12ch;
  margin: 28px 0 20px;
  font-size: 54px;
  line-height: 1.04;
}

.lower-showcase-redesign .tool-story-copy > p {
  max-width: 48ch;
  color: var(--lower-muted);
  font-size: 17px;
  line-height: 1.76;
}

.lower-showcase-redesign .tool-story-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
  gap: 0;
  border-block: 1px solid var(--lower-line-soft);
}

.lower-showcase-redesign .tool-story-points > span {
  display: grid;
  align-content: start;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  min-height: 132px;
  padding: 20px 14px 18px;
  gap: 5px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.lower-showcase-redesign .tool-story-points > span + span {
  border-left: 1px solid var(--lower-line-soft);
}

.lower-showcase-redesign .tool-story-points > span > i {
  display: inline-grid;
  grid-row: auto;
  width: 34px;
  height: 34px;
  margin-bottom: 7px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--story-color) 16%, transparent);
  color: var(--story-color);
  place-items: center;
}

.lower-showcase-redesign .tool-story-points b {
  font-size: 13px;
  line-height: 1.35;
}

.lower-showcase-redesign .tool-story-points small {
  margin: 0;
  color: var(--muted-2);
  font-size: 10px;
  line-height: 1.45;
}

.lower-showcase-redesign .priority-music-sources {
  margin-top: 18px;
  gap: 12px;
}

.lower-showcase-redesign .priority-source {
  min-height: 96px;
  border-radius: 8px;
  box-shadow: none;
}

.lower-showcase-redesign .tool-story-visual {
  --story-base-y: -5deg;
  min-height: 500px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: -34px 38px 0 rgba(0, 0, 0, 0.32), -56px 66px 90px rgba(0, 0, 0, 0.34);
  will-change: auto;
}

.lower-showcase-redesign .tool-story-reverse .tool-story-visual {
  --story-base-y: 5deg;
  box-shadow: 34px 38px 0 rgba(0, 0, 0, 0.32), 56px 66px 90px rgba(0, 0, 0, 0.34);
}

.lower-showcase-redesign .tool-story-visual.motion-active {
  box-shadow: 0 44px 95px rgba(0, 0, 0, 0.46), 0 0 0 1px color-mix(in srgb, var(--story-color) 26%, transparent);
  will-change: transform;
}

.lower-showcase-redesign .offline-player-callout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(500px, 1.08fr) minmax(0, 0.92fr);
  min-height: 710px;
  margin-top: 0;
  padding: 115px 0;
  gap: clamp(70px, 8vw, 130px);
  overflow: visible;
  border: 0;
  border-bottom: 1px solid var(--lower-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lower-showcase-redesign .offline-player-callout::before {
  z-index: -1;
  inset: 13% 51% 10% -10%;
  border-radius: 0;
  background: linear-gradient(145deg, rgba(69, 224, 168, 0.15), transparent 70%);
  clip-path: polygon(0 12%, 88% 0, 100% 88%, 12% 100%);
  opacity: 1;
}

.lower-showcase-redesign .offline-player-stage,
.lower-showcase-redesign .offline-player-copy {
  padding: 0;
}

.lower-showcase-redesign .offline-player-copy h3 {
  margin-top: 24px;
  font-size: 52px;
  letter-spacing: 0;
  line-height: 1.05;
}

.lower-showcase-redesign .offline-player-copy > p {
  color: var(--lower-muted);
  font-size: 17px;
  line-height: 1.75;
}

.lower-showcase-redesign .offline-player-points {
  border-block: 1px solid var(--lower-line-soft);
}

.lower-showcase-redesign .security-section,
.lower-showcase-redesign .scanner-section,
.lower-showcase-redesign .media-section,
.lower-showcase-redesign .playlist-business-section,
.lower-showcase-redesign .commerce-section,
.lower-showcase-redesign .services-section,
.lower-showcase-redesign .ease-section,
.lower-showcase-redesign .trust-section,
.lower-showcase-redesign .faq-section,
.lower-showcase-redesign .download-section {
  overflow: clip;
}

.lower-showcase-redesign .security-section {
  padding: 0;
  background: transparent;
  border-block: 0;
}

.lower-showcase-redesign .security-section::before {
  opacity: 0.24;
}

.lower-showcase-redesign .security-intro {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 0.88fr) minmax(540px, 1.12fr);
  gap: 90px;
}

.lower-showcase-redesign .security-copy-wide {
  max-width: 560px;
}

.lower-showcase-redesign .security-copy-wide h2 {
  font-size: 58px;
  letter-spacing: 0;
  line-height: 1.03;
}

.lower-showcase-redesign .security-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-block: 1px solid var(--lower-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lower-showcase-redesign .security-summary > div {
  min-height: 156px;
  padding: 26px 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.lower-showcase-redesign .security-summary > div + div {
  border-left: 1px solid var(--lower-line-soft);
}

.lower-showcase-redesign .protection-experiences {
  margin-top: 0;
}

.lower-showcase-redesign .protection-experience {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.82fr) minmax(540px, 1.18fr);
  min-height: 810px;
  padding: 120px 0;
  gap: clamp(70px, 8vw, 124px);
  overflow: visible;
  border: 0;
  border-top: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, transparent, rgba(var(--protection-accent), 0.018) 22%, rgba(var(--protection-accent), 0.018) 78%, transparent) top / 100% 1px no-repeat;
  box-shadow: none;
}

.lower-showcase-redesign .protection-experience::before {
  inset: 12% -10% 8% 50%;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(69, 224, 168, 0.12), transparent 68%);
  clip-path: polygon(15% 0, 100% 10%, 90% 100%, 0 88%);
  opacity: 1;
}

.lower-showcase-redesign .ad-experience::before {
  inset: 12% 50% 8% -10%;
  background: linear-gradient(225deg, rgba(69, 215, 255, 0.13), transparent 68%);
  clip-path: polygon(0 10%, 85% 0, 100% 88%, 10% 100%);
}

.lower-showcase-redesign .ad-experience .protection-experience-copy {
  order: 2;
  justify-self: end;
}

.lower-showcase-redesign .ad-experience .protection-device {
  order: 1;
}

.lower-showcase-redesign .protection-experience-copy {
  max-width: 540px;
  padding: 0;
}

.lower-showcase-redesign .protection-experience-copy h3 {
  max-width: 12ch;
  margin: 28px 0 20px;
  font-size: 54px;
  line-height: 1.04;
}

.lower-showcase-redesign .protection-feature-list {
  border-block: 1px solid var(--lower-line-soft);
}

.lower-showcase-redesign .protection-device {
  border-radius: 18px;
  box-shadow: -32px 40px 0 rgba(0, 0, 0, 0.32), -45px 62px 92px rgba(0, 0, 0, 0.38);
  will-change: auto;
}

.lower-showcase-redesign .ad-experience .protection-device {
  box-shadow: 32px 40px 0 rgba(0, 0, 0, 0.32), 45px 62px 92px rgba(0, 0, 0, 0.38);
}

.lower-showcase-redesign .protection-device.motion-active {
  will-change: transform;
}

.lower-showcase-redesign .scanner-section {
  padding: 138px 0;
  background: #080b12;
  border-bottom: 1px solid var(--lower-line-soft);
}

.lower-showcase-redesign .scanner-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(520px, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(80px, 9vw, 150px);
}

.lower-showcase-redesign .scanner-copy {
  max-width: 540px;
}

.lower-showcase-redesign .scanner-copy h2 {
  margin-top: 24px;
  font-size: 58px;
  line-height: 1.03;
}

.lower-showcase-redesign .scanner-visual {
  min-height: 660px;
}

.lower-showcase-redesign .scanner-phone {
  border-radius: 20px;
  box-shadow: -34px 42px 0 rgba(0, 0, 0, 0.34), -55px 68px 100px rgba(0, 0, 0, 0.4);
  will-change: auto;
}

.lower-showcase-redesign .scanner-phone.motion-active {
  will-change: transform;
}

.lower-showcase-redesign .simple-steps {
  margin-top: 34px;
  border-block: 1px solid var(--lower-line-soft);
}

.lower-showcase-redesign .simple-steps li {
  border-radius: 0;
  background: transparent;
}

.lower-showcase-redesign .media-section {
  padding: 130px 0;
}

.lower-showcase-redesign .media-panel {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.84fr) minmax(500px, 1.16fr);
  min-height: 600px;
  padding: 0;
  gap: clamp(70px, 8vw, 130px);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lower-showcase-redesign .media-panel::before {
  inset: -5% -10% -5% 48%;
  border-radius: 0;
  background: linear-gradient(140deg, rgba(194, 138, 255, 0.12), transparent 67%);
  clip-path: polygon(14% 0, 100% 9%, 88% 100%, 0 90%);
  opacity: 1;
}

.lower-showcase-redesign .media-copy {
  max-width: 530px;
  padding: 0;
}

.lower-showcase-redesign .media-copy h2 {
  margin-top: 24px;
  font-size: 54px;
  line-height: 1.04;
}

.lower-showcase-redesign .media-tags {
  border-block: 1px solid var(--lower-line-soft);
}

.lower-showcase-redesign .media-stack {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: 30px 36px 0 rgba(0, 0, 0, 0.28), 48px 60px 90px rgba(0, 0, 0, 0.34);
  transform: perspective(1100px) rotateY(-6deg) rotateX(2deg);
}

.lower-showcase-redesign .media-item {
  min-height: 92px;
  padding: 18px 20px;
  border: 0;
  border-bottom: 1px solid var(--lower-line);
  border-radius: 0;
  background: #101522;
}

.lower-showcase-redesign .media-item:first-child {
  border-radius: 8px 8px 0 0;
}

.lower-showcase-redesign .media-item:last-child {
  border-bottom: 0;
  border-radius: 0 0 8px 8px;
}

.lower-showcase-redesign .playlist-business-section {
  padding: 138px 0;
  background: #090d14;
  border-block: 1px solid var(--lower-line-soft);
}

.lower-showcase-redesign .playlist-business-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.84fr) minmax(540px, 1.16fr);
  gap: clamp(72px, 8vw, 132px);
}

.lower-showcase-redesign .playlist-business-copy h2 {
  margin-top: 24px;
  font-size: 54px;
  line-height: 1.04;
}

.lower-showcase-redesign .playlist-benefits {
  border-block: 1px solid var(--lower-line-soft);
}

.lower-showcase-redesign .playlist-benefits > span {
  border-radius: 0;
  background: transparent;
}

.lower-showcase-redesign .playlist-visual-card {
  border-radius: 10px;
  box-shadow: 34px 42px 0 rgba(0, 0, 0, 0.34), 54px 72px 110px rgba(0, 0, 0, 0.42);
  will-change: auto;
}

.lower-showcase-redesign .playlist-visual-card.motion-active {
  will-change: transform;
}

/* Continuous numbered showcase ------------------------------------------------ */

.lower-showcase-redesign .offline-player-callout,
.lower-showcase-redesign .protection-experience,
.lower-showcase-redesign .scanner-section,
.lower-showcase-redesign .media-section,
.lower-showcase-redesign .playlist-business-section,
.lower-showcase-redesign .commerce-section,
.lower-showcase-redesign .services-section,
.lower-showcase-redesign .ease-section,
.lower-showcase-redesign .trust-section,
.lower-showcase-redesign .faq-section,
.lower-showcase-redesign .download-section {
  position: relative;
  counter-increment: lower-section;
  isolation: isolate;
}

.lower-showcase-redesign .protection-experience::after,
.lower-showcase-redesign .scanner-section::after,
.lower-showcase-redesign .media-section::after,
.lower-showcase-redesign .playlist-business-section::after,
.lower-showcase-redesign .commerce-section::after,
.lower-showcase-redesign .services-section::after,
.lower-showcase-redesign .trust-section::after {
  position: absolute;
  z-index: 0;
  top: clamp(34px, 4.5vw, 68px);
  left: max(24px, calc(50% - 590px));
  content: counter(lower-section, decimal-leading-zero);
  /* mesma conta das historias: 13% nao aparecia */
  color: color-mix(in srgb, var(--section-accent, #45d7ff) 30%, transparent);
  font-family: var(--display);
  font-size: clamp(76px, 8vw, 112px);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.lower-showcase-redesign .protection-experience:not(.ad-experience)::after,
.lower-showcase-redesign .scanner-section::after,
.lower-showcase-redesign .playlist-business-section::after,
.lower-showcase-redesign .trust-section::after {
  right: max(24px, calc(50% - 590px));
  left: auto;
}

.section-kicker-row {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.standalone-section-number {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  margin-inline: 0;
  font-family: var(--display);
  font-size: clamp(66px, 6vw, 88px);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
}

.services-section-number {
  margin-bottom: 28px;
  color: #b486ef;
  text-align: center;
  text-shadow: 0 16px 46px rgba(180, 134, 239, 0.22);
}

.download-section-marker {
  position: relative;
  z-index: 3;
  padding-top: 82px;
  pointer-events: none;
}

.download-section-number {
  margin: 0;
  color: #ef4f92;
  text-align: center;
  text-shadow: 0 16px 48px rgba(239, 79, 146, 0.24);
}

.faq-marker {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: start;
  gap: 14px;
}

.faq-section-number {
  margin: 0;
  color: #45d7ff;
  text-align: left;
  text-shadow: 0 16px 46px rgba(69, 215, 255, 0.22);
}

.faq-marker .eyebrow {
  margin: 0;
}

.inline-section-number {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: -42px;
  color: color-mix(in srgb, var(--section-number-color, #45d7ff) 15%, transparent);
  font-family: var(--display);
  font-size: clamp(76px, 7vw, 108px);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  line-height: 0.8;
  pointer-events: none;
  transform: translateY(-52%);
}

.section-kicker-orange { --section-number-color: #ff6a2a; }
.section-kicker-purple { --section-number-color: #c28aff; }
.section-kicker-cyan { --section-number-color: #45d7ff; }
.section-kicker-pink { --section-number-color: #ff3d7f; }

.offline-player-stage {
  display: grid;
  grid-template-rows: auto auto;
  align-content: center;
  justify-items: center;
  isolation: isolate;
  overflow: visible;
  padding-top: 0;
}

.visual-section-number {
  position: relative;
  z-index: 7;
  top: auto;
  left: auto;
  grid-row: 1;
  justify-self: start;
  width: 100%;
  margin: 0 0 22px;
  color: #45e0a8;
  -webkit-text-fill-color: #45e0a8;
  font-family: var(--display);
  font-size: clamp(78px, 7vw, 98px);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
  opacity: 1;
  text-shadow: 0 14px 42px rgba(69, 224, 168, 0.26);
}

.offline-player-stage .offline-app-player {
  grid-row: 2;
  z-index: 1;
}

.offline-player-stage .offline-badge-large {
  z-index: 4;
}

.lower-showcase-redesign .offline-player-callout,
.lower-showcase-redesign .protection-experience,
.lower-showcase-redesign .scanner-section > .shell,
.lower-showcase-redesign .media-section > .shell,
.lower-showcase-redesign .playlist-business-section > .shell,
.lower-showcase-redesign .commerce-section > .shell,
.lower-showcase-redesign .services-section > .shell,
.lower-showcase-redesign .ease-section > .shell,
.lower-showcase-redesign .trust-section > .shell,
.lower-showcase-redesign .faq-section > .shell,
.lower-showcase-redesign .download-section > .shell {
  z-index: 1;
}

.lower-showcase-redesign .offline-player-callout { --section-accent: #45e0a8; }
.lower-showcase-redesign .protection-experience { --section-accent: #45e0a8; }
.lower-showcase-redesign .ad-experience { --section-accent: #45d7ff; }
.lower-showcase-redesign .scanner-section { --section-accent: #4d99ff; }
.lower-showcase-redesign .media-section { --section-accent: #c28aff; }
.lower-showcase-redesign .playlist-business-section { --section-accent: #45e0a8; }
.lower-showcase-redesign .commerce-section { --section-accent: #ff6a2a; }
.lower-showcase-redesign .services-section { --section-accent: #c28aff; }
.lower-showcase-redesign .ease-section { --section-accent: #ff3d7f; }
.lower-showcase-redesign .trust-section { --section-accent: #45e0a8; }
.lower-showcase-redesign .faq-section { --section-accent: #45d7ff; }
.lower-showcase-redesign .download-section { --section-accent: #ff3d7f; }

/* All blocks share matching edge colors, so the page reads as one composition. */
.lower-showcase-redesign .tools-section,
.lower-showcase-redesign .security-section,
.lower-showcase-redesign .scanner-section,
.lower-showcase-redesign .media-section,
.lower-showcase-redesign .playlist-business-section,
.lower-showcase-redesign .commerce-section,
.lower-showcase-redesign .services-section,
.lower-showcase-redesign .ease-section,
.lower-showcase-redesign .trust-section,
.lower-showcase-redesign .faq-section,
.lower-showcase-redesign .download-section {
  border: 0;
  box-shadow: none;
}

.lower-showcase-redesign .tools-section {
  background: radial-gradient(ellipse 52% 24% at 18% 58%, rgba(255, 61, 127, 0.065), transparent 72%);
}

.lower-showcase-redesign .security-section {
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.012) 50%, transparent) top / 100% 1px no-repeat,
    radial-gradient(ellipse 52% 34% at 78% 48%, rgba(69, 224, 168, 0.07), transparent 72%);
}

.lower-showcase-redesign .scanner-section {
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.012) 50%, transparent) top / 100% 1px no-repeat,
    radial-gradient(ellipse 46% 38% at 18% 52%, rgba(77, 153, 255, 0.085), transparent 72%);
}

.lower-showcase-redesign .media-section {
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.012) 50%, transparent) top / 100% 1px no-repeat,
    radial-gradient(ellipse 44% 38% at 78% 48%, rgba(194, 138, 255, 0.08), transparent 72%);
}

.lower-showcase-redesign .playlist-business-section {
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.012) 50%, transparent) top / 100% 1px no-repeat,
    radial-gradient(ellipse 48% 38% at 20% 50%, rgba(69, 224, 168, 0.08), transparent 72%);
}

.lower-showcase-redesign .commerce-section {
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.012) 50%, transparent) top / 100% 1px no-repeat,
    radial-gradient(ellipse 54% 34% at 50% 46%, rgba(255, 106, 42, 0.085), transparent 72%);
}

.lower-showcase-redesign .services-section {
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.012) 50%, transparent) top / 100% 1px no-repeat,
    radial-gradient(ellipse 52% 34% at 78% 48%, rgba(194, 138, 255, 0.075), transparent 72%);
}

.lower-showcase-redesign .ease-section {
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.012) 50%, transparent) top / 100% 1px no-repeat,
    radial-gradient(ellipse 52% 32% at 22% 48%, rgba(255, 61, 127, 0.065), transparent 72%);
}

.lower-showcase-redesign .trust-section {
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.012) 50%, transparent) top / 100% 1px no-repeat,
    radial-gradient(ellipse 50% 32% at 78% 48%, rgba(69, 224, 168, 0.065), transparent 72%);
}

.lower-showcase-redesign .faq-section {
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.012) 50%, transparent) top / 100% 1px no-repeat,
    radial-gradient(ellipse 48% 36% at 18% 45%, rgba(69, 215, 255, 0.06), transparent 72%);
}

.lower-showcase-redesign .download-section {
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.012) 50%, transparent) top / 100% 1px no-repeat,
    radial-gradient(ellipse 58% 40% at 78% 44%, rgba(255, 61, 127, 0.075), transparent 72%);
}

.lower-showcase-redesign .playlist-business-section,
.lower-showcase-redesign .services-section {
  border-block: 0;
}

.lower-showcase-redesign .commerce-card {
  min-height: 0;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lower-showcase-redesign .commerce-card::before {
  display: none;
}

.lower-showcase-redesign .trust-panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 1080px) {
  .lower-showcase-redesign .tool-story,
  .lower-showcase-redesign .offline-player-callout,
  .lower-showcase-redesign .protection-experience,
  .lower-showcase-redesign .scanner-grid,
  .lower-showcase-redesign .media-panel,
  .lower-showcase-redesign .playlist-business-grid {
    grid-template-columns: 1fr;
  }

  .lower-showcase-redesign .tool-story,
  .lower-showcase-redesign .protection-experience {
    gap: 58px;
  }

  .lower-showcase-redesign .tool-story-copy,
  .lower-showcase-redesign .protection-experience-copy,
  .lower-showcase-redesign .scanner-copy,
  .lower-showcase-redesign .media-copy,
  .lower-showcase-redesign .playlist-business-copy {
    max-width: 680px;
  }

  .lower-showcase-redesign .tool-story-reverse .tool-story-copy,
  .lower-showcase-redesign .tool-story-reverse .tool-story-visual,
  .lower-showcase-redesign .ad-experience .protection-experience-copy,
  .lower-showcase-redesign .ad-experience .protection-device {
    order: initial;
    justify-self: stretch;
  }

  .lower-showcase-redesign .tool-story-visual,
  .lower-showcase-redesign .tool-story-reverse .tool-story-visual,
  .lower-showcase-redesign .protection-device,
  .lower-showcase-redesign .ad-experience .protection-device,
  .lower-showcase-redesign .scanner-phone,
  .lower-showcase-redesign .playlist-visual-card {
    width: min(100%, 760px);
    margin-inline: auto;
    box-shadow: 0 36px 78px rgba(0, 0, 0, 0.36);
  }

  .lower-showcase-redesign .offline-player-callout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
    gap: 54px;
  }

  .lower-showcase-redesign .security-intro {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 760px) {
  .lower-showcase-redesign .tool-stories {
    margin-top: 54px;
  }

  .lower-showcase-redesign .tool-story,
  .lower-showcase-redesign .offline-player-callout,
  .lower-showcase-redesign .protection-experience {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    padding: 76px 0;
    gap: 38px;
  }

  .lower-showcase-redesign .tool-story-copy,
  .lower-showcase-redesign .tool-story-reverse .tool-story-copy,
  .lower-showcase-redesign .offline-player-copy,
  .lower-showcase-redesign .protection-experience-copy,
  .lower-showcase-redesign .ad-experience .protection-experience-copy {
    order: 1;
    justify-self: stretch;
    text-align: left;
  }

  .lower-showcase-redesign .tool-story-visual,
  .lower-showcase-redesign .tool-story-reverse .tool-story-visual,
  .lower-showcase-redesign .offline-player-stage,
  .lower-showcase-redesign .protection-device,
  .lower-showcase-redesign .ad-experience .protection-device {
    order: 2;
  }

  .lower-showcase-redesign .tool-story::before,
  .lower-showcase-redesign .tool-story-reverse::before,
  .lower-showcase-redesign .offline-player-callout::before,
  .lower-showcase-redesign .protection-experience::before,
  .lower-showcase-redesign .ad-experience::before,
  .lower-showcase-redesign .media-panel::before {
    inset: 38% -10% 3%;
    clip-path: polygon(0 8%, 92% 0, 100% 92%, 8% 100%);
    transform: none;
    opacity: 0.5;
  }

  .lower-showcase-redesign .tool-story h3,
  .lower-showcase-redesign .offline-player-copy h3,
  .lower-showcase-redesign .protection-experience-copy h3,
  .lower-showcase-redesign .scanner-copy h2,
  .lower-showcase-redesign .media-copy h2,
  .lower-showcase-redesign .playlist-business-copy h2,
  .lower-showcase-redesign .store-heading h2,
  .lower-showcase-redesign .services-heading h2,
  .lower-showcase-redesign .ease-section h2,
  .lower-showcase-redesign .trust-heading h2,
  .lower-showcase-redesign .faq-heading h2,
  .lower-showcase-redesign .download-copy h2 {
    max-width: 100%;
    font-size: clamp(32px, 9.4vw, 42px);
    line-height: 1.08;
    text-wrap: balance;
  }

  .lower-showcase-redesign .tool-story-copy > p,
  .lower-showcase-redesign .offline-player-copy > p,
  .lower-showcase-redesign .scanner-copy > p,
  .lower-showcase-redesign .media-copy > p,
  .lower-showcase-redesign .playlist-business-copy > p {
    font-size: 15px;
    line-height: 1.7;
  }

  .lower-showcase-redesign .tool-story-points {
    grid-template-columns: 1fr;
  }

  .lower-showcase-redesign .tool-story-points > span {
    grid-template-columns: 42px 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
    padding: 14px 4px;
    column-gap: 12px;
  }

  .lower-showcase-redesign .tool-story-points > span + span {
    border-top: 1px solid rgba(255, 255, 255, 0.055);
    border-left: 0;
  }

  .lower-showcase-redesign .tool-story-points > span > i {
    grid-row: 1 / 3;
    width: 42px;
    height: 42px;
    margin: 0;
  }

  .lower-showcase-redesign .tool-story-visual,
  .lower-showcase-redesign .tool-story-reverse .tool-story-visual {
    --story-base-y: 0deg;
    min-height: clamp(330px, 105vw, 470px);
    border-radius: 8px;
    box-shadow: 0 28px 62px rgba(0, 0, 0, 0.34);
  }

  .lower-showcase-redesign .offline-player-callout {
    border-bottom: 0;
  }

  .lower-showcase-redesign .offline-player-stage,
  .lower-showcase-redesign .scanner-visual {
    min-height: 520px;
  }

  .lower-showcase-redesign .security-section {
    padding: 0;
  }

  .lower-showcase-redesign .security-intro,
  .lower-showcase-redesign .scanner-grid,
  .lower-showcase-redesign .media-panel,
  .lower-showcase-redesign .playlist-business-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .lower-showcase-redesign .security-summary {
    grid-template-columns: 1fr;
  }

  .lower-showcase-redesign .security-summary > div {
    min-height: 0;
    padding: 20px 4px;
  }

  .lower-showcase-redesign .security-summary > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.055);
    border-left: 0;
  }

  .lower-showcase-redesign .protection-experiences {
    margin-top: 0;
  }

  .lower-showcase-redesign .scanner-section,
  .lower-showcase-redesign .media-section,
  .lower-showcase-redesign .playlist-business-section,
  .lower-showcase-redesign .commerce-section,
  .lower-showcase-redesign .services-section,
  .lower-showcase-redesign .ease-section,
  .lower-showcase-redesign .trust-section,
  .lower-showcase-redesign .faq-section,
  .lower-showcase-redesign .download-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .lower-showcase-redesign .media-panel {
    min-height: 0;
    padding: 0;
  }

  .lower-showcase-redesign .media-stack {
    width: 100%;
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.3);
    transform: none;
  }

  .lower-showcase-redesign .playlist-float-tip {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    min-width: 0;
    margin-top: 14px;
    transform: none;
  }

  .lower-showcase-redesign .commerce-card-heading,
  .lower-showcase-redesign .services-showcase-head {
    align-items: flex-start;
  }

  .lower-showcase-redesign .trust-heading {
    display: grid;
  }

  .lower-showcase-redesign .trust-grid {
    grid-template-columns: 1fr;
  }

  .lower-showcase-redesign .faq-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .lower-showcase-redesign .faq-heading {
    position: static;
  }

  .lower-showcase-redesign .protection-experience::after,
  .lower-showcase-redesign .scanner-section::after,
  .lower-showcase-redesign .media-section::after,
  .lower-showcase-redesign .commerce-section::after,
  .lower-showcase-redesign .services-section::after,
  .lower-showcase-redesign .playlist-business-section::after,
  .lower-showcase-redesign .trust-section::after {
    top: 22px;
    right: auto;
    left: max(16px, calc(50% - 590px));
    font-size: 64px;
  }

  .lower-showcase-redesign .tool-story::after {
    top: 20px;
    right: auto;
    left: 0;
    font-size: 64px;
  }
}

@media (max-width: 420px) {
  .lower-showcase-redesign .tool-story,
  .lower-showcase-redesign .offline-player-callout,
  .lower-showcase-redesign .protection-experience {
    padding-block: 68px;
    gap: 30px;
  }

  .lower-showcase-redesign .tool-story-visual,
  .lower-showcase-redesign .tool-story-reverse .tool-story-visual {
    min-height: 310px;
  }

  .lower-showcase-redesign .offline-player-stage,
  .lower-showcase-redesign .scanner-visual {
    min-height: 460px;
  }

  .lower-showcase-redesign .scanner-section,
  .lower-showcase-redesign .media-section,
  .lower-showcase-redesign .playlist-business-section,
  .lower-showcase-redesign .commerce-section,
  .lower-showcase-redesign .services-section,
  .lower-showcase-redesign .ease-section,
  .lower-showcase-redesign .trust-section,
  .lower-showcase-redesign .faq-section,
  .lower-showcase-redesign .download-section {
    padding-block: 76px;
  }

  .lower-showcase-redesign .commerce-card-heading,
  .lower-showcase-redesign .services-showcase-head {
    display: grid;
    justify-items: start;
    text-align: left;
  }

  .lower-showcase-redesign .download-panel {
    padding-inline: 14px;
  }
}

/* Playlist fiel aos estados reais ------------------------------------------ */

.lower-showcase-redesign .playlist-real-preview {
  width: min(610px, 100%);
  min-height: 0;
  padding: 18px;
  overflow: hidden;
  border-color: rgba(83, 226, 172, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(18, 33, 29, 0.98), rgba(8, 14, 17, 0.99)),
    #0a1113;
  box-shadow: 28px 34px 0 rgba(0, 0, 0, 0.28), 42px 58px 92px rgba(0, 0, 0, 0.4);
}

.lower-showcase-redesign .playlist-real-preview::after {
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.playlist-preview-head {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
}

.playlist-preview-head > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  gap: 7px;
  color: #bff8df;
  border: 1px solid rgba(83, 226, 172, 0.2);
  border-radius: 999px;
  background: rgba(83, 226, 172, 0.075);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.playlist-preview-head > strong {
  max-width: 19ch;
  margin-top: 12px;
  color: #f7faf9;
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.08;
}

.playlist-preview-head > small {
  margin-top: 7px;
  color: #91a09a;
  font-size: 11px;
  line-height: 1.45;
}

.playlist-url-demo {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 20px minmax(0, 1fr) 20px;
  min-height: 48px;
  margin-top: 18px;
  padding: 0 13px;
  gap: 9px;
  color: #e8eeeb;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 11px;
}

.playlist-url-demo input {
  width: 100%;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  color: #e8eeeb;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.playlist-url-demo:focus-within {
  border-color: rgba(83, 226, 172, 0.45);
  box-shadow: 0 0 0 3px rgba(83, 226, 172, 0.08);
}

.playlist-url-demo > i:first-child { color: #89958f; }
.playlist-url-demo > i:last-child { color: var(--green); }
.playlist-real-preview[data-state="empty"] .playlist-url-demo > i:last-child { color: #6d7773; }

.playlist-url-feedback {
  display: flex;
  align-items: center;
  min-height: 24px;
  margin: 6px 2px 0;
  gap: 7px;
  color: #ffad80;
  font-size: 9px;
  line-height: 1.35;
}

.playlist-url-feedback[hidden] { display: none; }
.playlist-url-feedback i { flex: 0 0 auto; }
.playlist-real-preview[data-state="error"] .playlist-url-demo { border-color: rgba(255, 122, 128, 0.48); }
.playlist-real-preview[data-state="error"] .playlist-url-demo > i:last-child { color: #ff7a80; }

.playlist-url-actions {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 9px;
  gap: 8px;
}

.playlist-url-actions button,
.playlist-download-all,
.playlist-preview-track > button {
  min-width: 0;
  border: 0;
  border-radius: 7px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 220ms ease, filter 220ms ease, opacity 220ms ease;
}

.playlist-url-actions button {
  min-height: 42px;
  color: #dfe8e3;
  background: rgba(255, 255, 255, 0.075);
  font-size: 10px;
}

.playlist-url-actions button i { margin-right: 7px; }
.playlist-url-actions button:hover:not(:disabled),
.playlist-download-all:hover:not(:disabled),
.playlist-preview-track > button:hover:not(:disabled) { filter: brightness(1.08); transform: translateY(-2px); }
.playlist-url-actions button:disabled { opacity: 0.36; cursor: default; }

.playlist-analysis-card {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 42px minmax(0, 1fr);
  min-height: 66px;
  margin-top: 12px;
  padding: 11px 13px;
  gap: 11px;
  border: 1px solid rgba(83, 226, 172, 0.25);
  border-radius: 7px;
  background: rgba(83, 226, 172, 0.055);
}

.playlist-analysis-card > span {
  display: grid;
  width: 42px;
  height: 42px;
  color: #d7ffeb;
  border-radius: 7px;
  background: rgba(83, 226, 172, 0.14);
  place-items: center;
}

.playlist-analysis-card > div { display: grid; min-width: 0; }
.playlist-analysis-card strong { overflow-wrap: anywhere; color: #f5faf7; font-size: 12px; line-height: 1.35; }
.playlist-analysis-card small { display: flex; flex-wrap: wrap; margin-top: 6px; gap: 5px; color: #8da097; font-size: 8px; }
.playlist-analysis-card small b { padding: 4px 7px; border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 999px; background: rgba(255, 255, 255, 0.04); color: #b9c6c0; font-weight: 800; }

.playlist-download-all {
  position: relative;
  z-index: 2;
  display: block;
  width: min(350px, 100%);
  min-height: 46px;
  margin: 14px auto 0;
  color: #062217;
  background: linear-gradient(100deg, #54e1aa, #3bcf92);
  box-shadow: 0 12px 26px rgba(69, 224, 168, 0.14);
  font-size: 11px;
}

.playlist-download-all i { margin-right: 8px; }
.playlist-download-all:disabled { opacity: 0.5; cursor: default; }

.playlist-preview-list {
  position: relative;
  z-index: 2;
  display: grid;
  max-height: 316px;
  margin-top: 13px;
  gap: 6px;
  overflow: auto;
  scrollbar-color: rgba(83, 226, 172, 0.35) transparent;
  scrollbar-width: thin;
}

.playlist-preview-track {
  display: grid;
  align-items: center;
  grid-template-columns: 25px 48px minmax(0, 1fr) auto;
  grid-template-areas:
    "number cover copy action"
    "progress progress progress state";
  min-height: 68px;
  padding: 7px;
  gap: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 260ms ease, background 260ms ease;
}

.playlist-preview-track .track-number { grid-area: number; color: #7ca08f; font-size: 9px; }
.playlist-preview-track .track-cover { grid-area: cover; width: 48px; height: 48px; border-radius: 6px; }
.playlist-preview-track .track-copy { display: grid; grid-area: copy; min-width: 0; }
.playlist-preview-track .track-copy em { justify-self: start; padding: 3px 6px; color: #b5f4d8; border-radius: 999px; background: rgba(83, 226, 172, 0.1); font-size: 7px; font-style: normal; font-weight: 900; }
.playlist-preview-track .track-copy strong { margin-top: 5px; overflow: hidden; color: #f0f5f2; font-size: 10px; line-height: 1.3; text-overflow: ellipsis; white-space: nowrap; }
.playlist-preview-track .track-copy small { margin-top: 3px; overflow: hidden; color: #7f8c86; font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.playlist-preview-track > button { grid-area: action; min-width: 80px; min-height: 34px; padding: 0 9px; color: #092119; background: #4bd89f; font-size: 8px; }
.playlist-preview-track > button i { margin-right: 5px; }
.playlist-preview-track > button:disabled { opacity: 0.42; cursor: default; }
.playlist-preview-track .track-state { display: none; grid-area: state; justify-self: end; color: #b9c6c0; font-size: 8px; }
.playlist-preview-track .track-progress { display: none; grid-area: progress; height: 4px; overflow: hidden; border-radius: 999px; background: rgba(255, 255, 255, 0.08); }
.playlist-preview-track .track-progress i { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #55e2aa, #49cfe7); transition: width 260ms ease; }
.playlist-preview-track[data-status="downloading"] { border-color: rgba(73, 207, 231, 0.36); background: rgba(73, 207, 231, 0.065); }
.playlist-preview-track[data-status="downloading"] .track-state,
.playlist-preview-track[data-status="downloading"] .track-progress,
.playlist-preview-track[data-status="done"] .track-state,
.playlist-preview-track[data-status="done"] .track-progress { display: block; }
.playlist-preview-track[data-status="done"] { border-color: rgba(83, 226, 172, 0.25); background: rgba(83, 226, 172, 0.05); }
.playlist-preview-track[data-status="done"] .track-state { color: #9ef0ca; }

.playlist-real-preview[data-state="empty"] .playlist-analysis-card,
.playlist-real-preview[data-state="empty"] .playlist-download-all,
.playlist-real-preview[data-state="empty"] .playlist-preview-list,
.playlist-real-preview[data-state="error"] .playlist-analysis-card,
.playlist-real-preview[data-state="error"] .playlist-download-all,
.playlist-real-preview[data-state="error"] .playlist-preview-list { opacity: 0.35; pointer-events: none; }

/* Loja real ---------------------------------------------------------------- */

.lower-showcase-redesign .store-section {
  padding: 168px 0 128px;
}

.lower-showcase-redesign .store-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.72fr);
  max-width: none;
  margin: 0 0 54px;
  gap: clamp(48px, 7vw, 110px);
  text-align: left;
}

.store-heading-primary,
.store-heading-secondary { display: grid; min-width: 0; }
.lower-showcase-redesign .store-heading .eyebrow { justify-self: start; }

.lower-showcase-redesign .store-heading h2 {
  max-width: 12ch;
  margin: 22px 0 0;
  font-size: 55px;
  line-height: 1.04;
}

.lower-showcase-redesign .store-heading-secondary > p {
  max-width: 46ch;
  margin: 0;
  color: var(--lower-muted);
  font-size: 16px;
  line-height: 1.7;
}

.store-primary-link {
  display: grid;
  align-items: center;
  grid-template-columns: 38px 1fr 20px;
  width: min(320px, 100%);
  min-height: 54px;
  margin-top: 22px;
  padding: 7px 12px;
  gap: 10px;
  color: #fff;
  border-radius: 7px;
  background: linear-gradient(110deg, #ff7a32, #f04b1f);
  box-shadow: 0 16px 34px rgba(255, 106, 42, 0.2);
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 240ms ease, filter 240ms ease;
}

.store-primary-link:hover { filter: brightness(1.06); transform: translateY(-3px); }
.store-primary-link > i:first-child { display: grid; width: 38px; height: 38px; border-radius: 6px; background: rgba(255, 255, 255, 0.34); place-items: center; }
.store-primary-link > i:last-child { justify-self: end; }

.lower-showcase-redesign .market-showcase { padding: 0; }

.lower-showcase-redesign .storefront-header {
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lower-showcase-redesign .market-showcase .commerce-icon {
  width: 54px;
  height: 54px;
  border-radius: 7px;
  font-size: 20px;
}

.lower-showcase-redesign .market-showcase h3 { font-size: 29px; }

.lower-showcase-redesign .storefront-badge {
  min-height: 42px;
  border-radius: 7px;
  text-decoration: none;
  transition: transform 220ms ease, filter 220ms ease;
}

.lower-showcase-redesign .storefront-badge:hover { filter: brightness(1.05); transform: translateY(-2px); }
.lower-showcase-redesign .storefront-badge i:last-child { margin-left: 3px; }

.lower-showcase-redesign .market-showcase > p {
  max-width: 62ch;
  margin-top: 20px;
  font-size: 14px;
}

.lower-showcase-redesign .product-showcase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
  gap: 16px;
}

.lower-showcase-redesign .shop-product {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(20, 22, 30, 0.98), rgba(9, 11, 17, 0.99));
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.22);
}

.lower-showcase-redesign .shop-product-image {
  height: auto;
  aspect-ratio: 16 / 10;
}

.lower-showcase-redesign .shop-product-image > span { top: 11px; left: 11px; border-radius: 999px; }
.lower-showcase-redesign .shop-product-copy { align-content: start; padding: 18px; }
.lower-showcase-redesign .shop-product-copy h4 { font-size: 20px; }
.lower-showcase-redesign .shop-product-copy p { min-height: 0; font-size: 12px; }

.shop-product-link {
  display: grid;
  align-items: center;
  grid-template-columns: 18px 1fr 16px;
  min-height: 42px;
  margin-top: 17px;
  padding-top: 13px;
  gap: 8px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
}

.shop-product-link i:first-child { color: #ff7a32; }
.shop-product-link i:last-child { justify-self: end; transition: transform 220ms ease; }
.shop-product-link:hover i:last-child { transform: translateX(4px); }

.lower-showcase-redesign .store-category-row {
  margin-top: 26px;
  gap: 0;
  border-block: 1px solid rgba(255, 255, 255, 0.07);
}

.lower-showcase-redesign .store-category-row > span {
  min-height: 96px;
  padding: 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.lower-showcase-redesign .store-category-row > span + span { border-left: 1px solid rgba(255, 255, 255, 0.07); }
.lower-showcase-redesign .store-category-row > span > i { border-radius: 7px; }

.lower-showcase-redesign .commerce-foot {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 18px;
  min-height: 66px;
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 7px;
  color: #edf0ee;
  text-decoration: none;
  transition: border-color 220ms ease, background 220ms ease;
}

.lower-showcase-redesign .commerce-foot:hover { border-color: rgba(255, 106, 42, 0.3); background: rgba(255, 106, 42, 0.085); }
.lower-showcase-redesign .commerce-foot > i:first-child { display: grid; width: 34px; height: 34px; border-radius: 6px; background: rgba(255, 106, 42, 0.13); place-items: center; }
.lower-showcase-redesign .commerce-foot > i:last-child { justify-self: end; color: #ff915c; }

/* Serviços enxutos ---------------------------------------------------------- */

.lower-showcase-redesign .services-heading {
  max-width: 680px;
  margin-bottom: 48px;
}

.lower-showcase-redesign .services-heading h2 {
  max-width: none;
  margin-top: 18px;
  color: #fff;
  font-size: clamp(68px, 8vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.lower-showcase-redesign .services-heading h2 span {
  color: #c9b5ee;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: currentColor;
}

.lower-showcase-redesign .services-heading > p {
  max-width: 38ch;
  margin: 16px auto 0;
  color: var(--lower-muted);
  font-size: 15px;
  line-height: 1.6;
}

.lower-showcase-redesign .services-showcase {
  padding: 0;
}

.lower-showcase-redesign .services-showcase-head {
  padding-bottom: 21px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lower-showcase-redesign .services-card .commerce-icon {
  width: 64px;
  height: 64px;
  border-radius: 7px;
  color: #d6c5f4;
  font-size: 26px;
}

.lower-showcase-redesign .services-card .commerce-card-heading small { color: #8f829f; }
.lower-showcase-redesign .services-card h3 { font-size: 29px; }

.lower-showcase-redesign .services-card .coming-pill {
  min-height: 38px;
  padding: 8px 11px;
  color: #c8c1d2;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 10px;
}

.lower-showcase-redesign .service-showcase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
  gap: 16px;
}

.lower-showcase-redesign .service-showcase-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #0e1119;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.23);
}

.lower-showcase-redesign .service-showcase-card:hover {
  border-color: rgba(201, 181, 238, 0.25);
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.31);
}

.lower-showcase-redesign .service-showcase-image {
  height: auto;
  aspect-ratio: 4 / 3;
}

.lower-showcase-redesign .service-showcase-image::after { height: 82px; }
.lower-showcase-redesign .service-showcase-image > span {
  top: 11px;
  left: 11px;
  min-height: 30px;
  padding: 6px 9px;
  color: #e9e5ef;
  border-color: rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(10, 12, 18, 0.82);
  font-size: 9px;
}

.lower-showcase-redesign .service-showcase-image > span i { color: #c9b5ee; }
.lower-showcase-redesign .service-showcase-copy { align-content: start; padding: 18px; }
.lower-showcase-redesign .service-showcase-copy h4 { margin: 0; font-size: 21px; letter-spacing: 0; }
.lower-showcase-redesign .service-showcase-copy p { min-height: 0; margin-top: 9px; color: #9da5b2; font-size: 12px; line-height: 1.55; }
.lower-showcase-redesign .service-showcase-copy > div { margin-top: 14px; }
.lower-showcase-redesign .service-showcase-copy > div span {
  min-height: 32px;
  padding: 6px 8px;
  color: #c7ccd4;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 9px;
}
.lower-showcase-redesign .service-showcase-copy > div span i { color: #c9b5ee; }

/* Mobile: eixo central e densidade menor ----------------------------------- */

@media (max-width: 1080px) {
  .lower-showcase-redesign .store-heading {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.76fr);
    gap: 42px;
  }

  .lower-showcase-redesign .store-heading h2 { font-size: 47px; }
  .lower-showcase-redesign .product-showcase-grid,
  .lower-showcase-redesign .service-showcase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lower-showcase-redesign .shop-product:last-child,
  .lower-showcase-redesign .service-showcase-card:last-child { grid-column: 1 / -1; width: min(560px, 100%); justify-self: center; }
}

@media (max-width: 760px) {
  .lower-showcase-redesign .shell { width: min(100% - 28px, 1180px); }

  .lower-showcase-redesign .tool-story-copy,
  .lower-showcase-redesign .tool-story-reverse .tool-story-copy,
  .lower-showcase-redesign .offline-player-copy,
  .lower-showcase-redesign .protection-experience-copy,
  .lower-showcase-redesign .ad-experience .protection-experience-copy,
  .lower-showcase-redesign .scanner-copy,
  .lower-showcase-redesign .media-copy,
  .lower-showcase-redesign .playlist-business-copy,
  .lower-showcase-redesign .section-heading,
  .lower-showcase-redesign .trust-heading,
  .lower-showcase-redesign .faq-heading,
  .lower-showcase-redesign .download-copy {
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
    text-align: center;
  }

  .lower-showcase-redesign #conteudo .eyebrow,
  .lower-showcase-redesign .tool-story-label,
  .lower-showcase-redesign .protection-kicker,
  .lower-showcase-redesign .media-tags {
    justify-content: center;
    justify-self: center;
    margin-inline: auto;
  }

  .lower-showcase-redesign .tool-story h3,
  .lower-showcase-redesign .offline-player-copy h3,
  .lower-showcase-redesign .protection-experience-copy h3,
  .lower-showcase-redesign .scanner-copy h2,
  .lower-showcase-redesign .media-copy h2,
  .lower-showcase-redesign .playlist-business-copy h2,
  .lower-showcase-redesign .store-heading h2,
  .lower-showcase-redesign .services-heading h2,
  .lower-showcase-redesign .ease-section h2,
  .lower-showcase-redesign .trust-heading h2,
  .lower-showcase-redesign .faq-heading h2,
  .lower-showcase-redesign .download-copy h2 {
    max-width: 14ch;
    margin-inline: auto;
    font-size: 36px;
    line-height: 1.08;
  }

  .lower-showcase-redesign .tool-story-copy > p,
  .lower-showcase-redesign .offline-player-copy > p,
  .lower-showcase-redesign .protection-experience-copy > p,
  .lower-showcase-redesign .scanner-copy > p,
  .lower-showcase-redesign .media-copy > p,
  .lower-showcase-redesign .playlist-business-copy > p,
  .lower-showcase-redesign .section-heading > p,
  .lower-showcase-redesign .faq-heading > p,
  .lower-showcase-redesign .download-copy > p {
    max-width: 42ch;
    margin-inline: auto;
    font-size: 14px;
    line-height: 1.65;
  }

  .lower-showcase-redesign .tool-story-points > span {
    justify-items: center;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding: 17px 8px;
    text-align: center;
  }

  .lower-showcase-redesign .tool-story-points > span > i { grid-row: auto; }
  .lower-showcase-redesign .offline-player-points,
  .lower-showcase-redesign .simple-steps,
  .lower-showcase-redesign .playlist-benefits { margin-inline: auto; }

  .lower-showcase-redesign .protection-experience::after,
  .lower-showcase-redesign .scanner-section::after,
  .lower-showcase-redesign .media-section::after,
  .lower-showcase-redesign .commerce-section::after,
  .lower-showcase-redesign .services-section::after,
  .lower-showcase-redesign .playlist-business-section::after,
  .lower-showcase-redesign .trust-section::after,
  .lower-showcase-redesign .tool-story::after {
    right: auto;
    left: 50%;
    /* No celular estava em 10%: o numero praticamente sumia. Aqui ele fica
       no mesmo peso do computador. */
    color: color-mix(in srgb, var(--section-accent, var(--story-color, #45d7ff)) 30%, transparent);
    font-size: 58px;
    transform: translateX(-50%);
  }

  .lower-showcase-redesign .tool-story-visual,
  .lower-showcase-redesign .tool-story-reverse .tool-story-visual,
  .lower-showcase-redesign .protection-device,
  .lower-showcase-redesign .ad-experience .protection-device,
  .lower-showcase-redesign .scanner-phone,
  .lower-showcase-redesign .playlist-visual-card {
    --story-base-y: 0deg;
    --card-base-x: 0deg;
    --card-base-y: 0deg;
    --card-base-z: 0deg;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
    transform: none;
  }

  .lower-showcase-redesign .playlist-real-preview { padding: 14px; }
  .playlist-preview-head > strong { font-size: 23px; }

  .lower-showcase-redesign .store-section { padding: 126px 0 78px; }

  .lower-showcase-redesign .store-heading {
    justify-items: center;
    grid-template-columns: 1fr;
    margin-bottom: 38px;
    gap: 24px;
    text-align: center;
  }

  .store-heading-primary,
  .store-heading-secondary { justify-items: center; }
  .lower-showcase-redesign .store-heading .eyebrow { justify-self: center; }
  .lower-showcase-redesign .store-heading-secondary > p { max-width: 40ch; font-size: 14px; }
  .store-primary-link { margin-inline: auto; }

  .lower-showcase-redesign .storefront-header,
  .lower-showcase-redesign .services-showcase-head {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .lower-showcase-redesign .commerce-card-heading {
    justify-content: center;
    text-align: center;
  }

  .lower-showcase-redesign .market-showcase > p { margin-inline: auto; text-align: center; }
  .lower-showcase-redesign .product-showcase-grid,
  .lower-showcase-redesign .service-showcase-grid { grid-template-columns: minmax(0, 1fr); }
  .lower-showcase-redesign .shop-product:last-child,
  .lower-showcase-redesign .service-showcase-card:last-child { grid-column: auto; width: 100%; }
  .lower-showcase-redesign .shop-product-copy,
  .lower-showcase-redesign .service-showcase-copy { justify-items: center; text-align: center; }
  .lower-showcase-redesign .shop-product-link { width: 100%; text-align: left; }
  .lower-showcase-redesign .service-showcase-copy > div { justify-content: center; }

  .lower-showcase-redesign .store-category-row {
    grid-template-columns: 1fr;
    border-block: 1px solid rgba(255, 255, 255, 0.07);
  }

  .lower-showcase-redesign .store-category-row > span {
    justify-items: center;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding: 16px 8px;
    text-align: center;
  }

  .lower-showcase-redesign .store-category-row > span + span { border-top: 1px solid rgba(255, 255, 255, 0.07); border-left: 0; }
  .lower-showcase-redesign .store-category-row > span > i { grid-row: auto; }

  .lower-showcase-redesign .commerce-foot { text-align: left; }
  .lower-showcase-redesign .services-heading { margin-bottom: 36px; }
  .lower-showcase-redesign .services-heading h2 span { color: #d8c9f0; }
}

@media (max-width: 420px) {
  .lower-showcase-redesign .shell { width: min(100% - 22px, 1180px); }

  .lower-showcase-redesign .tool-story h3,
  .lower-showcase-redesign .offline-player-copy h3,
  .lower-showcase-redesign .protection-experience-copy h3,
  .lower-showcase-redesign .scanner-copy h2,
  .lower-showcase-redesign .media-copy h2,
  .lower-showcase-redesign .playlist-business-copy h2,
  .lower-showcase-redesign .store-heading h2,
  .lower-showcase-redesign .services-heading h2,
  .lower-showcase-redesign .ease-section h2,
  .lower-showcase-redesign .trust-heading h2,
  .lower-showcase-redesign .faq-heading h2,
  .lower-showcase-redesign .download-copy h2 { font-size: 32px; }

  .playlist-preview-head > strong { font-size: 20px; }
  .playlist-preview-head > small { font-size: 10px; }
  .playlist-url-actions { grid-template-columns: 1fr; }
  .playlist-analysis-card { grid-template-columns: 36px minmax(0, 1fr); }
  .playlist-analysis-card > span { width: 36px; height: 36px; }

  .playlist-preview-track {
    grid-template-columns: 26px 48px minmax(0, 1fr);
    grid-template-areas:
      "number cover copy"
      "action action state"
      "progress progress progress";
  }

  .playlist-preview-track .track-cover { width: 48px; height: 48px; }
  .playlist-preview-track > button { justify-self: start; width: 104px; }
  .playlist-preview-track .track-state { align-self: center; }

  .lower-showcase-redesign .store-section { padding: 116px 0 68px; }
  .lower-showcase-redesign .market-showcase h3,
  .lower-showcase-redesign .services-card h3 { font-size: 23px; }
  .lower-showcase-redesign .commerce-card-heading { display: grid; justify-items: center; }
  .lower-showcase-redesign .commerce-card-heading > div { width: 100%; min-width: 0; }
  .lower-showcase-redesign .shop-product-image,
  .lower-showcase-redesign .service-showcase-image { aspect-ratio: 16 / 11; }
}

@media (prefers-reduced-motion: reduce) {
  .playlist-preview-track .track-progress i,
  .store-primary-link,
  .storefront-badge,
  .shop-product-link i,
  .service-showcase-card { transition: none; }
}

/* Reprodutor interativo ---------------------------------------------------- */

.lower-showcase-redesign .offline-app-player {
  width: min(370px, 100%);
  min-height: 430px;
  border-radius: 22px;
}

.lower-showcase-redesign .offline-track {
  margin-top: 17px;
}

.offline-wave-shell {
  --player-progress: 35.135%;
  position: relative;
  width: 100%;
  height: 46px;
  margin-top: 12px;
  overflow: visible;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(69, 224, 168, 0.025), rgba(69, 215, 255, 0.015));
  isolation: isolate;
}

.offline-waveform {
  position: absolute;
  inset: 5px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  overflow: hidden;
  pointer-events: none;
}

.offline-waveform i {
  width: 3px;
  height: var(--bar-height);
  min-height: 4px;
  flex: 1 1 3px;
  border-radius: 999px;
  transform-origin: center;
}

.offline-wave-base i {
  background: rgba(219, 233, 230, 0.15);
}

.offline-wave-played {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--player-progress)) 0 0);
  will-change: clip-path;
}

.offline-wave-played i {
  background: linear-gradient(180deg, #9ffff0, #45e0a8 54%, #45d7ff);
  box-shadow: 0 0 8px rgba(69, 224, 168, 0.26);
  animation: player-wave 900ms ease-in-out var(--bar-delay) infinite alternate;
}

.offline-wave-shell input[type="range"] {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 46px;
  margin: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
}

.offline-wave-shell input[type="range"]::-webkit-slider-runnable-track {
  height: 46px;
  background: transparent;
}

.offline-wave-shell input[type="range"]::-webkit-slider-thumb {
  width: 15px;
  height: 15px;
  margin-top: 15px;
  border: 3px solid #dffcf3;
  border-radius: 50%;
  background: #45e0a8;
  box-shadow: 0 0 0 5px rgba(69, 224, 168, 0.13), 0 4px 12px rgba(0, 0, 0, 0.36);
  appearance: none;
  -webkit-appearance: none;
}

.offline-wave-shell input[type="range"]::-moz-range-track {
  height: 46px;
  background: transparent;
}

.offline-wave-shell input[type="range"]::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: 3px solid #dffcf3;
  border-radius: 50%;
  background: #45e0a8;
  box-shadow: 0 0 0 5px rgba(69, 224, 168, 0.13), 0 4px 12px rgba(0, 0, 0, 0.36);
}

.offline-wave-shell:has(input:focus-visible) {
  outline: 2px solid #75f2c3;
  outline-offset: 4px;
}

.offline-track > .offline-time {
  display: flex;
  justify-content: space-between;
  margin-top: 2px;
  color: #7e908c;
}

.offline-track > .offline-time small {
  font-size: 9px;
  font-variant-numeric: tabular-nums;
}

.offline-controls button {
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  color: #b8c5c1;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  place-items: center;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.offline-controls button:hover {
  color: #edfff8;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.offline-controls button:focus-visible {
  outline: 2px solid #75f2c3;
  outline-offset: 3px;
}

.offline-controls .offline-play-toggle {
  width: 58px;
  height: 58px;
  color: #07110d;
  background: linear-gradient(145deg, #73f7c0, #25bf83);
  box-shadow: 0 13px 27px rgba(69, 224, 168, 0.22);
}

.offline-controls .offline-play-toggle:hover {
  color: #07110d;
  background: linear-gradient(145deg, #8affce, #35cf91);
}

.offline-app-player.is-paused .offline-wave-played i,
.offline-app-player.is-paused .offline-equalizer i {
  animation-play-state: paused;
}

.offline-app-player.is-paused .offline-album > img {
  filter: saturate(0.82) brightness(0.86);
}

@keyframes player-wave {
  from { transform: scaleY(0.66); opacity: 0.72; }
  to { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 760px) {
  .lower-showcase-redesign .offline-player-stage { min-height: 500px; }
  .lower-showcase-redesign .offline-app-player { width: min(350px, 100%); padding: 20px; transform: none; }
  .lower-showcase-redesign .offline-badge-large { right: 0; bottom: -10px; min-width: min(270px, 90%); }
  .offline-waveform { gap: 1px; }
  .offline-waveform i { min-width: 2px; }
}

@media (max-width: 420px) {
  .lower-showcase-redesign .offline-player-stage { min-height: 455px; }
  .lower-showcase-redesign .offline-app-player { min-height: 400px; padding: 16px; }
  .lower-showcase-redesign .offline-album { width: 150px; height: 150px; }
  .lower-showcase-redesign .offline-badge-large { position: relative; right: auto; bottom: auto; width: min(310px, 94%); min-width: 0; margin: -22px auto 0; }
  .offline-waveform i { min-width: 1px; }
}

@media (prefers-reduced-motion: reduce) {
  .offline-wave-played i { animation: none; }
  .offline-controls button { transition: none; }
}

/* Acabamento final: loja, servicos, fluxo e FAQ ---------------------------- */

.lower-showcase-redesign .market-showcase,
.lower-showcase-redesign .services-showcase {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.lower-showcase-redesign .shop-product-image-real {
  display: grid;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(235, 238, 242, 0.96));
  place-items: center;
}

.lower-showcase-redesign .shop-product-image-real::after {
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, rgba(7, 10, 16, 0.18));
  content: "";
  pointer-events: none;
}

.lower-showcase-redesign .shop-product-image-real img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 15px rgba(21, 25, 31, 0.15));
  transition: transform 320ms cubic-bezier(.2, .8, .2, 1);
}

.lower-showcase-redesign .shop-product:hover .shop-product-image-real img {
  transform: translateY(-4px) scale(1.025);
}

.lower-showcase-redesign .shop-product-image-real > span {
  z-index: 2;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(240, 75, 31, 0.92);
  backdrop-filter: blur(8px);
}

.lower-showcase-redesign .shop-product-price {
  display: flex;
  align-items: baseline;
  margin: 12px 0 0;
  gap: 6px;
  color: #ff7a32;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.lower-showcase-redesign .shop-product-price small {
  color: #9299a6;
  font-size: 10px;
  font-weight: 800;
}

.lower-showcase-redesign .services-section {
  padding: 96px 0 112px;
  overflow: visible;
  background:
    radial-gradient(ellipse 48% 38% at 50% 46%, rgba(194, 138, 255, 0.065), transparent 74%);
}

/* servicos voltou a ter numero (14); o download continua sem */
.lower-showcase-redesign .download-section::after {
  display: none;
  content: none;
}

.lower-showcase-redesign .download-section {
  display: block;
  padding: 28px 0 70px;
  overflow: visible;
}

.lower-showcase-redesign .download-section > .shell {
  position: relative;
  z-index: 1;
}

.lower-showcase-redesign .services-showcase-head {
  margin-inline: auto;
}

.lower-showcase-redesign .service-showcase-grid {
  align-items: stretch;
  gap: 20px;
}

.lower-showcase-redesign .service-showcase-card {
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(160deg, rgba(18, 21, 31, 0.99), rgba(8, 11, 17, 0.99));
  transition: transform 260ms cubic-bezier(.2, .8, .2, 1), border-color 260ms ease, box-shadow 260ms ease;
}

.lower-showcase-redesign .service-showcase-card:hover {
  border-color: rgba(202, 181, 238, 0.42);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.34), 0 0 34px rgba(194, 138, 255, 0.07);
  transform: translateY(-6px);
}

.lower-showcase-redesign .service-showcase-image {
  position: relative;
  min-height: 278px;
  isolation: isolate;
}

.lower-showcase-redesign .service-showcase-image::after {
  z-index: 1;
  height: 58%;
  background: linear-gradient(180deg, transparent, rgba(8, 11, 17, 0.94));
}

.lower-showcase-redesign .service-showcase-image img {
  transition: filter 300ms ease, transform 420ms cubic-bezier(.2, .8, .2, 1);
}

.lower-showcase-redesign .service-showcase-card:hover .service-showcase-image img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.035);
}

.lower-showcase-redesign .service-showcase-image > span {
  z-index: 4;
  min-height: 34px;
  padding: 7px 11px;
  font-size: 10px;
}

.service-card-icon {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 16px;
  display: grid;
  width: 82px;
  height: 82px;
  color: #f5eeff;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 8px;
  background: rgba(130, 80, 198, 0.68);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  font-size: 34px;
  place-items: center;
}

.repair-service-card .service-card-icon {
  color: #dffff4;
  background: rgba(19, 139, 109, 0.7);
}

.service-code-visual {
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(16, 35, 55, 0.98), rgba(19, 18, 43, 0.98));
}

.service-code-visual::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(79, 205, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 205, 255, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  content: "";
  opacity: 0.45;
}

.service-browser-mock {
  position: absolute;
  z-index: 2;
  inset: 56px 44px 28px 28px;
  display: grid;
  align-content: center;
  padding: 38px 24px 24px;
  overflow: hidden;
  border: 1px solid rgba(115, 224, 255, 0.22);
  border-radius: 8px;
  background: rgba(7, 12, 23, 0.85);
  box-shadow: 18px 20px 0 rgba(4, 7, 14, 0.32);
}

.service-browser-bar {
  position: absolute;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  height: 30px;
  padding-inline: 11px;
  gap: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.service-browser-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff6d87;
}

.service-browser-bar i:nth-child(2) { background: #ffce68; }
.service-browser-bar i:nth-child(3) { background: #45e0a8; }

.service-browser-nav {
  position: absolute;
  top: 42px;
  right: 18px;
  width: 42%;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, #45d7ff, #c28aff);
}

.service-browser-mock strong {
  max-width: 9ch;
  color: #f7f9ff;
  font-family: var(--display);
  font-size: 27px;
  line-height: 1.02;
}

.service-browser-mock small {
  margin-top: 10px;
  color: #8da7bb;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-site-card .service-card-icon {
  color: #e9fbff;
  background: rgba(31, 137, 178, 0.72);
}

.lower-showcase-redesign .service-showcase-copy {
  display: grid;
  align-content: start;
  min-height: 154px;
  padding: 21px;
}

.lower-showcase-redesign .service-showcase-copy h4 {
  font-size: 24px;
  line-height: 1.08;
}

.lower-showcase-redesign .service-showcase-copy p {
  margin-top: 8px;
  font-size: 13px;
}

.lower-showcase-redesign .service-showcase-copy > div {
  align-self: end;
  margin-top: 16px;
}

.lower-showcase-redesign .ease-section::after {
  display: none;
  content: none;
}

.lower-showcase-redesign .ease-section {
  padding-block: 112px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 61, 127, 0.024) 50%, transparent) top / 100% 1px no-repeat,
    radial-gradient(ellipse 46% 44% at 50% 45%, rgba(255, 61, 127, 0.055), transparent 76%);
}

.lower-showcase-redesign .ease-section .section-heading {
  max-width: 620px;
  margin: 0 auto 44px;
}

.lower-showcase-redesign .ease-section h2 {
  margin-top: 20px;
  font-size: 54px;
  line-height: 1.02;
}

.lower-showcase-redesign .ease-section .section-heading > p {
  margin: 14px auto 0;
  font-size: 15px;
}

.lower-showcase-redesign .ease-flow {
  grid-template-columns: minmax(0, 1fr) 38px minmax(0, 1fr) 38px minmax(0, 1fr);
  gap: 12px;
}

.lower-showcase-redesign .ease-flow article {
  display: grid;
  justify-items: center;
  min-height: 225px;
  padding: 28px 22px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(12, 15, 24, 0.72);
  text-align: center;
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.lower-showcase-redesign .ease-flow article:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(19, 23, 35, 0.88);
  transform: translateY(-5px);
}

.lower-showcase-redesign .flow-icon {
  width: 88px;
  height: 88px;
  border: 1px solid rgba(255, 61, 127, 0.2);
  border-radius: 8px;
  font-size: 34px;
  box-shadow: 0 18px 38px rgba(255, 61, 127, 0.08);
}

.lower-showcase-redesign .ease-flow article:nth-of-type(2) .flow-icon {
  border-color: rgba(69, 215, 255, 0.2);
  box-shadow: 0 18px 38px rgba(69, 215, 255, 0.08);
}

.lower-showcase-redesign .ease-flow article:nth-of-type(3) .flow-icon {
  border-color: rgba(69, 224, 168, 0.2);
  box-shadow: 0 18px 38px rgba(69, 224, 168, 0.08);
}

.lower-showcase-redesign .ease-flow h3 {
  margin: 22px 0 7px;
  font-size: 22px;
}

.lower-showcase-redesign .ease-flow p {
  max-width: 24ch;
  font-size: 12px;
  line-height: 1.55;
}

.lower-showcase-redesign .flow-arrow {
  display: grid;
  width: 34px;
  height: 34px;
  color: #8c95a6;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  place-items: center;
}

.lower-showcase-redesign .faq-section {
  padding-top: 168px;
}

.lower-showcase-redesign .faq-heading h2 {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  font-size: 54px;
  line-height: 1.04;
}

.lower-showcase-redesign .faq-heading > p {
  max-width: 28ch;
  font-size: 14px;
}

.lower-showcase-redesign .faq-list details {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.lower-showcase-redesign .faq-list summary span i {
  width: 44px;
  height: 44px;
  border-radius: 7px;
  font-size: 17px;
}

/* Plataformas em blocos compactos e reconheciveis ------------------------- */

.lower-showcase-redesign .media-panel {
  grid-template-columns: minmax(0, 0.76fr) minmax(560px, 1.24fr);
  min-height: 520px;
  gap: clamp(54px, 7vw, 108px);
}

.lower-showcase-redesign .media-copy h2 {
  max-width: 11ch;
  font-size: 52px;
}

.lower-showcase-redesign .media-copy > p {
  max-width: 37ch;
  line-height: 1.62;
}

.lower-showcase-redesign .media-stack {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  box-shadow: none;
  transform: none;
}

.lower-showcase-redesign .media-item,
.lower-showcase-redesign .media-item:nth-child(n) {
  position: relative;
  display: grid;
  align-content: start;
  grid-column: span 2;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 172px;
  padding: 18px;
  overflow: hidden;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 8px;
  background: rgba(12, 16, 27, 0.92);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
  transform: none;
}

.lower-showcase-redesign .media-item:nth-child(4),
.lower-showcase-redesign .media-item:nth-child(5) {
  grid-column: span 3;
  min-height: 142px;
}

.lower-showcase-redesign .media-item::after {
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--platform-accent, #c28aff);
  content: "";
  opacity: 0.76;
}

.lower-showcase-redesign .media-item.instagram { --platform-accent: #f34aa0; background: linear-gradient(145deg, rgba(45, 18, 43, 0.94), rgba(13, 16, 27, 0.96)); }
.lower-showcase-redesign .media-item.facebook { --platform-accent: #4d99ff; background: linear-gradient(145deg, rgba(15, 34, 62, 0.94), rgba(13, 16, 27, 0.96)); }
.lower-showcase-redesign .media-item.tiktok { --platform-accent: #50f2e7; background: linear-gradient(145deg, rgba(13, 40, 43, 0.94), rgba(13, 16, 27, 0.96)); }
.lower-showcase-redesign .media-item.youtube { --platform-accent: #ff4667; background: linear-gradient(145deg, rgba(53, 17, 28, 0.94), rgba(13, 16, 27, 0.96)); }
.lower-showcase-redesign .media-item.shazam { --platform-accent: #45d7ff; background: linear-gradient(145deg, rgba(13, 38, 56, 0.94), rgba(13, 16, 27, 0.96)); }

.lower-showcase-redesign .media-item > span {
  width: 70px;
  height: 70px;
  border: 1px solid color-mix(in srgb, var(--platform-accent, #c28aff) 30%, transparent);
  border-radius: 8px;
}

.lower-showcase-redesign .media-item img {
  width: 46px;
  height: 46px;
}

.lower-showcase-redesign .media-item > div {
  display: grid;
  grid-column: 1 / -1;
  gap: 4px;
}

.lower-showcase-redesign .media-item strong {
  font-size: 17px;
}

.lower-showcase-redesign .media-item small {
  color: #8f99aa;
  font-size: 10px;
}

.lower-showcase-redesign .media-item > i {
  align-self: center;
  color: var(--platform-accent, #c28aff);
}

.lower-showcase-redesign .media-item:hover {
  border-color: color-mix(in srgb, var(--platform-accent, #c28aff) 38%, transparent);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.29);
  transform: translateY(-4px);
}

@media (max-width: 1080px) {
  .lower-showcase-redesign .media-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .lower-showcase-redesign .media-copy {
    max-width: 680px;
    margin-inline: auto;
    text-align: center;
  }

  .lower-showcase-redesign .media-copy h2,
  .lower-showcase-redesign .media-copy > p {
    margin-inline: auto;
  }

  .lower-showcase-redesign .media-tags {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .lower-showcase-redesign .services-section,
  .lower-showcase-redesign .faq-section {
    padding: 126px 0 78px;
  }

  .lower-showcase-redesign .section-kicker-row {
    display: grid;
    width: 100%;
    min-height: 0;
    justify-items: center;
    gap: 14px;
  }

  .lower-showcase-redesign .inline-section-number {
    position: relative;
    z-index: 1;
    top: auto;
    left: auto;
    margin: 0 0 6px;
    color: color-mix(in srgb, var(--section-accent, #ff6a35) 72%, #08101a);
    font-size: 64px;
    line-height: 0.82;
    opacity: 1;
    transform: none;
  }

  .lower-showcase-redesign .section-kicker-row .eyebrow {
    position: relative;
    z-index: 2;
    margin: 0;
  }

  .services-section-number,
  .download-section-number,
  .faq-section-number {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    font-size: 64px;
    line-height: 0.82;
  }

  .faq-marker {
    justify-items: center;
  }

  .services-section-number {
    margin-bottom: 20px;
  }

  .download-section-marker {
    padding-top: 18px;
  }

  .lower-showcase-redesign .download-section {
    padding: 22px 0 54px;
  }

  .visual-section-number {
    z-index: 1;
    justify-self: center;
    margin: 0 0 18px;
    font-size: 72px;
    line-height: 0.82;
    text-align: center;
  }

  .lower-showcase-redesign .protection-experience::after,
  .lower-showcase-redesign .scanner-section::after,
  .lower-showcase-redesign .media-section::after,
  .lower-showcase-redesign .commerce-section::after,
  .lower-showcase-redesign .services-section::after,
  .lower-showcase-redesign .playlist-business-section::after,
  .lower-showcase-redesign .trust-section::after {
    z-index: 1;
    top: 18px;
    right: auto;
    left: 50%;
    color: color-mix(in srgb, var(--section-accent, var(--story-color, #45d7ff)) 46%, #07101a);
    font-size: 64px;
    line-height: 0.82;
    opacity: 1;
    transform: translateX(-50%);
  }

  .lower-showcase-redesign .ad-experience .protection-experience-copy {
    position: relative;
    z-index: 2;
    padding-top: 78px;
  }

  .lower-showcase-redesign .offline-player-stage {
    grid-template-rows: auto auto auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    align-content: start;
    overflow: visible;
  }

  .lower-showcase-redesign .offline-app-player {
    grid-row: 2;
    width: min(350px, 100%);
    max-width: 100%;
  }

  .lower-showcase-redesign .offline-badge-large {
    position: relative;
    grid-row: 3;
    inset: auto;
    width: min(100%, 320px);
    max-width: 100%;
    min-width: 0;
    margin: 14px auto 0;
    padding: 12px;
    gap: 10px;
    box-sizing: border-box;
    translate: 0 0;
  }

  .lower-showcase-redesign .offline-badge-large > span {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }

  .lower-showcase-redesign .offline-badge-large .material-symbols-outlined {
    font-size: 28px;
  }

  .lower-showcase-redesign .offline-badge-large > div {
    min-width: 0;
    text-align: left;
  }

  .lower-showcase-redesign .offline-badge-large strong {
    white-space: normal;
    font-size: clamp(10px, 3vw, 13px);
  }

  .lower-showcase-redesign .scanner-visual,
  .lower-showcase-redesign .scanner-phone {
    max-width: 100%;
    min-width: 0;
  }

  .lower-showcase-redesign .pdf-float {
    right: auto;
    left: 50%;
    width: min(calc(100% - 20px), 300px);
    max-width: calc(100% - 20px);
    min-width: 0;
    box-sizing: border-box;
    translate: calc(-50% + var(--scanner-pdf-x)) var(--scanner-pdf-y);
  }

  .lower-showcase-redesign .pdf-float > span {
    min-width: 0;
  }

  .lower-showcase-redesign .shop-product-image-real {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    padding: 14px;
  }

  .lower-showcase-redesign .shop-product-image-real img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .lower-showcase-redesign .ease-section {
    padding-block: 78px;
  }

  .lower-showcase-redesign .services-heading h2 {
    max-width: none;
    font-size: clamp(44px, 13vw, 58px);
    line-height: 0.96;
  }

  .lower-showcase-redesign .service-showcase-card {
    min-height: 0;
  }

  .lower-showcase-redesign .service-showcase-image {
    min-height: 250px;
  }

  .service-card-icon {
    width: 72px;
    height: 72px;
    font-size: 29px;
  }

  .service-browser-mock {
    inset: 48px 36px 28px 24px;
  }

  .lower-showcase-redesign .ease-flow {
    justify-items: center;
    grid-template-columns: minmax(0, 420px);
  }

  .lower-showcase-redesign .ease-flow article {
    width: 100%;
    min-height: 205px;
  }

  .lower-showcase-redesign .flow-arrow {
    transform: rotate(90deg);
  }

  .lower-showcase-redesign .media-section {
    padding-block: 82px;
  }

  .lower-showcase-redesign .media-panel {
    gap: 36px;
  }

  .lower-showcase-redesign .media-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .lower-showcase-redesign .media-item,
  .lower-showcase-redesign .media-item:nth-child(n) {
    grid-column: span 1;
    min-height: 154px;
  }

  .lower-showcase-redesign .media-item:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .lower-showcase-redesign .services-section,
  .lower-showcase-redesign .faq-section {
    padding: 116px 0 68px;
  }

  .services-section-number,
  .download-section-number,
  .faq-section-number {
    font-size: 58px;
  }

  .lower-showcase-redesign .inline-section-number,
  .lower-showcase-redesign .protection-experience::after,
  .lower-showcase-redesign .scanner-section::after,
  .lower-showcase-redesign .media-section::after,
  .lower-showcase-redesign .commerce-section::after,
  .lower-showcase-redesign .services-section::after,
  .lower-showcase-redesign .playlist-business-section::after,
  .lower-showcase-redesign .trust-section::after {
    font-size: 58px;
  }

  .download-section-marker {
    padding-top: 14px;
  }

  .lower-showcase-redesign .download-section {
    padding: 18px 0 42px;
  }

  .visual-section-number {
    margin: 0 0 16px;
    font-size: 64px;
  }

  .lower-showcase-redesign .ad-experience .protection-experience-copy {
    padding-top: 70px;
  }

  .lower-showcase-redesign .offline-badge-large {
    width: 100%;
    margin-top: 12px;
    padding: 11px;
  }

  .lower-showcase-redesign .offline-badge-large strong {
    font-size: 11px;
  }

  .lower-showcase-redesign .pdf-float {
    bottom: 24px;
    width: min(calc(100% - 16px), 280px);
    max-width: calc(100% - 16px);
  }

  .lower-showcase-redesign .shop-product-image-real {
    aspect-ratio: 4 / 3;
    padding: 12px;
  }

  .lower-showcase-redesign .services-showcase-head {
    padding-bottom: 17px;
  }

  .lower-showcase-redesign .services-card .coming-pill {
    margin-top: 12px;
  }

  .lower-showcase-redesign .service-showcase-image {
    min-height: 220px;
  }

  .service-browser-mock {
    inset: 46px 28px 24px 18px;
  }

  .service-browser-mock strong {
    font-size: 24px;
  }

  .lower-showcase-redesign .ease-section h2,
  .lower-showcase-redesign .faq-heading h2 {
    font-size: 32px;
  }

  .lower-showcase-redesign .services-heading h2 {
    font-size: 44px;
  }

  .lower-showcase-redesign .media-stack {
    grid-template-columns: 1fr;
  }

  .lower-showcase-redesign .media-item,
  .lower-showcase-redesign .media-item:nth-child(n) {
    grid-column: 1;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    min-height: 96px;
    padding: 14px;
  }

  .lower-showcase-redesign .media-item > span {
    grid-row: 1;
    width: 64px;
    height: 64px;
  }

  .lower-showcase-redesign .media-item img {
    width: 42px;
    height: 42px;
  }

  .lower-showcase-redesign .media-item > div {
    align-self: center;
    grid-column: 2;
    grid-row: 1;
  }

  .lower-showcase-redesign .media-item > i {
    grid-column: 3;
    grid-row: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lower-showcase-redesign .shop-product-image-real img,
  .lower-showcase-redesign .service-showcase-card,
  .lower-showcase-redesign .service-showcase-image img,
  .lower-showcase-redesign .ease-flow article,
  .lower-showcase-redesign .media-item {
    transition: none;
  }
}


/* ==========================================================================
   ARTE DO CONVERSOR — versao retrato (1122x1402)
   --------------------------------------------------------------------------
   A arte agora e' em pe'. O quadro segue a proporcao dela e a LARGURA e' que
   manda: em tela grande para em 500px, em tela pequena ocupa o que tiver.
   Assim a altura sai da conta e a arte nunca distorce nem perde pedaco.

   Em volta vai um brilho verde e azul (as cores do desenho) e quatro icones
   flutuando, no mesmo espirito dos cartoes que orbitam o celular la' em cima.
   ========================================================================== */
.conversor-moldura {
  position: relative;
  z-index: 2;
  display: grid;
  align-self: center;
  justify-items: center;
  /* A moldura tem que ter o tamanho da arte, nao o da coluna: os icones se
     apoiam nas bordas dela, e sobrando espaco eles ficavam la' longe. */
  width: min(100%, 500px);
  margin-inline: auto;
  /* precisa deixar passar: os icones ficam metade pra fora do quadro */
  overflow: visible;
}

/* Auréola por tras do quadro: e' o "efeito em volta". Fica atras de tudo e
   nao pega toque nenhum. */
.conversor-moldura::before {
  position: absolute;
  z-index: 0;
  inset: -6% -14%;
  content: "";
  border-radius: 46%;
  background:
    radial-gradient(58% 52% at 28% 26%, rgba(48, 237, 106, 0.22), transparent 70%),
    radial-gradient(54% 50% at 76% 74%, rgba(16, 133, 252, 0.20), transparent 72%);
  filter: blur(30px);
  opacity: 0.95;
  pointer-events: none;
}

.tool-story .converter-story-visual {
  position: relative;
  z-index: 2;
  width: min(100%, 500px);
  aspect-ratio: 1122 / 1402;
  height: auto;
  min-height: 0;
  /* De proposito SEM borda e SEM sombra fixas aqui.
     Quem acende o quadro quando o mouse passa por cima e'
     .tool-story-visual.motion-active, a mesma regra das outras historias.
     Fixando cor e sombra neste ponto, esta regra vencia a de hover e o
     brilho ficava diferente do resto do site. */
}

.converter-story-visual > img {
  object-fit: cover;        /* mesma proporcao do quadro: cobre sem cortar */
  object-position: center;
  filter: none;             /* a arte ja' nasce escura */
}

/* Sombra so' na beirada de baixo, pra arte casar com o fundo sem apagar nada. */
.converter-story-visual .story-image-shade {
  background: linear-gradient(180deg,
              rgba(5, 7, 13, 0) 68%,
              rgba(5, 7, 13, 0.32));
}

/* Os cartoes que ficavam pendurados na frente repetiam o que a arte mostra e
   tapavam o desenho. Voltam tirando estas tres linhas. */
.converter-story-visual .story-visual-badge,
.converter-story-visual .converter-story-panel,
.converter-story-visual .story-platform-row {
  display: none;
}

/* ----------------------------------------------- os quatro icones flutuando
   O 3d vem de tres coisas juntas: a perspectiva no giro, a luz branca por
   dentro da borda de cima e a sombra escura por dentro da borda de baixo.
   Sem as duas sombras internas o quadrado fica chapado. */
.conv-flutua {
  position: absolute;
  z-index: 6;
  display: grid;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 23px;
  /* Um pouco transparente DE PROPOSITO: e' o que deixa o borrado aparecer.
     Fundo solido engole o efeito e o quadradinho vira adesivo. */
  background: linear-gradient(150deg, rgba(30, 40, 46, 0.86), rgba(9, 13, 20, 0.88));
  box-shadow:
    0 22px 38px rgba(0, 0, 0, 0.48),
    inset 0 1px rgba(255, 255, 255, 0.18),
    inset 0 -10px 18px rgba(0, 0, 0, 0.38);
  font-size: 27px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  place-items: center;
  pointer-events: none;
}

/* risco de luz atravessando o vidro */
.conv-flutua::after {
  position: absolute;
  content: "";
  inset: 1px 1px 52% 1px;
  border-radius: 19px 19px 40% 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), transparent);
  pointer-events: none;
}

.conv-flutua--link {
  top: 8%;
  left: -106px;
  color: #30ed6a;
  border-color: rgba(48, 237, 106, 0.34);
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.48), 0 0 26px rgba(48, 237, 106, 0.18),
              inset 0 1px rgba(255, 255, 255, 0.18), inset 0 -10px 18px rgba(0, 0, 0, 0.38);
  animation: conv-flutua-a 5.4s ease-in-out infinite;
}


/* Azul do outro lado e um pouco mais afastado: distancias diferentes tiram a
   simetria e dao profundidade. */
.conv-flutua--mp3 {
  right: -118px;
  bottom: 22%;
  color: #1085fc;
  border-color: rgba(16, 133, 252, 0.34);
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.48), 0 0 26px rgba(16, 133, 252, 0.18),
              inset 0 1px rgba(255, 255, 255, 0.18), inset 0 -10px 18px rgba(0, 0, 0, 0.38);
  animation: conv-flutua-c 5.9s ease-in-out infinite;
}


@keyframes conv-flutua-a {
  0%, 100% { transform: perspective(420px) translateY(0) rotateX(-9deg) rotateY(24deg) rotate(-3deg); }
  50%      { transform: perspective(420px) translateY(-13px) rotateX(-4deg) rotateY(17deg) rotate(-1deg); }
}


@keyframes conv-flutua-c {
  0%, 100% { transform: perspective(420px) translateY(0) rotateX(-11deg) rotateY(-26deg) rotate(3deg); }
  50%      { transform: perspective(420px) translateY(11px) rotateX(-5deg) rotateY(-18deg) rotate(1deg); }
}


/* Tela pequena: os icones entram PARA DENTRO da borda. Deixar meio pra fora
   empurraria a pagina e o site voltaria a arrastar pro lado. */
@media (max-width: 720px) {
  .conv-flutua { width: 54px; height: 54px; border-radius: 17px; font-size: 19px; }
  .conv-flutua::after { border-radius: 14px 14px 40% 40%; }
  .conv-flutua--link { top: 4%; left: 6px; }
  .conv-flutua--mp3  { right: 6px; bottom: 24%; }
  .conversor-moldura::before { inset: -4% -6%; filter: blur(22px); }
}

/* No celular a arte vem ANTES do texto e batia no numero grande da secao
   (o "01", colado no topo do bloco). Aqui ela desce o bastante para o numero
   aparecer inteiro acima dela. */
@media (max-width: 760px) {
  /* No celular nao existe espaco ao lado da arte: os icones so' teriam onde
     ficar EM CIMA dela, tapando o desenho. Entao aqui eles simplesmente nao
     aparecem. */
  .conv-flutua { display: none; }

  /* O numero fica EXATAMENTE como nas outras historias — nada de posicao
     especial aqui. Para ele nao esbarrar na arte, quem vem primeiro no
     celular e' o texto, igual ao resto da pagina. */
  .tool-story-pink .tool-story-copy { order: 1; }
  .tool-story-pink .conversor-moldura { order: 2; }
}

/* ==========================================================================
   COR DA HISTORIA DO CONVERSOR — verde e azul, igual a arte
   --------------------------------------------------------------------------
   Esta historia nasceu rosa/vermelha (--story-color: #ff3d7f). Com a arte
   nova no lugar da foto, o brilho vermelho em volta brigava com o verde e o
   azul do desenho.

   As duas cores aqui foram TIRADAS DA PROPRIA ARTE: o verde do "em musica"
   e o azul do Shazam. Trocando as duas variaveis, tudo que se pinta por elas
   acompanha junto — a etiqueta "CONVERSOR DE MUSICA", o quadradinho do icone,
   o numero 01 do fundo, a forma inclinada atras e o brilho da moldura.

   A classe continua chamando "pink" so' porque e' o nome do bloco no HTML e
   ela e' usada por esta historia e mais nenhuma.
   ========================================================================== */
.tool-story-pink {
  --story-color: #30ed6a;                 /* verde do "em musica" */
  --story-azul: #1085fc;                  /* azul do Shazam */
  --story-glow: rgba(48, 237, 106, 0.15);
}

/* A forma inclinada do fundo sai do verde e termina no azul, do mesmo jeito
   que a arte caminha da esquerda para a direita. */
.lower-showcase-redesign .tool-story-pink::before {
  background: linear-gradient(135deg,
              color-mix(in srgb, var(--story-color) 16%, transparent),
              color-mix(in srgb, var(--story-azul) 12%, transparent) 55%,
              transparent 78%);
}

/* Em tela pequena o rosa estava escrito na mao, entao precisa ser refeito
   aqui dentro — fora do @media isso vazaria para o computador. */
@media (max-width: 620px) {
  .tool-story-pink {
    border-color: rgba(48, 237, 106, .22);
    background:
      radial-gradient(circle at 50% 52%, rgba(16, 133, 252, .13), transparent 22rem),
      linear-gradient(155deg, rgba(13, 28, 30, .98), rgba(8, 11, 19, .99));
    box-shadow: 0 30px 65px rgba(0, 0, 0, .35), 0 0 38px rgba(48, 237, 106, .07);
  }
  .tool-story-pink .tool-story-label > span {
    box-shadow: 0 15px 32px rgba(48, 237, 106, .18), inset 0 1px rgba(255, 255, 255, .1);
  }
  .tool-story-pink .tool-story-visual {
    border-color: rgba(48, 237, 106, .26);
    box-shadow: 0 28px 58px rgba(0, 0, 0, .42), 0 0 32px rgba(16, 133, 252, .1),
                inset 0 1px rgba(255, 255, 255, .07);
  }
}


/* ==========================================================================
   HISTORIA 02 — BUSCA DE MUSICA
   --------------------------------------------------------------------------
   Como estava: um icone de lupa de 164px posicionado por baixo do cartao de
   busca (z-index 1 contra 2). O cartao ocupa 78% da largura e cobria quase
   tudo — sobrava metade da lupa e as palavras "BUSCAR / musica ou artista"
   cortadas no meio. No celular era pior: empurrado para fora (left: -38px) e
   com 22% de opacidade, virava borrao.

   Como fica: o icone sai de tras e vira uma FAIXA no topo do quadro, deitada
   (simbolo + as duas palavras ao lado). Some o empilhamento, some o corte, e
   funciona igual em tela grande e pequena porque agora e' fluxo normal, nao
   posicao absoluta calculada na mao.
   ========================================================================== */
.search-story-visual {
  /* deixa de centralizar tudo: a faixa fica em cima, o cartao embaixo */
  align-content: start;
  justify-items: stretch;
  padding: 22px;
}

.search-hero-icon {
  position: static;
  z-index: 3;
  display: grid;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(69, 215, 255, 0.14);
  column-gap: 13px;
  grid-template-columns: auto 1fr;
  justify-items: start;
  transform: none;
}

.search-hero-icon > span {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  font-size: 25px;
  grid-row: 1 / span 2;
}

.search-hero-icon b {
  align-self: end;
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.14em;
}

.search-hero-icon small {
  align-self: start;
  margin: 0;
  font-size: 10px;
}

.search-story-window {
  width: 100%;
  margin-left: 0;
}


/* ==========================================================================
   HISTORIA 08 — REPRODUTOR INTERNO
   --------------------------------------------------------------------------
   O simbolo de "sem internet" vinha de uma fonte de icones da Google carregada
   pela rede. Quando ela nao chega, o navegador mostra o NOME do icone como
   texto — era o "signal_wifi_off" cortado que aparecia no lugar do desenho.
   Agora o desenho vai dentro da propria pagina (Tabler Icons, MIT) e nao
   depende de nada de fora.

   O numero da secao tambem faltava: ela contava na sequencia mas nao
   desenhava o numero, entao pulava do 07 para o 09. Aqui ele aparece no mesmo
   lugar e no mesmo peso das outras.
   ========================================================================== */
.wc-ic-wifi-off {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
}



/* ==========================================================================
   BRILHO DO MOUSE DA HISTORIA 08 PARA BAIXO
   --------------------------------------------------------------------------
   As sete primeiras historias acendem porque tem
   ".tool-story-visual.motion-active". Da' 08 em diante os quadros mudaram de
   nome (reprodutor, aparelho da protecao, celular do scanner, cartao da
   playlist, cartoes da loja...) e ninguem escreveu o aceso deles — por isso
   passava o mouse e nao acontecia nada.

   Aqui vai por :hover, sem depender de JavaScript, e cada um acende na COR DA
   PROPRIA SECAO (--section-accent), do mesmo jeito que as historias acendem
   na cor delas. O :focus-visible entra junto para quem anda pelo teclado.
   ========================================================================== */
.lower-showcase-redesign .offline-app-player,
.lower-showcase-redesign .protection-device,
.lower-showcase-redesign .scanner-phone,
.lower-showcase-redesign .playlist-visual-card,
.lower-showcase-redesign .commerce-card,
.lower-showcase-redesign .service-showcase-grid > *,
.lower-showcase-redesign .trust-grid > * {
  transition:
    border-color 620ms cubic-bezier(.16, 1, .3, 1),
    box-shadow 720ms cubic-bezier(.16, 1, .3, 1);
}



/* O aparelho da protecao e o celular do scanner tem moldura grossa de
   aparelho: neles o aceso vai so' no brilho de fora, senao a borda do
   "plastico" muda de cor e fica estranho. */
.lower-showcase-redesign .protection-device:hover,
.lower-showcase-redesign .scanner-phone:hover {
  box-shadow:
    inset 0 0 0 5px rgba(0, 0, 0, 0.28),
    0 40px 78px rgba(0, 0, 0, 0.46),
    0 0 52px color-mix(in srgb, var(--section-accent, #45d7ff) 18%, transparent);
}


/* ==========================================================================
   08 — UM NUMERO SO', EM CIMA DA ETIQUETA
   --------------------------------------------------------------------------
   Existiam dois: um escrito na mao no HTML (na coluna do reprodutor) e outro
   que eu tinha criado por CSS. O meu saiu. O que ficou mudou de coluna: nasce
   logo acima da etiqueta "Reprodutor interno", entao a ordem fica numero ->
   etiqueta com icone -> titulo, igual as outras.
   ========================================================================== */
.offline-player-copy .visual-section-number {
  display: block;
  width: auto;
  margin: 0 0 10px;
  justify-self: start;
  line-height: 0.86;
}

/* ==========================================================================
   11 — AS LINHAS DE CANTO GIRAM JUNTO COM O PAPEL
   --------------------------------------------------------------------------
   O papel gira 90 graus e encolhe para caber (scale .76). As linhas de canto e
   a linha de leitura eram posicionadas pela medida do papel EM PE'. Resultado:
   o papel virava e a moldura ficava parada no lugar antigo.

   Aqui as medidas trocam de lado e levam a mesma reducao. E' calculado a
   partir da largura/altura originais, nao de numeros fixos, entao vale igual
   no computador e no celular, onde o papel tem outro tamanho.
   ========================================================================== */
.scanner-visual.is-rotated {
  --scanner-giro-escala: 0.76;
  --scanner-paper-half-width: calc(var(--scanner-paper-height) / 2 * var(--scanner-giro-escala));
  --scanner-paper-half-height: calc(var(--scanner-paper-width) / 2 * var(--scanner-giro-escala));
}

.scan-line {
  width: calc(var(--scanner-paper-half-width) * 2 + 24px);
}


/* ==========================================================================
   O ICONE DE "FUNCIONA SEM INTERNET"
   ========================================================================== */
.offline-badge-large > span {
  width: 66px;
  height: 66px;
  border-radius: 21px;
  font-size: 30px;
}

.offline-badge-large > span .wc-ic-wifi-off {
  width: 32px;
  height: 32px;
  stroke-width: 2.2;
}

/* ==========================================================================
   A SOMBRA QUE SUMIA DE UM GOLPE NO MOUSE
   --------------------------------------------------------------------------
   Nao era opiniao de gosto: e' regra do navegador. Sombra so' e' animada
   quando os dois lados tem o MESMO numero de camadas, na mesma ordem, com o
   mesmo "inset". Aqui os quadros descansavam com 1 ou 2 camadas e acendiam
   com 3 — como nao da' para interpolar, o navegador troca de uma vez: a
   sombra de baixo some no mesmo quadro em que a luz aparece.

   A correcao e' dar a TODOS uma terceira camada de brilho ja' parada,
   invisivel (transparente e com raio zero). Nada muda parado; no mouse so'
   essa camada cresce, e a passagem fica lisa.
   ========================================================================== */
.lower-showcase-redesign .tool-story-visual {
  box-shadow:
    -24px 30px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px rgba(255, 255, 255, 0.06),
    0 0 0 rgba(0, 0, 0, 0);
}

.lower-showcase-redesign .tool-story-reverse .tool-story-visual {
  box-shadow:
    24px 30px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px rgba(255, 255, 255, 0.06),
    0 0 0 rgba(0, 0, 0, 0);
}

.lower-showcase-redesign .tool-story-visual.motion-active {
  box-shadow:
    0 38px 78px rgba(0, 0, 0, 0.38),
    inset 0 1px rgba(255, 255, 255, 0.09),
    0 0 45px color-mix(in srgb, var(--story-color) 12%, transparent);
}

.lower-showcase-redesign .offline-app-player {
  box-shadow:
    -25px 35px 60px rgba(0, 0, 0, 0.36),
    inset 0 1px rgba(255, 255, 255, 0.08),
    0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow 700ms cubic-bezier(.16, 1, .3, 1);
}

.lower-showcase-redesign .offline-player-callout.motion-active .offline-app-player,
.lower-showcase-redesign .offline-app-player:hover {
  box-shadow:
    -30px 43px 75px rgba(0, 0, 0, 0.43),
    inset 0 1px rgba(255, 255, 255, 0.1),
    0 0 55px rgba(69, 224, 168, 0.16);
}

.lower-showcase-redesign .protection-device,
.lower-showcase-redesign .scanner-phone {
  box-shadow:
    0 36px 78px rgba(0, 0, 0, 0.36),
    0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow 700ms cubic-bezier(.16, 1, .3, 1);
}

.lower-showcase-redesign .protection-device:hover,
.lower-showcase-redesign .protection-device.motion-active,
.lower-showcase-redesign .scanner-phone:hover,
.lower-showcase-redesign .scanner-phone.motion-active {
  box-shadow:
    0 42px 84px rgba(0, 0, 0, 0.44),
    0 0 52px color-mix(in srgb, var(--section-accent, #45d7ff) 18%, transparent);
}

.lower-showcase-redesign .playlist-visual-card {
  box-shadow:
    28px 34px 0 rgba(0, 0, 0, 0.28),
    42px 58px 92px rgba(0, 0, 0, 0.4),
    0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow 700ms cubic-bezier(.16, 1, .3, 1);
}

.lower-showcase-redesign .playlist-visual-card:hover,
.lower-showcase-redesign .playlist-visual-card.motion-active {
  box-shadow:
    28px 34px 0 rgba(0, 0, 0, 0.3),
    46px 62px 96px rgba(0, 0, 0, 0.46),
    0 0 50px color-mix(in srgb, var(--section-accent, #45e0a8) 16%, transparent);
}

.lower-showcase-redesign .service-showcase-grid > * {
  box-shadow:
    0 22px 42px rgba(0, 0, 0, 0.23),
    0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow 700ms cubic-bezier(.16, 1, .3, 1),
              border-color 620ms cubic-bezier(.16, 1, .3, 1);
}

.lower-showcase-redesign .service-showcase-grid > *:hover {
  box-shadow:
    0 26px 50px rgba(0, 0, 0, 0.3),
    0 0 44px color-mix(in srgb, var(--section-accent, #45d7ff) 15%, transparent);
}

.lower-showcase-redesign .commerce-card,
.lower-showcase-redesign .trust-grid > * {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow 700ms cubic-bezier(.16, 1, .3, 1),
              border-color 620ms cubic-bezier(.16, 1, .3, 1);
}

.lower-showcase-redesign .commerce-card:hover,
.lower-showcase-redesign .trust-grid > *:hover {
  box-shadow: 0 0 44px color-mix(in srgb, var(--section-accent, #45d7ff) 15%, transparent);
}

/* ==========================================================================
   11 — A MOLDURA GIRA JUNTO COM O PAPEL
   --------------------------------------------------------------------------
   Os quatro cantos e a linha de leitura sao posicionados por conta, entao
   trocavam de lugar de um quadro para o outro enquanto o papel girava suave.
   Aqui eles ganham o mesmo tempo e a mesma curva do papel (520ms), e passam a
   acompanhar o giro em vez de pular no fim.
   ========================================================================== */
.corner {
  transition:
    border-color 280ms ease,
    filter 280ms ease,
    transform 420ms cubic-bezier(.16, 1, .3, 1),
    top 520ms cubic-bezier(.16, 1, .3, 1),
    right 520ms cubic-bezier(.16, 1, .3, 1),
    bottom 520ms cubic-bezier(.16, 1, .3, 1),
    left 520ms cubic-bezier(.16, 1, .3, 1);
}

.scan-line {
  transition:
    opacity 320ms ease,
    left 520ms cubic-bezier(.16, 1, .3, 1),
    width 520ms cubic-bezier(.16, 1, .3, 1);
}


/* ==========================================================================
   CARTOES QUE ORBITAM O CELULAR DO TOPO
   --------------------------------------------------------------------------
   Mesma ideia dos simbolos da historia 01: virados de lado (perspectiva +
   giro), vidro com desfoque leve e afastados do aparelho. Cada um vira PARA o
   celular — o da esquerda olhando para a direita e os da direita olhando para
   a esquerda —, que e' o que da' a sensacao de estarem flutuando em volta e
   nao colados na tela.
   ========================================================================== */
.hero-visual .badge-spam {
  left: -84px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.hero-visual .badge-scan {
  right: -88px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.hero-visual .floating-note {
  right: -80px;
  /* estava sem desfoque nenhum: era o unico chapado dos tres */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background:
    radial-gradient(circle at 12% 35%, rgba(69, 215, 255, .12), transparent 42%),
    linear-gradient(135deg, rgba(17, 29, 42, .82), rgba(8, 18, 28, .84) 72%);
}

@keyframes badge-float-a {
  0%, 100% { transform: perspective(760px) translateY(0) rotateX(6deg) rotateY(17deg) rotate(-4deg); }
  50%      { transform: perspective(760px) translateY(-11px) rotateX(2deg) rotateY(11deg) rotate(-2deg); }
}

@keyframes badge-float-b {
  0%, 100% { transform: perspective(760px) translateY(0) rotateX(-6deg) rotateY(-17deg) rotate(3deg); }
  50%      { transform: perspective(760px) translateY(10px) rotateX(-2deg) rotateY(-11deg) rotate(1deg); }
}

@keyframes ad-note-float {
  0%, 100% { transform: perspective(760px) translateY(0) rotateX(-5deg) rotateY(-15deg); }
  50%      { transform: perspective(760px) translateY(-9px) rotateX(-1deg) rotateY(-9deg); }
}

/* No celular nao ha' espaco ao lado do aparelho: eles so' teriam onde ficar em
   cima da tela, tapando justamente o que a pagina quer mostrar. Entao somem,
   como voce pediu. */
@media (max-width: 760px) {
  .hero-visual .floating-badge,
  .hero-visual .floating-note {
    display: none;
  }
}

/* ==========================================================================
   01 — CANTOS DA ARTE MAIS REDONDOS
   ========================================================================== */
.tool-story .converter-story-visual {
  border-radius: 34px;
}

@media (max-width: 760px) {
  .tool-story .converter-story-visual {
    border-radius: 26px;
  }
}


/* ==========================================================================
   O GIRO 3D FICA NO ELEMENTO, NAO SO' NA ANIMACAO
   --------------------------------------------------------------------------
   Descoberto testando: quando o aparelho esta' com animacao desligada
   ("prefers-reduced-motion", que e' o caso dos celulares aqui), o site zera a
   duracao dessas animacoes. Como o giro morava DENTRO dos quadros da
   animacao, ele sumia junto e os cartoes voltavam a ficar chapados.

   Agora o giro e' do proprio elemento. A animacao continua fazendo so' o que
   e' dela: o vai-e-vem. Com movimento ligado ou desligado, eles ficam
   virados do mesmo jeito.
   ========================================================================== */
.hero-visual .badge-spam {
  transform: perspective(760px) rotateX(6deg) rotateY(17deg) rotate(-4deg);
}

.hero-visual .badge-scan {
  transform: perspective(760px) rotateX(-6deg) rotateY(-17deg) rotate(3deg);
}

.hero-visual .floating-note {
  transform: perspective(760px) rotateX(-5deg) rotateY(-15deg);
}

.conv-flutua--link {
  transform: perspective(420px) rotateX(-9deg) rotateY(24deg) rotate(-3deg);
}

.conv-flutua--mp3 {
  transform: perspective(420px) rotateX(-11deg) rotateY(-26deg) rotate(3deg);
}


/* ==========================================================================
   CELULAR: TODOS OS NUMEROS DO MESMO JEITO DA 01
   --------------------------------------------------------------------------
   Duas coisas estavam fora do padrao:

   1. O numero da protecao ficava preso a' direita. A regra que centraliza no
      celular tem forca 0-2-0 e a que joga para a direita usa :not(), que vale
      0-3-0 — ou seja, ganhava dela. Aqui a versao centralizada e' repetida com
      a mesma forca do :not(), entao passa a valer.
   2. O numero do reprodutor (08) e' escrito no HTML, e nao desenhado por CSS
      como os outros: vinha em 64px e verde cheio, enquanto os demais sao 58px
      com 30% da cor. Agora ele copia os outros.

   Resultado no celular: numero em cima, no centro, e a etiqueta com icone logo
   abaixo — igual a historia 01.
   ========================================================================== */
@media (max-width: 760px) {
  .lower-showcase-redesign .protection-experience:not(.ad-experience)::after,
  .lower-showcase-redesign .scanner-section:not(.x)::after,
  .lower-showcase-redesign .playlist-business-section:not(.x)::after,
  .lower-showcase-redesign .commerce-section:not(.x)::after,
  .lower-showcase-redesign .services-section:not(.x)::after,
  .lower-showcase-redesign .trust-section:not(.x)::after {
    top: 18px;
    right: auto;
    left: 50%;
    font-size: 58px;
    transform: translateX(-50%);
  }

  .offline-player-copy .visual-section-number {
    width: 100%;
    margin: 0 0 12px;
    color: color-mix(in srgb, var(--section-accent, #45e0a8) 30%, transparent);
    -webkit-text-fill-color: color-mix(in srgb, var(--section-accent, #45e0a8) 30%, transparent);
    font-size: 58px;
    text-align: center;
  }
}


/* ==========================================================================
   08 — OS TRES BOTOES DE APOIO ("Reproducao offline" e companhia)
   --------------------------------------------------------------------------
   A caixinha do simbolo tinha 34px e o desenho dentro dela nascia do tamanho
   do texto ao lado (11px). Dava um risco quase invisivel. Agora a caixinha e'
   maior e o desenho tem tamanho proprio, sem depender da letra.
   ========================================================================== */
.offline-player-points span {
  grid-template-columns: 44px auto;
  min-height: 56px;
  padding: 7px 16px 7px 8px;
  gap: 11px;
  font-size: 12px;
}

.offline-player-points span > i,
.offline-wifi-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 20px;
}

.offline-player-points .wc-ic-wifi-off {
  width: 24px;
  height: 24px;
  stroke-width: 2.2;
}

.offline-player-points strong { font-size: 12px; }

@media (max-width: 620px) {
  .offline-player-points span {
    grid-template-columns: 48px auto;
    min-height: 60px;
    font-size: 13px;
  }
  .offline-player-points span > i,
  .offline-wifi-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    font-size: 22px;
  }
  .offline-player-points .wc-ic-wifi-off { width: 26px; height: 26px; }
  .offline-player-points strong { font-size: 13px; }
}


/* ==========================================================================
   OS NUMEROS SOLTOS (15, 18, 19) ENTRAM NA MESMA REGRA DOS OUTROS
   --------------------------------------------------------------------------
   Esses tres sao escritos no HTML, e cada um vinha com a sua cor CHEIA — roxo,
   azul e rosa a 100%. Os outros numeros da pagina sao 30% da cor da secao. Era
   isso que fazia a pagina parecer um arco-iris: so' eles gritavam.

   O 18 ainda vinha alinhado a' esquerda enquanto 15 e 19 eram centralizados —
   por isso ele aparecia encostado na borda no celular.
   ========================================================================== */
.standalone-section-number {
  color: color-mix(in srgb, var(--section-accent, #45d7ff) 30%, transparent);
  -webkit-text-fill-color: color-mix(in srgb, var(--section-accent, #45d7ff) 30%, transparent);
  text-shadow: none;
}

.faq-section-number {
  color: color-mix(in srgb, var(--section-accent, #45d7ff) 30%, transparent);
  -webkit-text-fill-color: color-mix(in srgb, var(--section-accent, #45d7ff) 30%, transparent);
  text-align: center;
  text-shadow: none;
}

@media (max-width: 760px) {
  .standalone-section-number,
  .faq-section-number {
    width: 100%;
    text-align: center;
  }
}


/* ==========================================================================
   DA 8 PARA BAIXO: A ETIQUETA FICA IGUAL A DAS HISTORIAS
   --------------------------------------------------------------------------
   Nas historias (01 a 07) a etiqueta e' um QUADRADO GRANDE com sombra e o
   texto ao lado. Da 8 em diante era outra coisa: uma pilula pequena com o
   simbolo miudo dentro dela. Duas linguagens na mesma pagina.

   Aqui a pilula vira o mesmo quadrado: o simbolo (<i>) ganha 64px, borda,
   fundo e sombra na cor da secao; a pilula perde fundo e borda e vira so' o
   texto ao lado. Mesmo desenho, mesma leitura, de cima a baixo.
   ========================================================================== */
.lower-showcase-redesign .offline-player-callout .eyebrow,
.lower-showcase-redesign .protection-experience .eyebrow,
.lower-showcase-redesign .scanner-section .eyebrow,
.lower-showcase-redesign .playlist-business-section .eyebrow,
.lower-showcase-redesign .commerce-section .eyebrow,
.lower-showcase-redesign .services-section .eyebrow,
.lower-showcase-redesign .ease-section .eyebrow,
.lower-showcase-redesign .trust-section .eyebrow,
.lower-showcase-redesign .faq-section .eyebrow,
.lower-showcase-redesign .download-section .eyebrow {
  min-height: 0;
  padding: 0;
  gap: 13px;
  color: var(--section-accent, #45d7ff);
  border: 0;
  background: none;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.lower-showcase-redesign .offline-player-callout .eyebrow > i,
.lower-showcase-redesign .protection-experience .eyebrow > i,
.lower-showcase-redesign .scanner-section .eyebrow > i,
.lower-showcase-redesign .playlist-business-section .eyebrow > i,
.lower-showcase-redesign .commerce-section .eyebrow > i,
.lower-showcase-redesign .services-section .eyebrow > i,
.lower-showcase-redesign .ease-section .eyebrow > i,
.lower-showcase-redesign .trust-section .eyebrow > i,
.lower-showcase-redesign .faq-section .eyebrow > i,
.lower-showcase-redesign .download-section .eyebrow > i {
  display: grid;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  color: var(--section-accent, #45d7ff);
  border: 1px solid color-mix(in srgb, var(--section-accent, #45d7ff) 30%, transparent);
  border-radius: 19px;
  background: color-mix(in srgb, var(--section-accent, #45d7ff) 13%, transparent);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.08),
    0 16px 30px color-mix(in srgb, var(--section-accent, #45d7ff) 10%, transparent);
  font-size: 23px;
  place-items: center;
}

/* No celular a etiqueta fica centrada, como nas historias. */
@media (max-width: 760px) {
  .lower-showcase-redesign .offline-player-callout .eyebrow,
  .lower-showcase-redesign .protection-experience .eyebrow,
  .lower-showcase-redesign .scanner-section .eyebrow,
  .lower-showcase-redesign .playlist-business-section .eyebrow,
  .lower-showcase-redesign .commerce-section .eyebrow,
  .lower-showcase-redesign .services-section .eyebrow,
  .lower-showcase-redesign .ease-section .eyebrow,
  .lower-showcase-redesign .trust-section .eyebrow,
  .lower-showcase-redesign .faq-section .eyebrow,
  .lower-showcase-redesign .download-section .eyebrow {
    justify-content: center;
    margin-inline: auto;
  }

  /* Exatamente a medida que as historias usam no celular. */
  .lower-showcase-redesign .offline-player-callout .eyebrow > i,
  .lower-showcase-redesign .protection-experience .eyebrow > i,
  .lower-showcase-redesign .scanner-section .eyebrow > i,
  .lower-showcase-redesign .playlist-business-section .eyebrow > i,
  .lower-showcase-redesign .commerce-section .eyebrow > i,
  .lower-showcase-redesign .services-section .eyebrow > i,
  .lower-showcase-redesign .ease-section .eyebrow > i,
  .lower-showcase-redesign .trust-section .eyebrow > i,
  .lower-showcase-redesign .faq-section .eyebrow > i,
  .lower-showcase-redesign .download-section .eyebrow > i {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    font-size: 20px;
  }
}


/* ==========================================================================
   08 — O NUMERO VIRA MARCA NO TOPO, COMO EM TODAS AS OUTRAS
   --------------------------------------------------------------------------
   Nas outras secoes o numero e' desenhado por CSS e fica GRUDADO no topo do
   bloco (top: 20px), sem ocupar espaco: a etiqueta comeca em 99px. Na 08 ele
   e' escrito no HTML, entao entrava na fila e EMPURRAVA tudo para baixo — o
   numero comecava em 95px e a etiqueta so' em 159px. Era esse desnivel que
   fazia a 08 parecer outra coisa ao lado da 02.

   Aqui ele sai da fila (posicao absoluta no topo, centralizado) e a coluna
   ganha o mesmo respiro das outras.
   ========================================================================== */
.lower-showcase-redesign .offline-player-callout {
  position: relative;
}

/* Posicao absoluta nao pega aqui: alguma camada acima cria uma ancora
   invisivel e prende o numero nela. Entao ele fica no fluxo mesmo, em cima da
   etiqueta, e quem sobe e' o bloco inteiro (padding menor logo abaixo) para o
   conjunto cair na mesma altura das outras secoes. */
.offline-player-copy .visual-section-number {
  position: static;
  display: block;
  width: 100%;
  margin: 0 0 10px;
  /* caixa justa: com a altura de linha padrao sobrava espaco embaixo e o
     numero encostava na etiqueta */
  line-height: 0.78;
  text-align: center;
  pointer-events: none;
}

@media (max-width: 760px) {
  .lower-showcase-redesign .offline-player-callout {
    padding-top: 12px;
  }
}

/* O numero precisa se apoiar no BLOCO todo, nao na coluna de texto — senao
   ele desce junto com ela. */
/* O numero precisa se apoiar no BLOCO todo, nao na coluna de texto.
   "will-change" na coluna criava uma ancora invisivel e prendia o numero
   nela — por isso ele descia junto e ia parar embaixo da etiqueta. */
.lower-showcase-redesign .offline-player-copy {
  position: static;
  will-change: auto;
  filter: none;
}


/* ==========================================================================
   O QUADRADO DA ETIQUETA: CHEIO, COMO NAS HISTORIAS
   --------------------------------------------------------------------------
   Comparando no navegador com o da historia 07:

     historia  -> fundo SOLIDO na cor, simbolo escuro por dentro, sem borda,
                  sombra colorida embaixo (0 15px 32px).
     8 pra baixo -> fundo a 13%, borda de 1px, simbolo na cor.

   Ou seja: o de cima e' um bloco pintado e o de baixo era um contorno vazado.
   Por isso um tem peso e sombra e o outro parecia apagado. Agora sao iguais.
   ========================================================================== */
.lower-showcase-redesign .offline-player-callout .eyebrow > i,
.lower-showcase-redesign .protection-experience .eyebrow > i,
.lower-showcase-redesign .scanner-section .eyebrow > i,
.lower-showcase-redesign .playlist-business-section .eyebrow > i,
.lower-showcase-redesign .commerce-section .eyebrow > i,
.lower-showcase-redesign .services-section .eyebrow > i,
.lower-showcase-redesign .ease-section .eyebrow > i,
.lower-showcase-redesign .trust-section .eyebrow > i,
.lower-showcase-redesign .faq-section .eyebrow > i,
.lower-showcase-redesign .download-section .eyebrow > i {
  color: #07120e;
  border: 0;
  border-radius: 18px;
  background: var(--section-accent, #45d7ff);
  box-shadow:
    0 15px 32px color-mix(in srgb, var(--section-accent, #45d7ff) 20%, transparent),
    inset 0 1px rgba(255, 255, 255, 0.1);
}

/* o numero da 08 estava encostando na etiqueta por 3px */
.offline-player-copy .visual-section-number {
  margin-bottom: 16px;
  line-height: 0.72;
}


/* ==========================================================================
   AGORA SIM: OS MESMOS VALORES DA HISTORIA 07, COPIADOS DA REGRA DELA
   --------------------------------------------------------------------------
   A referencia esta' em ".lower-showcase-redesign .tool-story-label > span":

     width/height 46px · border 0 · border-radius 7px
     background: var(--story-color)   (cor CHEIA)
     color: #071018                   (simbolo escuro)
     box-shadow: 7px 8px 0 <cor 18%>  (sombra DURA, deslocada, sem borrao)
     font-size: 18px

   O que eu tinha feito era uma sombra macia (0 15px 32px) e canto de 18px —
   parecia outra coisa. Estes sao os numeros da propria 07.
   ========================================================================== */
.lower-showcase-redesign .offline-player-callout .eyebrow > i,
.lower-showcase-redesign .protection-experience .eyebrow > i,
.lower-showcase-redesign .scanner-section .eyebrow > i,
.lower-showcase-redesign .playlist-business-section .eyebrow > i,
.lower-showcase-redesign .commerce-section .eyebrow > i,
.lower-showcase-redesign .services-section .eyebrow > i,
.lower-showcase-redesign .ease-section .eyebrow > i,
.lower-showcase-redesign .trust-section .eyebrow > i,
.lower-showcase-redesign .faq-section .eyebrow > i,
.lower-showcase-redesign .download-section .eyebrow > i {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 7px;
  background: var(--section-accent, #45d7ff);
  color: #071018;
  box-shadow: 7px 8px 0 color-mix(in srgb, var(--section-accent, #45d7ff) 18%, transparent);
  font-size: 18px;
}

@media (max-width: 760px) {
  .lower-showcase-redesign .offline-player-callout .eyebrow > i,
  .lower-showcase-redesign .protection-experience .eyebrow > i,
  .lower-showcase-redesign .scanner-section .eyebrow > i,
  .lower-showcase-redesign .playlist-business-section .eyebrow > i,
  .lower-showcase-redesign .commerce-section .eyebrow > i,
  .lower-showcase-redesign .services-section .eyebrow > i,
  .lower-showcase-redesign .ease-section .eyebrow > i,
  .lower-showcase-redesign .trust-section .eyebrow > i,
  .lower-showcase-redesign .faq-section .eyebrow > i,
  .lower-showcase-redesign .download-section .eyebrow > i {
    width: 46px;
    height: 46px;
    border-radius: 7px;
    font-size: 18px;
  }
}


/* ==========================================================================
   09 e 10 (PROTECAO): entram no mesmo desenho
   --------------------------------------------------------------------------
   Estas duas nao usam ".eyebrow" como as vizinhas — usam ".protection-kicker",
   que ja' tem a estrutura certa (quadrado + texto ao lado), so' faltava a
   aparencia. Sao os mesmos numeros da historia 07.
   ========================================================================== */
.lower-showcase-redesign .protection-kicker > span {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 7px;
  background: var(--section-accent, #45e0a8);
  color: #071018;
  box-shadow: 7px 8px 0 color-mix(in srgb, var(--section-accent, #45e0a8) 18%, transparent);
  font-size: 18px;
  place-items: center;
}

.lower-showcase-redesign .protection-kicker > span > i {
  color: #071018;
  font-size: 18px;
}

.lower-showcase-redesign .protection-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
}

@media (max-width: 760px) {
  .lower-showcase-redesign .protection-kicker {
    /* No celular uma regra antiga empilhava (flex-direction: column): o
       quadrado ia para cima do texto. A referencia e' lado a lado. */
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: auto;
    margin-inline: auto;
    text-align: left;
  }
}


/* ==========================================================================
   O QUADRADO DA ETIQUETA NA DIAGONAL — DA 01 ATE' A ULTIMA
   --------------------------------------------------------------------------
   Mesmo giro para os tres tipos de marcacao que existem na pagina:
     .tool-story-label > span     -> historias 01 a 07
     .eyebrow > i                 -> 08, 11, 12, 13, 14, 15, 16, 17, 18
     .protection-kicker > span    -> 09 e 10

   O giro fica NO ELEMENTO, nao numa animacao: em aparelho com movimento
   desligado a animacao e' zerada e o efeito sumiria (ja' aconteceu com os
   simbolos flutuantes). A sombra dura de 7px 8px continua embaixo, e com o
   giro ela passa a ler como um bloco de verdade, nao um adesivo.
   ========================================================================== */
.lower-showcase-redesign .tool-story-label > span,
.lower-showcase-redesign .eyebrow > i,
.lower-showcase-redesign .protection-kicker > span {
  transform: perspective(520px) rotateX(-7deg) rotateY(15deg) rotate(-5deg);
  transform-origin: center;
}


/* ==========================================================================
   SECAO 10 (CACA-ANUNCIOS): a etiqueta descia demais
   --------------------------------------------------------------------------
   Medido no celular: a etiqueta da 09 comeca em 94px do topo do bloco; a da 10
   comecava em 144px. A diferenca vinha de um "padding-top: 70px" que existe so'
   nesta secao. Reduzido para as duas ficarem na mesma linha.
   ========================================================================== */
@media (max-width: 760px) {
  .lower-showcase-redesign .ad-experience .protection-experience-copy {
    padding-top: 20px;
  }
}


/* ==========================================================================
   11 — O GIRO SUAVE DE VERDADE
   --------------------------------------------------------------------------
   O papel sempre girou macio (transicao de 520ms). Quem saltava era a MOLDURA.

   Motivo: os cantos eram posicionados por variavel
   (--scanner-paper-half-width). Variavel do CSS nao interpola — ela troca de
   valor de um quadro para o outro. Entao o papel ia girando devagar e os
   quatro cantos pulavam para a posicao final de uma vez.

   Aqui as variaveis param quietas e o que muda e' a CONTA de cada canto. Conta
   com medida vira um comprimento normal, e comprimento o navegador sabe
   animar. Vale igual no computador e no celular, porque tudo sai da largura e
   da altura do papel daquela tela.
   ========================================================================== */
.scanner-visual.is-rotated {
  /* volta ao normal: quem manda agora sao as contas de cada canto */
  --scanner-paper-half-width: calc(var(--scanner-paper-width) / 2);
  --scanner-paper-half-height: calc(var(--scanner-paper-height) / 2);
}

.scanner-visual.is-rotated .corner.tl {
  top: calc(50% - var(--scanner-paper-width) / 2 * 0.76 - 3px);
  left: calc(50% - var(--scanner-paper-height) / 2 * 0.76 - 3px);
}

.scanner-visual.is-rotated .corner.tr {
  top: calc(50% - var(--scanner-paper-width) / 2 * 0.76 - 3px);
  right: calc(50% - var(--scanner-paper-height) / 2 * 0.76 - 3px);
}

.scanner-visual.is-rotated .corner.bl {
  bottom: calc(50% - var(--scanner-paper-width) / 2 * 0.76 - 3px);
  left: calc(50% - var(--scanner-paper-height) / 2 * 0.76 - 3px);
}

.scanner-visual.is-rotated .corner.br {
  right: calc(50% - var(--scanner-paper-height) / 2 * 0.76 - 3px);
  bottom: calc(50% - var(--scanner-paper-width) / 2 * 0.76 - 3px);
}

.scanner-visual.is-rotated .scan-line {
  left: calc(50% - var(--scanner-paper-height) / 2 * 0.76 - 12px);
  width: calc(var(--scanner-paper-height) * 0.76 + 24px);
}


/* ==========================================================================
   16 — UM ICONE SO'
   --------------------------------------------------------------------------
   Esta secao tinha DOIS simbolos: um escudo solto (".trust-shield") logo antes
   da etiqueta, e o cadeado dentro dela. Nas outras secoes existe apenas um.
   O escudo solto sai; fica o mesmo desenho das vizinhas.
   ========================================================================== */
.lower-showcase-redesign .trust-shield {
  display: none;
}


/* ==========================================================================
   LOJA — CELULAR: DOIS POR LINHA, PRODUTO INTEIRO, FRETE EM DESTAQUE
   --------------------------------------------------------------------------
   Tres coisas estavam contra a venda:

   1. Em tela pequena a vitrine virava UMA coluna: o cliente via um produto por
      vez e tinha que rolar muito para descobrir que existem outros.
   2. A foto usava "object-fit: cover" num quadro deitado (16/10). Produto de
      embalagem e' em pe', entao a imagem era cortada — aparecia metade do
      pendrive, sem a marca e sem a capacidade.
   3. "Frete gratis" era so' um texto no titulo, do mesmo tamanho do resto.

   Agora: duas colunas, foto INTEIRA (contain) num quadro em pe', e o frete
   gratis virou uma faixa verde com o caminhao.
   ========================================================================== */
.lower-showcase-redesign .product-showcase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* a foto mostra o produto todo, sem cortar */
.lower-showcase-redesign .shop-product-image {
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #101219, #07080d);
}

.lower-showcase-redesign .shop-product-image img {
  object-fit: contain;
  padding: 10px;
}

/* frete gratis: faixa verde com caminhao */
.frete-gratis {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px 6px 12px;
  gap: 9px;
  color: #06120d;
  border-radius: 999px;
  background: linear-gradient(135deg, #45e0a8, #30ed6a);
  box-shadow: 0 14px 30px rgba(48, 237, 106, 0.22);
  line-height: 1.15;
}

.frete-gratis svg {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
}

@media (max-width: 620px) {
  /* DOIS por linha, nao um embaixo do outro */
  .lower-showcase-redesign .product-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .lower-showcase-redesign .shop-product-image {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .lower-showcase-redesign .shop-product-copy { padding: 12px; }
  .lower-showcase-redesign .shop-product-copy h4 { font-size: 15px; line-height: 1.2; }
  .lower-showcase-redesign .shop-product-copy small { font-size: 9px; }
  .lower-showcase-redesign .shop-product-price { font-size: 15px; }
  .lower-showcase-redesign .shop-product-link { min-height: 36px; margin-top: 10px; padding-top: 9px; font-size: 11px; }
  .lower-showcase-redesign .shop-product-image > span { top: 7px; left: 7px; font-size: 8px; padding: 5px 8px; }

  .frete-gratis { padding: 5px 12px 5px 9px; gap: 7px; }
}

@media (max-width: 420px) {
  .lower-showcase-redesign .product-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .lower-showcase-redesign .shop-product-copy h4 { font-size: 14px; }
}


/* ==========================================================================
   FRETE GRATIS DENTRO DE CADA PRODUTO
   --------------------------------------------------------------------------
   E' informacao de venda: tem que estar no produto, junto do preco, e nao so'
   no titulo da secao. Verde com o caminhao, discreto o bastante para nao
   competir com o preco.
   ========================================================================== */
.shop-product-frete {
  display: inline-flex;
  align-items: center;
  margin: 8px 0 0;
  gap: 6px;
  color: #45e0a8;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

/* Mesmas medidas da loja: caminhao de 21px em verde, subido meio pixel porque
   o desenho ocupa a parte de baixo do quadro e fica pendurado sem isso. */
.shop-product-frete svg {
  width: 21px;
  height: 21px;
  flex: none;
  color: #15a34a;
  transform: translateY(-.5px);
}

@media (max-width: 620px) {
  .shop-product-frete { margin-top: 6px; font-size: 11.5px; }
  .shop-product-frete svg { width: 17px; height: 17px; }
}


/* ==========================================================================
   VITRINE: AS DUAS OPCOES DOS PENDRIVES
   --------------------------------------------------------------------------
   As mesmas da loja — "com musicas / sem musicas" e "sem jogos / com jogos de
   PS2". Tocar troca o preco na hora, sem sair da pagina.
   ========================================================================== */
.shop-product-opcoes {
  display: inline-grid;
  margin-top: 10px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}

.shop-opcao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 13px;
  gap: 6px;
  color: #aab2c4;
  border: 0;
  border-radius: 999px;
  background: none;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: color 260ms ease, background 320ms cubic-bezier(.16, 1, .3, 1);
}

.shop-opcao.is-on {
  color: #06120d;
  background: linear-gradient(135deg, #45e0a8, #30ed6a);
}

.shop-opcao-ic {
  width: 14px;
  height: 14px;
  flex: none;
}

@media (max-width: 620px) {
  .shop-product-opcoes { margin-top: 8px; padding: 2px; }
  .shop-opcao { padding: 6px 9px; gap: 4px; font-size: 9.5px; }
  .shop-opcao-ic { width: 12px; height: 12px; }
}




/* preco no cartao, logo abaixo do Pix — igual a loja */
.shop-product-cartao {
  margin: 2px 0 0;
  color: #7f8798;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 620px) {
  .shop-product-cartao { font-size: 10px; }
}


/* ==========================================================================
   GARANTIA: UMA VEZ SO', NO TOPO DA VITRINE
   --------------------------------------------------------------------------
   Dentro de cada produto isso virava repeticao e empurrava o botao de compra
   para baixo. Aqui e' dito uma vez, logo abaixo da chamada da vitrine, e vale
   para tudo que esta' embaixo. Verde, a cor da loja.
   ========================================================================== */
.loja-garantia {
  display: inline-flex;
  align-items: center;
  margin: 8px 0 0;
  gap: 8px;
  color: #45e0a8;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.loja-garantia svg {
  width: 19px;
  height: 19px;
  flex: none;
  color: #15a34a;
}

@media (max-width: 620px) {
  .loja-garantia { margin-top: 6px; gap: 6px; font-size: 11.5px; }
  .loja-garantia svg { width: 16px; height: 16px; }
}


/* ==========================================================================
   AS OPCOES DO PENDRIVE EM TELA PEQUENA
   --------------------------------------------------------------------------
   No celular o texto "Com jogos de PS2" quebrava em tres linhas e a pilula
   virava um bolo alto no meio do produto. Aqui as duas opcoes dividem a
   largura por igual, o texto fica numa linha so' e o botao volta a ter altura
   de botao.
   ========================================================================== */
.shop-product-opcoes {
  display: grid;
  width: 100%;
  margin-top: 10px;
  padding: 3px;
  gap: 3px;
  grid-template-columns: 1fr 1fr;
}

.shop-opcao {
  min-width: 0;
  padding: 8px 6px;
  gap: 5px;
  font-size: 10.5px;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 620px) {
  .shop-product-opcoes { margin-top: 8px; padding: 2px; gap: 2px; }
  .shop-opcao { padding: 7px 4px; gap: 3px; font-size: 9px; }
  .shop-opcao-ic { width: 11px; height: 11px; }
}

@media (max-width: 420px) {
  .shop-opcao { font-size: 8.5px; padding: 6px 3px; }
  /* nesta largura o desenho do controle nao cabe junto do texto */
  .shop-opcao-ic { display: none; }
}


/* ==========================================================================
   O BOTAO DA LOJA VAI PARA O FIM DA VITRINE
   --------------------------------------------------------------------------
   Ele estava no topo, antes de a pessoa ver um produto sequer. Quem chega na
   secao rola para ver o que tem; o convite para abrir a loja inteira faz
   sentido DEPOIS da vitrine, quando ela ja' viu os precos.
   ========================================================================== */
.store-final-cta {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.store-final-cta .store-primary-link {
  width: min(420px, 100%);
  justify-content: center;
}

@media (max-width: 620px) {
  .store-final-cta { margin-top: 16px; }
  .store-final-cta .store-primary-link { width: 100%; }
}


/* ==========================================================================
   GARANTIA: VIRA SELO, NAO LINHA DE TEXTO SOLTA
   --------------------------------------------------------------------------
   Antes era um texto verde perdido embaixo da chamada, sem peso nenhum. Agora
   e' um selo: fundo proprio, borda, escudo em destaque e o texto em duas
   alturas — a promessa em cima e o detalhe embaixo.
   ========================================================================== */
.loja-garantia {
  display: inline-grid;
  align-items: center;
  margin: 16px auto 0;
  padding: 11px 18px 11px 13px;
  gap: 12px;
  border: 1px solid rgba(69, 224, 168, 0.26);
  border-radius: 16px;
  background:
    radial-gradient(circle at 14% 30%, rgba(69, 224, 168, 0.14), transparent 46%),
    linear-gradient(135deg, rgba(10, 30, 24, 0.92), rgba(8, 14, 20, 0.94));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
  grid-auto-flow: column;
  text-align: left;
}

.loja-garantia svg {
  width: 34px;
  height: 34px;
  flex: none;
  padding: 7px;
  color: #06120d;
  border-radius: 11px;
  background: linear-gradient(135deg, #45e0a8, #30ed6a);
  box-shadow: 0 8px 18px rgba(48, 237, 106, 0.28);
}

.loja-garantia span {
  display: grid;
  gap: 2px;
  color: #d8fff0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.loja-garantia b {
  color: #7fe9c2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 620px) {
  .loja-garantia { margin-top: 12px; padding: 9px 14px 9px 10px; gap: 10px; border-radius: 14px; }
  .loja-garantia svg { width: 30px; height: 30px; padding: 6px; border-radius: 10px; }
  .loja-garantia span { font-size: 11.5px; }
  .loja-garantia b { font-size: 9.5px; }
}


/* selo e botao da loja: centralizados */
.loja-garantia {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-inline: auto;
}

.commerce-card .loja-garantia,
.store-card .loja-garantia {
  margin-left: auto;
  margin-right: auto;
}

.store-final-cta {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 22px;
}


/* ==========================================================================
   LOJA: TUDO CENTRALIZADO
   --------------------------------------------------------------------------
   Havia dois botoes para o mesmo destino ("Abrir a loja completa" e "Confira a
   vitrine completa", os dois indo para /produtos.html). Ficou o de baixo, que
   e' onde a pessoa chega depois de ver os produtos.

   E as categorias vinham encostadas na esquerda enquanto o resto da secao
   estava no centro.
   ========================================================================== */
.lower-showcase-redesign .store-category-row {
  justify-items: center;
  text-align: center;
}

.lower-showcase-redesign .store-category-row > span {
  align-items: center;
  justify-items: center;
  text-align: center;
}

.lower-showcase-redesign .storefront-header,
.lower-showcase-redesign .store-heading,
.lower-showcase-redesign .store-heading-primary,
.lower-showcase-redesign .store-heading-secondary {
  justify-items: center;
  text-align: center;
}

@media (max-width: 760px) {
  .lower-showcase-redesign .storefront-header,
  .lower-showcase-redesign .store-heading,
  .lower-showcase-redesign .store-category-row > span {
    justify-content: center;
  }
}


/* ==========================================================================
   SELO DE GARANTIA: MAIS FORTE
   --------------------------------------------------------------------------
   Escudo maior, borda mais viva e um brilho verde por tras — e' o argumento de
   confianca da loja, tem que puxar o olho antes dos produtos.
   ========================================================================== */
.loja-garantia {
  padding: 14px 22px 14px 15px;
  gap: 15px;
  border: 1px solid rgba(69, 224, 168, 0.42);
  border-radius: 20px;
  background:
    radial-gradient(circle at 14% 26%, rgba(69, 224, 168, 0.2), transparent 52%),
    linear-gradient(135deg, rgba(11, 38, 29, 0.96), rgba(8, 16, 22, 0.96));
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.36),
    0 0 34px rgba(48, 237, 106, 0.14),
    inset 0 1px rgba(255, 255, 255, 0.08);
}

.loja-garantia svg {
  width: 46px;
  height: 46px;
  padding: 9px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(48, 237, 106, 0.36);
}

.loja-garantia span {
  color: #eafff6;
  font-size: 15px;
}

.loja-garantia b {
  color: #45e0a8;
  font-size: 12px;
  letter-spacing: 0.08em;
}

@media (max-width: 620px) {
  .loja-garantia { padding: 11px 16px 11px 11px; gap: 12px; border-radius: 17px; }
  .loja-garantia svg { width: 40px; height: 40px; padding: 8px; border-radius: 12px; }
  .loja-garantia span { font-size: 13px; }
  .loja-garantia b { font-size: 10.5px; }
}


/* ==========================================================================
   SELO DE GARANTIA: MOVIMENTO QUE CHAMA SEM PISCAR
   --------------------------------------------------------------------------
   Regras seguidas (Emil Kowalski / design engineering):

   - So' "transform" e "opacity" sao animados. Sombra e fundo animados forcam o
     navegador a repintar; transform e opacity rodam fora da thread principal e
     ficam lisos ate' em celular fraco.
   - Movimento continuo pede "ease-in-out": comeca e termina devagar, sem
     solavanco no ponto de virada.
   - Nada de piscar. Sao 5 e 7 segundos, ciclos diferentes de proposito — quando
     dois ciclos nao batem, o olho nao consegue prever e o conjunto parece vivo
     em vez de repetido.
   - Passar o mouse so' vale onde existe mouse de verdade (@media hover).
   - Movimento reduzido nao vira "sem nada": fica so' a respiracao de luz, sem
     deslocamento.
   ========================================================================== */
.loja-garantia {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 260ms cubic-bezier(.23, 1, .32, 1);
}

/* brilho que respira atras do selo */
.loja-garantia::before {
  position: absolute;
  z-index: -1;
  content: "";
  inset: -40%;
  background: radial-gradient(circle at 18% 50%, rgba(48, 237, 106, 0.4), transparent 60%);
  opacity: 0.45;
  pointer-events: none;
  animation: selo-respira 5s ease-in-out infinite;
}

/* faixa de luz que atravessa o vidro de vez em quando */
.loja-garantia::after {
  position: absolute;
  z-index: 1;
  top: -60%;
  left: -60%;
  width: 40%;
  height: 220%;
  content: "";
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  pointer-events: none;
  transform: translateX(-120%) rotate(14deg);
  animation: selo-brilho 7s cubic-bezier(.45, 0, .35, 1) infinite;
}

.loja-garantia svg {
  animation: selo-escudo 5s ease-in-out infinite;
}

@keyframes selo-respira {
  0%, 100% { opacity: 0.32; transform: scale(1); }
  50%      { opacity: 0.6;  transform: scale(1.06); }
}

@keyframes selo-escudo {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%      { transform: scale(1.07) rotate(-3deg); }
}

@keyframes selo-brilho {
  0%, 62%  { transform: translateX(-120%) rotate(14deg); }
  86%, 100% { transform: translateX(560%) rotate(14deg); }
}

@media (hover: hover) and (pointer: fine) {
  .loja-garantia:hover { transform: scale(1.025); }
}

@media (prefers-reduced-motion: reduce) {
  /* sem deslocamento: fica so' a luz respirando, que ainda chama o olho */
  .loja-garantia::after { animation: none; opacity: 0; }
  .loja-garantia svg { animation: none; }
  .loja-garantia::before { animation: selo-respira-suave 6s ease-in-out infinite; }
}

@keyframes selo-respira-suave {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 0.55; }
}


/* ==========================================================================
   LOJA: CABECALHO CENTRALIZADO E SEM CAIXA DENTRO DE CAIXA
   --------------------------------------------------------------------------
   1. O cabecalho era uma grade de duas colunas: o titulo de um lado e o texto
      do outro. Vira uma coluna so', tudo no centro.
   2. Os produtos viviam dentro de um cartao (.commerce-card) que ja' estava
      dentro da secao — caixa dentro de caixa, com borda e fundo repetidos.
      O cartao perde a moldura e a vitrine passa a respirar na propria secao.
   ========================================================================== */
.lower-showcase-redesign .store-heading {
  display: grid;
  justify-items: center;
  grid-template-columns: 1fr;
  gap: 14px;
  text-align: center;
}

.lower-showcase-redesign .store-heading-primary,
.lower-showcase-redesign .store-heading-secondary {
  display: grid;
  justify-items: center;
  width: 100%;
  max-width: 760px;
  text-align: center;
}

.lower-showcase-redesign .store-heading .section-kicker-row {
  justify-content: center;
}

.lower-showcase-redesign .commerce-card.store-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lower-showcase-redesign .store-card .storefront-header {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.lower-showcase-redesign .store-card .storefront-badge {
  margin-inline: auto;
}

/* a fileira de categorias tambem sai da caixa */
.lower-showcase-redesign .store-category-row {
  border: 0;
  background: transparent;
}


/* "Ver todos" tambem no centro, abaixo do titulo da vitrine */
.lower-showcase-redesign .store-card .storefront-header,
.lower-showcase-redesign .storefront-header {
  display: grid !important;
  justify-items: center;
  grid-template-columns: 1fr !important;
  gap: 12px;
  text-align: center;
}

.lower-showcase-redesign .storefront-badge {
  justify-self: center;
  margin-inline: auto;
}

.lower-showcase-redesign .storefront-heading {
  display: grid;
  justify-items: center;
  text-align: center;
}


/* ==========================================================================
   "FUNCIONA SEM INTERNET" DESCE
   --------------------------------------------------------------------------
   Estava com bottom: 5px, ou seja, dentro do cartao — bem em cima da fileira
   de botoes do reprodutor. Agora ele desce e fica pendurado na borda de baixo,
   sem tapar o play.
   ========================================================================== */
.offline-badge-large {
  bottom: -30px;
}

@media (max-width: 900px) {
  .offline-badge-large { bottom: -24px; right: -10px; }
}

@media (max-width: 620px) {
  .offline-badge-large { position: relative; right: auto; bottom: auto; margin: 18px auto 0; }
}


/* Conta feita medindo no navegador: os botoes do reprodutor terminam em 445px
   do topo do cartao e o selo tem 101px de altura. Para ele comecar 14px
   ABAIXO dos botoes, precisa ficar 90px abaixo da borda do cartao. */
.offline-badge-large {
  bottom: -90px;
}

@media (max-width: 900px) {
  .offline-badge-large { bottom: -84px; right: -8px; }
}


/* ==========================================================================
   VITRINE: TEXTO E ICONES MAIORES
   --------------------------------------------------------------------------
   Ele leu de oculos e nao enxergou. Categoria, nome, preco, frete e o botao
   sobem de tamanho, e a etiqueta da foto deixa de ser miniatura.
   ========================================================================== */
.lower-showcase-redesign .shop-product-copy { padding: 20px; }

.lower-showcase-redesign .shop-product-copy small {
  font-size: 12px;
  letter-spacing: 0.1em;
}

.lower-showcase-redesign .shop-product-copy h4 {
  margin-top: 4px;
  font-size: 23px;
  line-height: 1.2;
}

.lower-showcase-redesign .shop-product-price {
  font-size: 22px;
}

.lower-showcase-redesign .shop-product-price small {
  font-size: 13px;
}

.lower-showcase-redesign .shop-product-cartao {
  font-size: 14px;
}

.shop-product-frete {
  font-size: 14.5px;
  gap: 8px;
}

.shop-product-frete svg {
  width: 24px;
  height: 24px;
}

.lower-showcase-redesign .shop-product-link {
  min-height: 48px;
  font-size: 14px;
}

.lower-showcase-redesign .shop-product-image > span {
  padding: 8px 13px;
  gap: 7px;
  font-size: 12px;
}

.lower-showcase-redesign .shop-product-image > span i {
  font-size: 14px;
}

.shop-opcao { font-size: 12.5px; padding: 10px 8px; }

@media (max-width: 620px) {
  .lower-showcase-redesign .shop-product-copy { padding: 13px; }
  .lower-showcase-redesign .shop-product-copy small { font-size: 10px; }
  .lower-showcase-redesign .shop-product-copy h4 { font-size: 16px; }
  .lower-showcase-redesign .shop-product-price { font-size: 17px; }
  .lower-showcase-redesign .shop-product-price small { font-size: 10.5px; }
  .lower-showcase-redesign .shop-product-cartao { font-size: 11.5px; }
  .shop-product-frete { font-size: 11.5px; gap: 6px; }
  .shop-product-frete svg { width: 19px; height: 19px; }
  .lower-showcase-redesign .shop-product-link { min-height: 42px; font-size: 12px; }
  .lower-showcase-redesign .shop-product-image > span { padding: 6px 9px; font-size: 9.5px; }
  .shop-opcao { font-size: 10px; padding: 8px 5px; }
}

/* ==========================================================================
   O NUMERO 18 SAI DE TRAS DA ETIQUETA
   --------------------------------------------------------------------------
   ".inline-section-number" ficava por baixo do texto "LOJA DE PRODUTOS" e os
   dois se misturavam. Ele passa a ficar ACIMA, como nas outras secoes.
   ========================================================================== */
.section-kicker-row {
  display: grid;
  justify-items: center;
  gap: 6px;
}

.inline-section-number {
  position: static;
  display: block;
  line-height: 0.8;
  text-align: center;
}


/* A regra da casa e' ".lower-showcase-redesign .shop-product-copy p", que tem
   um seletor de tipo no fim e por isso pesa mais que ".shop-product-price".
   Aqui os seletores ganham a mesma cadeia e passam a valer. */
.lower-showcase-redesign .shop-product-copy .shop-product-price {
  font-size: 22px;
  line-height: 1.15;
}

.lower-showcase-redesign .shop-product-copy .shop-product-price small {
  font-size: 13px;
}

.lower-showcase-redesign .shop-product-copy .shop-product-cartao {
  font-size: 14px;
}

.lower-showcase-redesign .shop-product-copy .shop-product-frete {
  font-size: 14.5px;
}

@media (max-width: 620px) {
  .lower-showcase-redesign .shop-product-copy .shop-product-price { font-size: 17px; }
  .lower-showcase-redesign .shop-product-copy .shop-product-price small { font-size: 10.5px; }
  .lower-showcase-redesign .shop-product-copy .shop-product-cartao { font-size: 11.5px; }
  .lower-showcase-redesign .shop-product-copy .shop-product-frete { font-size: 11.5px; }
}


/* ==========================================================================
   TELA GRANDE: O NUMERO NASCE COLADO NA ETIQUETA
   --------------------------------------------------------------------------
   O numero era desenhado no canto da SECAO e a etiqueta ficava na coluna do
   texto. Como as historias alternam de lado, em 7 das 17 secoes os dois caiam
   em cantos opostos — o numero de um lado da tela e o icone do outro.

   Remendar seccao por secao ia quebrar de novo no proximo bloco novo. Aqui o
   numero passa a ser desenhado pela PROPRIA etiqueta (o contador do CSS pode
   ser lido por qualquer descendente), logo acima dela. Assim eles nao tem como
   se separar, esteja a coluna do texto onde estiver.
   ========================================================================== */
@media (min-width: 761px) {
  .lower-showcase-redesign .tool-story::after,
  .lower-showcase-redesign .protection-experience::after,
  .lower-showcase-redesign .scanner-section::after,
  .lower-showcase-redesign .playlist-business-section::after,
  .lower-showcase-redesign .commerce-section::after,
  .lower-showcase-redesign .services-section::after,
  .lower-showcase-redesign .trust-section::after,
  .lower-showcase-redesign .tools-section::after {
    display: none;
  }

  .lower-showcase-redesign .tool-story-label,
  .lower-showcase-redesign .protection-kicker,
  .lower-showcase-redesign .scanner-section .eyebrow,
  .lower-showcase-redesign .playlist-business-section .eyebrow,
  .lower-showcase-redesign .commerce-section .eyebrow,
  .lower-showcase-redesign .services-section .eyebrow,
  .lower-showcase-redesign .trust-section .eyebrow {
    position: relative;
    margin-top: clamp(70px, 7vw, 96px);
  }

  .lower-showcase-redesign .tool-story-label::before,
  .lower-showcase-redesign .protection-kicker::before,
  .lower-showcase-redesign .scanner-section .eyebrow::before,
  .lower-showcase-redesign .playlist-business-section .eyebrow::before,
  .lower-showcase-redesign .commerce-section .eyebrow::before,
  .lower-showcase-redesign .services-section .eyebrow::before,
  .lower-showcase-redesign .trust-section .eyebrow::before {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 8px;
    content: counter(lower-section, decimal-leading-zero);
    color: color-mix(in srgb, var(--section-accent, var(--story-color, #45d7ff)) 30%, transparent);
    font-family: var(--display);
    font-size: clamp(76px, 8vw, 112px);
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    line-height: 0.8;
    pointer-events: none;
  }
}


/* O 08 e' escrito no HTML; deixa ele com a mesma aparencia e o mesmo lugar dos
   numeros que o CSS desenha: encostado a' esquerda, logo acima da etiqueta, na
   mesma opacidade. */
@media (min-width: 761px) {
  .offline-player-copy .visual-section-number {
    width: auto;
    margin: 0 0 8px;
    color: color-mix(in srgb, var(--section-accent, #45e0a8) 30%, transparent);
    -webkit-text-fill-color: color-mix(in srgb, var(--section-accent, #45e0a8) 30%, transparent);
    font-size: clamp(76px, 8vw, 112px);
    line-height: 0.8;
    text-align: left;
  }
}


/* ==========================================================================
   A SECAO "OLHOU. TOCOU. RESOLVEU." SAI DA CONTAGEM
   --------------------------------------------------------------------------
   Ela contava um numero da sequencia mas nunca mostrava nenhum — e' aviso, nao
   e' ferramenta. Por causa dela a Seguranca aparecia como 16 em vez de 15 e
   tudo depois ficava um numero adiantado.
   ========================================================================== */
.lower-showcase-redesign .ease-section {
  counter-increment: none;
}


/* ==========================================================================
   SO' FERRAMENTA RECEBE NUMERO
   --------------------------------------------------------------------------
   A sequencia numera o que o aplicativo FAZ. Loja, servicos, seguranca,
   duvidas, download e o aviso "Olhou. Tocou. Resolveu." nao sao ferramentas:
   saem da contagem e nao mostram numero. Assim a sequencia vai de 01 a 14 sem
   buraco e sem numero em bloco que nao e' funcao.
   ========================================================================== */
.lower-showcase-redesign .ease-section,
.lower-showcase-redesign .trust-section,
.lower-showcase-redesign .faq-section,
.lower-showcase-redesign .download-section {
  counter-increment: none;
}

.lower-showcase-redesign .trust-section::after,
.lower-showcase-redesign .faq-section::after,
.lower-showcase-redesign .download-section::after,
.lower-showcase-redesign .trust-section .eyebrow::before,
.lower-showcase-redesign .faq-section .eyebrow::before,
.lower-showcase-redesign .download-section .eyebrow::before {
  content: none;
  display: none;
}

.inline-section-number,
.standalone-section-number {
  display: none;
}

/* sem o numero, a etiqueta dessas secoes nao precisa mais do espaco em cima */
.lower-showcase-redesign .trust-section .eyebrow,
.lower-showcase-redesign .faq-section .eyebrow,
.lower-showcase-redesign .download-section .eyebrow {
  margin-top: 0;
}


/* ==========================================================================
   LOJA = 15, SERVICOS = 16
   --------------------------------------------------------------------------
   A sequencia numera as 14 ferramentas e segue para os dois blocos de venda:
   a loja e os servicos. Continuam FORA da conta, por nao serem funcao do
   aplicativo: o aviso "Olhou. Tocou. Resolveu.", a Seguranca, as Duvidas e o
   Download.
   ========================================================================== */


/* ==========================================================================
   TITULO GRANDE DE SECAO: ENTRELINHA COM AR
   --------------------------------------------------------------------------
   Estava em 1.04. Num titulo de uma linha passa, mas o da loja quebra em tres
   ou quatro linhas no celular e as letras de baixo encostavam nas de cima —
   ficava dificil de ler. 1.12 e o bastante para separar sem afrouxar o bloco.
   ========================================================================== */
.lower-showcase-redesign #store-title,
.lower-showcase-redesign .services-section h2,
.lower-showcase-redesign .commerce-section h2 {
  line-height: 1.12;
}


/* ==========================================================================
   CELULAR: O NUMERO DA LOJA E DOS SERVICOS GRUDA NA ETIQUETA
   --------------------------------------------------------------------------
   O numero era desenhado colado no TOPO da secao (`top: 18px`), mas essas duas
   tem folga de sobra em cima (126px de respiro, contra 88px das outras). Com
   isso o 15 ficava a 132px da etiqueta — mais que o dobro da distancia das
   outras secoes, que e de 22px.

   Consertar com um numero fixo ia quebrar de novo no proximo ajuste de
   respiro. Aqui o numero passa a ser desenhado pela PROPRIA etiqueta, logo
   acima dela: a distancia e sempre a mesma, mexa-se o respiro que mexer.
   ========================================================================== */
@media (max-width: 760px) {
  .lower-showcase-redesign .commerce-section:not(.x)::after,
  .lower-showcase-redesign .services-section:not(.x)::after {
    display: none;
  }

  .lower-showcase-redesign .commerce-section .eyebrow,
  .lower-showcase-redesign .services-section .eyebrow {
    position: relative;
  }

  .lower-showcase-redesign .commerce-section .eyebrow::before,
  .lower-showcase-redesign .services-section .eyebrow::before {
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    /* 22px e a distancia real das outras secoes no celular — medida com
       offsetTop, porque getBoundingClientRect vem torto enquanto a animacao
       de entrada ainda esta empurrando o bloco */
    margin-bottom: 22px;
    content: counter(lower-section, decimal-leading-zero);
    color: color-mix(in srgb, var(--section-accent, var(--story-color, #45d7ff)) 46%, #07101a);
    font-family: var(--display);
    font-size: 58px;
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    line-height: 0.82;
    pointer-events: none;
    transform: translateX(-50%);
  }
}


/* ==========================================================================
   TELA GRANDE: LOJA E SERVICOS COM ICONE MAIOR E TUDO NO CENTRO
   --------------------------------------------------------------------------
   Estas duas secoes sao as unicas com o bloco de abertura centralizado. Nelas:

   1. O icone da etiqueta era do mesmo tamanho do das historias (48px), so que
      ali ele divide a tela com um numero de 102px e um titulo enorme — ficava
      miudo. Sobe para 66px, mantendo o desenho da casa: canto de 7px na mesma
      proporcao (10px) e a sombra DURA deslocada, sem borrao.
   2. A etiqueta estava em 11px. Ninguem le 11px ao lado de um titulo de 80px.
   3. O numero era desenhado no canto ESQUERDO da etiqueta (heranca das
      historias, que sao alinhadas a esquerda). Numa secao centralizada ele
      ficava puxado para o lado. Agora nasce no centro, como o resto.
   ========================================================================== */
@media (min-width: 761px) {
  .lower-showcase-redesign .commerce-section .eyebrow > i,
  .lower-showcase-redesign .services-section .eyebrow > i {
    width: 66px;
    height: 66px;
    border-radius: 10px;
    font-size: 25px;
  }

  .lower-showcase-redesign .commerce-section .eyebrow > i {
    box-shadow: 9px 11px 0 color-mix(in srgb, var(--section-accent, #ff6a2a) 18%, transparent);
  }

  .lower-showcase-redesign .services-section .eyebrow > i {
    box-shadow: 9px 11px 0 color-mix(in srgb, var(--section-accent, #c28aff) 18%, transparent);
  }

  .lower-showcase-redesign .commerce-section .eyebrow,
  .lower-showcase-redesign .services-section .eyebrow {
    gap: 17px;
    font-size: 14px;
  }

  /* o numero nasce no centro, igual ao resto do bloco */
  .lower-showcase-redesign .commerce-section .eyebrow::before,
  .lower-showcase-redesign .services-section .eyebrow::before {
    left: 50%;
    transform: translateX(-50%);
  }
}


/* ==========================================================================
   TELA GRANDE: O TITULO DA LOJA GANHA DESTAQUE
   --------------------------------------------------------------------------
   Estava com `max-width: 12ch` — 379px de largura numa faixa de 1180px. A
   frase quebrava em QUATRO linhas e o titulo, de 55px, sumia perto do numero
   de 102px que fica logo acima. Para comparar: o titulo de Servicos, na secao
   seguinte, e de 92px em uma linha so.

   Agora: corpo maior, espaco entre letras fechado como nos titulos grandes do
   site, e largura suficiente para a frase quebrar so onde tem o <br> — duas
   linhas. A segunda ganha a cor da secao, do mesmo jeito que a primeira dobra
   do site pinta a segunda parte do titulo.
   ========================================================================== */
@media (min-width: 761px) {
  .lower-showcase-redesign .store-heading h2 {
    max-width: min(1000px, 100%);
    font-size: clamp(58px, 5.6vw, 84px);
    letter-spacing: -0.03em;
    line-height: 1.06;
  }

  .lower-showcase-redesign .store-heading h2 > span {
    color: var(--section-accent, #ff6a2a);
  }

  .lower-showcase-redesign .store-heading-secondary p {
    max-width: 620px;
    font-size: 18px;
  }
}


/* ==========================================================================
   A MALETA FICA RETA
   --------------------------------------------------------------------------
   A inclinacao 3D (`rotateX -7 / rotateY 15 / rotate -5`) foi feita para as
   PLACAS coloridas: o quadrado cheio de cor com a sombra dura atras. Ali a
   inclinacao le como profundidade, o objeto tem volume.

   Duas etiquetas nao tem placa nenhuma — sao so o simbolo solto, sem fundo e
   sem sombra: a da primeira dobra ("Musica, videos, protecao e muito mais") e
   a do titulo das ferramentas ("Uma caixa de ferramentas no seu celular").
   Nas duas o simbolo e a mesma maleta, e sem a placa por tras a inclinacao
   nao vira profundidade: vira desenho torto.

   Aqui as duas voltam a ficar retas. As placas continuam inclinadas.
   ========================================================================== */
.lower-showcase-redesign .hero-copy > .eyebrow > i,
.lower-showcase-redesign .tools-section .section-heading > .eyebrow > i {
  transform: none;
}


/* ==========================================================================
   SCANNER: TEXTO NA ESQUERDA, PREVIA NA DIREITA
   --------------------------------------------------------------------------
   So troca o lado. As duas colunas continuam com a MESMA largura de antes: a
   do texto era a maior (1.08fr) e continua sendo, so que agora na frente.
   Por isso a conta das colunas inverte junto com a ordem — sem isso o texto
   ia ganhar a coluna estreita e a linha quebraria diferente.

   O numero 11 nao precisa de regra: ele e desenhado pela propria etiqueta,
   entao vai junto com o texto.
   ========================================================================== */
@media (min-width: 761px) {
  .lower-showcase-redesign .scanner-grid {
    grid-template-columns: 1.08fr 0.92fr;
  }

  .lower-showcase-redesign .scanner-grid > .scanner-copy { order: 1; }
  .lower-showcase-redesign .scanner-grid > .scanner-visual { order: 2; }
}


/* ==========================================================================
   PLAYLIST: TEXTO NA DIREITA, PREVIA NA ESQUERDA
   --------------------------------------------------------------------------
   So troca o lado. As colunas tambem invertem a conta (era 0.88fr para o
   texto e 1.12fr para a previa) para cada um continuar com a MESMA largura de
   antes, so que do outro lado. Sem isso o texto ganharia a coluna larga e o
   titulo quebraria diferente.

   O numero 12 nao precisa de regra: quem desenha ele e a propria etiqueta,
   entao vai junto com o texto.
   ========================================================================== */
@media (min-width: 761px) {
  .lower-showcase-redesign .playlist-business-grid {
    grid-template-columns: 1.12fr 0.88fr;
  }

  .lower-showcase-redesign .playlist-business-grid > .playlist-business-art { order: 1; }
  .lower-showcase-redesign .playlist-business-grid > .playlist-business-copy { order: 2; }
}


/* ==========================================================================
   SCANNER: O CELULAR DESCE E CHEGA PARA A ESQUERDA
   --------------------------------------------------------------------------
   Ele ficava colado no alto e encostado na borda direita, longe do texto.
   Agora desce 28px e anda 56px para a esquerda, aproximando do texto.

   Feito com MARGEM, nao com `position: relative` nem com `transform`:
     - `transform` e' onde mora o giro que o mouse controla; mexer ali brigaria
       com o movimento;
     - `position: relative` no celular mudaria a ancora das pecas soltas que
       vivem dentro dele (moldura, papel, cantos) e bagunçaria a demonstracao.

   A etiqueta "PDF pronto" anda junto na mesma medida, senao ela ficaria
   sozinha no canto onde o celular estava.
   ========================================================================== */
@media (min-width: 761px) {
  .lower-showcase-redesign .scanner-phone {
    /* `translate` separado de proposito: o `transform` do celular e' onde
       mora o giro que o mouse controla, e o navegador soma os dois. Assim o
       deslocamento nao briga com o movimento.
       (Com margem o desvio saia pela metade: item centralizado na grade
       divide a margem entre os dois lados.) */
    translate: -56px 28px;
  }

  .lower-showcase-redesign .pdf-float {
    /* medido: com estes dois valores a etiqueta fica na MESMA posicao em
       relacao ao celular que tinha antes de ele andar (198px para o lado,
       485px abaixo do topo dele) */
    right: 52px;
    bottom: 43px;
  }
}


/* ==========================================================================
   SOUNDCLOUD E X: AS DUAS FUNCOES NOVAS
   --------------------------------------------------------------------------
   Duas historias novas, cada uma ao lado da irma: o SoundCloud junto do
   "achar musica", o X junto do "baixar das redes".

   As cores sao as REAIS das duas plataformas. O laranja do SoundCloud e o
   #ff5500 da marca. O X e branco — o que num fundo escuro funciona, mas exige
   cuidado em tudo que usa a cor como FUNDO: por isso o texto em cima dele
   nunca e branco, e sim escuro.
   ========================================================================== */
.tool-story-orange { --story-color: #ff5500; --story-glow: rgba(255, 85, 0, 0.17); }
.tool-story-white  { --story-color: #e7e9ea; --story-glow: rgba(231, 233, 234, 0.12); }

.soundcloud-story-visual {
  padding: 30px;
  background:
    radial-gradient(circle at 50% 4%, rgba(255, 85, 0, 0.15), transparent 20rem),
    linear-gradient(150deg, #1d1511, #0a0b10);
}

.x-story-visual {
  padding: 30px;
  background:
    radial-gradient(circle at 50% 4%, rgba(231, 233, 234, 0.085), transparent 20rem),
    linear-gradient(150deg, #16181c, #08090c);
}

/* o cabecalho e o mesmo desenho das outras historias */
.soundcloud-story-visual > header,
.x-story-visual > header { display: flex; align-items: center; gap: 12px; }

.soundcloud-story-visual > header > span,
.x-story-visual > header > span {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  color: var(--story-color);
  border-radius: 16px;
  background: color-mix(in srgb, var(--story-color) 13%, transparent);
  font-size: 22px;
  place-items: center;
}

.soundcloud-story-visual > header > div,
.x-story-visual > header > div { display: grid; flex: 1; gap: 4px; }

.soundcloud-story-visual header small,
.x-story-visual header small { color: var(--story-color); font-size: 9px; font-weight: 900; letter-spacing: 0.08em; }

.soundcloud-story-visual header strong,
.x-story-visual header strong { font-size: 16px; }

/* o certinho verde de "reconhecido" */
.soundcloud-story-visual > header > em,
.x-story-visual > header > em {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: #45e0a8;
  border: 1px solid rgba(69, 224, 168, 0.32);
  border-radius: 50%;
  background: rgba(69, 224, 168, 0.1);
  font-size: 12px;
  font-style: normal;
  place-items: center;
}

/* ------------------------------------------------------------------ a onda
   O desenho de ondas e a marca registrada do SoundCloud: quem usa reconhece
   a tela antes de ler qualquer palavra. A parte da esquerda e a que ja tocou.
   As alturas vem escritas no proprio HTML — sao 30 valores, e no CSS isso
   viraria 30 regras nth-child so para desenhar um som. */
.sc-story-wave {
  display: flex;
  align-items: flex-end;
  height: 108px;
  margin-top: 24px;
  padding: 0 2px;
  gap: 3px;
}

.sc-story-wave i {
  height: var(--h, 40%);
  flex: 1 1 0;
  border-radius: 2px 2px 0 0;
  animation: sc-wave 1.6s var(--d, 0s) ease-in-out infinite;
  transform-origin: bottom;
}

.sc-story-wave i.on  { background: linear-gradient(180deg, #ff8a4c, var(--story-color)); }
.sc-story-wave i.off { background: rgba(255, 255, 255, 0.14); animation: none; }

@keyframes sc-wave {
  0%, 100% { transform: scaleY(0.6); }
  50%      { transform: scaleY(1); }
}

/* --------------------------------------------------------------- a faixa */
.sc-story-track,
.x-story-post {
  display: flex;
  align-items: center;
  margin-top: 18px;
  padding: 12px 14px;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.sc-story-art {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  /* o texto em cima do laranja e escuro, nao branco: em cor de marca clara o
     branco no branco some — foi exatamente o que aconteceu no aplicativo */
  color: #1a0d05;
  border-radius: 13px;
  background: linear-gradient(145deg, #ff8a4c, var(--story-color));
  font-size: 21px;
  place-items: center;
}

.sc-story-track > div { display: grid; flex: 1; gap: 4px; }
.sc-story-track b { font-size: 13px; }
.sc-story-track small { color: var(--muted-2); font-size: 10px; }

.sc-story-track > em {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  color: var(--story-color);
  border: 1px solid color-mix(in srgb, var(--story-color) 26%, transparent);
  border-radius: 50%;
  background: color-mix(in srgb, var(--story-color) 10%, transparent);
  font-size: 12px;
  font-style: normal;
  place-items: center;
}

/* ------------------------------------------------------------ o andamento
   Cresce com transform, e nao com largura: mexer na largura obriga a pagina a
   refazer a conta do tamanho a cada quadro. */
.sc-story-bar {
  height: 6px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.sc-story-bar i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--story-color) 55%, transparent), var(--story-color));
  animation: sc-fill 2.6s cubic-bezier(0.23, 1, 0.32, 1) infinite;
  transform: scaleX(0.05);
  transform-origin: left center;
}

@keyframes sc-fill {
  0%        { transform: scaleX(0.05); }
  72%, 100% { transform: scaleX(1); }
}

.soundcloud-story-visual > footer,
.x-story-visual > footer {
  display: flex;
  align-items: center;
  margin-top: 14px;
  gap: 8px;
  color: #45e0a8;
  font-size: 12px;
  font-weight: 700;
}

/* ------------------------------------------------------------- o post do X
   Sem texto inventado dentro do post: duas barras no lugar das linhas. Um
   post de mentira com nome e frase escritos passaria por post de verdade. */
.x-story-post { margin-top: 24px; }

.x-story-avatar {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  color: #0a0b0d;
  border-radius: 50%;
  background: var(--story-color);
  font-size: 17px;
  place-items: center;
}

.x-story-line { display: grid; flex: 1; gap: 8px; }
.x-story-line i { height: 9px; border-radius: 999px; background: rgba(255, 255, 255, 0.13); }
.x-story-line i:first-child { width: 46%; background: rgba(255, 255, 255, 0.24); }
.x-story-line i:last-child  { width: 78%; }

.x-story-frame {
  position: relative;
  display: grid;
  margin-top: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 46%, rgba(231, 233, 234, 0.1), transparent 62%),
    linear-gradient(160deg, #22262c, #0b0d11);
  place-items: center;
}

.x-story-play {
  display: grid;
  width: 60px;
  height: 60px;
  /* o triangulo nasce fora do centro do circulo; 4px o trazem de volta */
  padding-left: 4px;
  color: #0a0b0d;
  border-radius: 50%;
  background: var(--story-color);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  font-size: 20px;
  place-items: center;
}

.x-story-quality {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 5px 10px;
  color: #0a0b0d;
  border-radius: 8px;
  background: var(--story-color);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

/* o brilho que atravessa devagar: o quadro parado parecia imagem quebrada */
.x-story-shine {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.09) 50%, transparent 62%);
  animation: x-shine 4.2s ease-in-out infinite;
  pointer-events: none;
  transform: translateX(-100%);
}

@keyframes x-shine {
  0%, 55% { transform: translateX(-100%); }
  100%    { transform: translateX(100%); }
}

@media (max-width: 760px) {
  .soundcloud-story-visual,
  .x-story-visual { padding: 22px; }
  .sc-story-wave { height: 86px; margin-top: 20px; }
  .x-story-play { width: 52px; height: 52px; font-size: 17px; }
}

/* quem pediu menos movimento no aparelho nao ve nada se mexendo aqui */
@media (prefers-reduced-motion: reduce) {
  .sc-story-wave i,
  .sc-story-bar i,
  .x-story-shine { animation: none; }
  .sc-story-bar i { transform: scaleX(1); }
  .x-story-shine { opacity: 0; }
}


/* ==========================================================================
   SELO DO SOUNDCLOUD NA MAQUETE DO CELULAR
   --------------------------------------------------------------------------
   Ele fica numa fileira propria embaixo das outras tres. Nao e' capricho: na
   quarta posicao da MESMA linha o nome "SoundCloud" saia pela metade — foi o
   que aconteceu no aplicativo, e a maquete copia a tela como ela e'.

   O desenho vem da fonte de marcas (o mesmo arquivo que ja desenha o YouTube
   e o WhatsApp aqui), e nao de um PNG, porque as outras plataformas tem
   imagem pronta na pasta e o SoundCloud nao tem. A medida em `cqw` deixa ele
   do mesmo tamanho das imagens vizinhas, mexa-se o celular que mexer.
   ========================================================================== */
.apk-ui-brands-extra { min-height: 0; margin-top: 1.8cqw; }

.apk-ui-brands .soundcloud {
  /* laranja clareado, como o vermelho do YouTube ali do lado: a cor cheia da
     marca fica escura demais em cima do chip preto */
  color: #ff9a5e;
  border-color: rgba(255, 85, 0, 0.4);
}

.apk-ui-brands span > i {
  display: block;
  flex: 0 0 auto;
  font-size: 5.2cqw;
  line-height: 1;
}
