:root {
  --bg: #060b18;
  --bg-panel: #0c1630;
  --bg-panel-2: #101d3d;
  --line: rgba(140, 168, 220, 0.14);
  --blue: #2f6bff;
  --blue-bright: #5f8bff;
  --blue-soft: #6fa8ff;
  --ice: #eaf2ff;
  --muted: #8ca0c7;
  --amber: #f4b740;
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: calc(var(--p, 0) * 100%);
  background: linear-gradient(90deg, var(--blue), var(--blue-soft), #93c5fd);
  z-index: 1000;
  pointer-events: none;
}

body {
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(47, 107, 255, 0.25), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(47, 107, 255, 0.12), transparent 55%),
    var(--bg);
  color: var(--ice);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}

h1,
h2,
h3,
.display {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

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

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

@media(prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* SCROLL REVEAL */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2, .7, .3, 1), transform .7s cubic-bezier(.2, .7, .3, 1);
}

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

[data-reveal-group]>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s cubic-bezier(.2, .7, .3, 1), transform .6s cubic-bezier(.2, .7, .3, 1);
}

[data-reveal-group].in>* {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-group].in>*:nth-child(1) {
  transition-delay: .05s;
}

[data-reveal-group].in>*:nth-child(2) {
  transition-delay: .15s;
}

[data-reveal-group].in>*:nth-child(3) {
  transition-delay: .25s;
}

[data-reveal-group].in>*:nth-child(4) {
  transition-delay: .35s;
}

[data-reveal-group].in>*:nth-child(5) {
  transition-delay: .45s;
}

[data-reveal-group]>.plan.featured {
  transform: translateY(20px) scale(1.03);
}

[data-reveal-group].in>.plan.featured {
  transform: translateY(0) scale(1.03);
}

/* subtle floating accents */
@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.float {
  animation: floaty 6s ease-in-out infinite;
}

@keyframes pulseGlow {

  0%,
  100% {
    opacity: .55;
  }

  50% {
    opacity: 1;
  }
}

.pulse-dot {
  animation: pulseGlow 2s ease-in-out infinite;
}

/* nav underline hover */
.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--blue-soft);
  transition: width .25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* logo mark subtle rotation on hover */
.logo-mark {
  transition: transform .4s ease;
}

.logo:hover .logo-mark {
  transform: rotate(-8deg) scale(1.06);
}

/* fcard icon micro animation */
.fcard:hover .ficon {
  transform: translateY(-3px) rotate(-4deg);
}

.ficon {
  transition: transform .3s ease;
}

/* NAV */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(6, 11, 24, 0.72);
  border-bottom: 1px solid var(--line);
}

nav.wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: inherit;
}

.logo-img {
  height: 38px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--blue), #163a99);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(47, 107, 255, 0.55);
  position: relative;
}

.logo-mark svg {
  width: 18px;
  height: 18px;
}

.nav-links {
  display: flex;
  gap: 34px;
  font-size: 0.92rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ice);
}

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

.nav-login {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
  padding: 9px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: all .2s ease;
}

.nav-login:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: all .2s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-cta:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.nav-login-mobile,
.nav-cta-mobile {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  flex-shrink: 0;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  place-items: center;
  align-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ice);
  transition: transform .25s ease, opacity .2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO */
.hero {
  padding: 72px 0 88px;
  position: relative;
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  gap: 48px;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.hero-copy {
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  letter-spacing: 0.005em;
  color: #c3d3f2;
  font-weight: 600;
  padding: 7px 15px 7px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 26px;
}

.hero-eq {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 13px;
}

.hero-eq i {
  width: 2.5px;
  border-radius: 2px;
  background: var(--blue-soft);
  animation: heroEq 1.1s ease-in-out infinite;
}

.hero-eq i:nth-child(1) {
  height: 45%;
  animation-delay: -.9s;
}

.hero-eq i:nth-child(2) {
  height: 100%;
  animation-delay: -.6s;
}

.hero-eq i:nth-child(3) {
  height: 62%;
  animation-delay: -.3s;
}

.hero-eq i:nth-child(4) {
  height: 85%;
  animation-delay: 0s;
}

@keyframes heroEq {

  0%,
  100% {
    transform: scaleY(.4);
  }

  50% {
    transform: scaleY(1);
  }
}

.hero-eq i {
  transform-origin: bottom;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 24px;
  max-width: 680px;
}

.hero h1 .hl {
  color: var(--blue-bright);
}

.hero p.lead {
  font-size: 1.02rem;
  color: #9aa8c0;
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero p.lead strong {
  color: var(--ice);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

@keyframes pulseGlowBtn {
  0% {
    box-shadow: 0 0 0 0 rgba(47, 107, 255, 0.9), 0 8px 30px rgba(47, 107, 255, 0.6);
  }

  50% {
    box-shadow: 0 0 0 15px rgba(47, 107, 255, 0), 0 12px 45px rgba(47, 107, 255, 0.95);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(47, 107, 255, 0), 0 8px 30px rgba(47, 107, 255, 0.6);
  }
}

.btn-hero-primary {
  padding: 16px 30px;
  border-radius: 100px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 0 1px rgba(95, 139, 255, 0.35), 0 14px 40px rgba(47, 107, 255, 0.4);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  letter-spacing: -0.01em;
  animation: pulseGlowBtn 2s infinite;
}

.btn-hero-primary svg {
  transition: transform .2s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 0 0 1px rgba(95, 139, 255, 0.5), 0 18px 48px rgba(47, 107, 255, 0.55);
  animation-play-state: paused;
}

.btn-hero-primary:hover svg {
  transform: translateX(4px);
}

.btn-hero-quiet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 100px;
  border: 1px solid rgba(140, 168, 220, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ice);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.btn-hero-quiet:hover {
  border-color: rgba(95, 139, 255, 0.55);
  background: rgba(47, 107, 255, 0.1);
  transform: translateY(-2px);
}

.hero-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 0;
  padding: 0;
  margin: 0 0 18px;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 24px;
  border-left: 1px solid var(--line);
}

.hero-stats li:first-child {
  padding-left: 0;
  border-left: none;
}

.hero-stats strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ice);
}

.hero-stats span {
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 460px;
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  width: min(720px, 100%);
  aspect-ratio: 1.35;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 107, 255, 0.42) 0%, rgba(47, 107, 255, 0.18) 38%, transparent 72%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

.hero-mock {
  position: relative;
  width: min(760px, 100%);
  z-index: 1;
  animation:
    heroMockIn .8s cubic-bezier(.2, .7, .3, 1) both,
    heroMockFloat 5s ease-in-out .9s infinite;
}

.hero-mock::before {
  content: '';
  position: absolute;
  inset: 8% 4% -6% 4%;
  border-radius: 22px;
  z-index: -1;
  background: radial-gradient(ellipse at 50% 60%, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.35) 55%, transparent 78%);
  filter: blur(22px);
  pointer-events: none;
  animation: heroMockShadow 5s ease-in-out .9s infinite;
}

@keyframes heroMockIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroMockFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-18px) rotate(-0.4deg);
  }
}

@keyframes heroMockShadow {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(0.9);
    opacity: 0.55;
  }
}

.hero-mock-screen {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: #0a0e16;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.65),
    0 48px 100px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(47, 107, 255, 0.22);
  transition: transform .45s ease, box-shadow .45s ease;
  transform: perspective(1400px) rotateY(-5deg) rotateX(2deg);
}

.hero-mock:hover .hero-mock-screen {
  transform: perspective(1400px) rotateY(-2deg) rotateX(1deg) translateY(-4px);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.72),
    0 56px 120px rgba(0, 0, 0, 0.62),
    0 0 95px rgba(47, 107, 255, 0.3);
}

.hero-mock-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: #0c1424;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-chrome-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.hero-chrome-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.hero-chrome-dots i:nth-child(1) {
  background: #ff5f57;
}

.hero-chrome-dots i:nth-child(2) {
  background: #febc2e;
}

.hero-chrome-dots i:nth-child(3) {
  background: #28c840;
}

.hero-chrome-url {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: 4px 12px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-mock-main {
  display: flex;
  min-width: 0;
}

.hero-mock-sidebar {
  width: 128px;
  flex: 0 0 128px;
  padding: 10px 9px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: linear-gradient(180deg, #0d1830 0%, #070c18 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-side-head {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 2px 2px;
}

.hero-side-head strong {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero-side-head span {
  font-size: 0.44rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.3;
}

.hero-side-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border-radius: 9px;
  font-size: 0.56rem;
  font-weight: 600;
  color: var(--blue-soft);
  background: linear-gradient(90deg, rgba(47, 107, 255, 0.28), rgba(47, 107, 255, 0.08));
  border: 1px solid rgba(95, 139, 255, 0.28);
}

.hero-side-item svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.hero-side-label {
  font-size: 0.42rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 700;
  padding: 4px 2px 0;
}

.hero-side-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  padding: 0;
}

.hero-side-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 8px;
  border-radius: 8px;
  font-size: 0.54rem;
  color: rgba(255, 255, 255, 0.62);
}

.hero-side-list li span {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-side-list li b {
  font-size: 0.46rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.32);
}

.hero-side-list li svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  color: var(--blue-soft);
  opacity: 0.75;
}

.hero-side-dot {
  width: 7px;
  height: 7px;
  border-radius: 3px;
  flex-shrink: 0;
  background: var(--dot, var(--blue));
  box-shadow: 0 0 8px color-mix(in srgb, var(--dot, var(--blue)) 60%, transparent);
}

.hero-side-list.is-secondary {
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-mock-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  background: #0a0e16;
}

.hero-mock-toolbar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px 8px;
}

.hero-search {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.54rem;
}

.hero-search span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-search svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  opacity: 0.7;
}

.hero-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  padding: 7px 10px;
  border-radius: 9px;
  font-size: 0.52rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-chip svg {
  width: 11px;
  height: 11px;
}

.hero-chip.is-sort {
  color: rgba(255, 255, 255, 0.45);
}

.hero-view {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
}

.hero-view b {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-view b svg {
  width: 11px;
  height: 11px;
}

.hero-view b.is-active {
  color: #fff;
  background: var(--blue);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(47, 107, 255, 0.5);
}

.hero-mock-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 0 12px 8px;
}

.hero-album {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  animation: heroAlbumIn .6s cubic-bezier(.2, .7, .3, 1) both;
  animation-delay: var(--album-delay, 0s);
}

.hero-album:nth-child(n+9) {
  display: none;
}

@keyframes heroAlbumIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-album-cover {
  position: relative;
  aspect-ratio: 1.15;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform .25s ease, box-shadow .25s ease;
  background: #0d1730;
}

.hero-album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-album-cover.is-gradient {
  display: grid;
  place-items: center;
  padding: 7px;
  background:
    radial-gradient(circle at 30% 20%, rgba(111, 168, 255, 0.55), transparent 60%),
    linear-gradient(150deg, var(--blue) 0%, #14235c 55%, #070c18 100%);
}

.hero-album:hover .hero-album-cover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 30px rgba(47, 107, 255, 0.3);
}

.hero-album-title {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.5rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.hero-album-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.hero-album-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  min-width: 0;
}

.hero-album-row strong {
  flex: 1;
  min-width: 0;
  font-size: 0.55rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-album-meta small {
  display: block;
  font-size: 0.46rem;
  color: var(--muted);
  line-height: 1.2;
}

.hero-album-menu {
  width: 16px;
  height: 16px;
  border: none;
  border-radius: 5px;
  background: transparent;
  color: rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  padding: 0;
  cursor: default;
  flex-shrink: 0;
  margin-top: -1px;
}

.hero-album-menu svg {
  width: 11px;
  height: 11px;
  display: block;
}

.hero-album-menu:hover {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.04);
}

.hero-mock-playerbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #080c14;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-player-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.hero-player-btn {
  width: 26px;
  height: 26px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  display: grid;
  place-items: center;
  padding: 0;
  cursor: default;
}

.hero-player-btn svg {
  width: 14px;
  height: 14px;
}

.hero-player-play {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  padding: 0;
  margin: 0 2px;
  box-shadow: 0 0 20px rgba(47, 107, 255, 0.55);
  cursor: default;
  animation: heroPlayPulse 2.4s ease-in-out infinite;
}

@keyframes heroPlayPulse {

  0%,
  100% {
    box-shadow: 0 0 16px rgba(47, 107, 255, 0.45);
  }

  50% {
    box-shadow: 0 0 28px rgba(47, 107, 255, 0.75);
  }
}

.hero-player-play svg {
  width: 16px;
  height: 16px;
  margin-left: 2px;
}

.hero-player-wave {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 3px;
  height: 28px;
  min-width: 0;
  padding: 0 6px;
}

.hero-player-wave span {
  flex: 1;
  max-width: 6px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--blue-soft), var(--blue));
  animation: heroWave 1.1s ease-in-out infinite;
}

.hero-player-wave span:nth-child(1) {
  height: 35%;
  animation-delay: -1s;
}

.hero-player-wave span:nth-child(2) {
  height: 55%;
  animation-delay: -0.9s;
}

.hero-player-wave span:nth-child(3) {
  height: 40%;
  animation-delay: -0.8s;
}

.hero-player-wave span:nth-child(4) {
  height: 75%;
  animation-delay: -0.7s;
}

.hero-player-wave span:nth-child(5) {
  height: 50%;
  animation-delay: -0.6s;
}

.hero-player-wave span:nth-child(6) {
  height: 85%;
  animation-delay: -0.5s;
}

.hero-player-wave span:nth-child(7) {
  height: 45%;
  animation-delay: -0.4s;
}

.hero-player-wave span:nth-child(8) {
  height: 65%;
  animation-delay: -0.3s;
}

.hero-player-wave span:nth-child(9) {
  height: 38%;
  animation-delay: -0.2s;
}

.hero-player-wave span:nth-child(10) {
  height: 72%;
  animation-delay: -0.1s;
}

.hero-player-wave span:nth-child(11) {
  height: 48%;
  animation-delay: 0s;
}

.hero-player-wave span:nth-child(12) {
  height: 60%;
  animation-delay: -0.15s;
}

@keyframes heroWave {

  0%,
  100% {
    transform: scaleY(0.4);
  }

  50% {
    transform: scaleY(1);
  }
}

.hero-player-vol {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.6);
}

.hero-player-vol svg {
  width: 16px;
  height: 16px;
}

.hero-vol-track {
  width: 54px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
}

.hero-vol-track i {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 68%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue-soft), var(--blue));
}

.hero-pill {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(10, 32, 70, 0.88);
  border: 1px solid rgba(56, 189, 248, 0.45);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(56, 189, 248, 0.22);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 600;
  color: #38bdf8;
  white-space: nowrap;
}

.hero-pill svg {
  width: 16px;
  height: 16px;
  color: #38bdf8;
  flex-shrink: 0;
}

.hero-pill-offline {
  top: -14px;
  right: 24px;
}

.hero-now {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 14%;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 16px 10px 10px;
  border-radius: 14px;
  background: rgba(8, 12, 22, 0.94);
  border: 1px solid rgba(95, 139, 255, 0.22);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  animation: heroNowIn .9s .3s cubic-bezier(.2, .7, .3, 1) both;
}

@keyframes heroNowIn {
  from {
    opacity: 0;
    transform: translateX(-14px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-now-art {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  color: #fff;
  background: linear-gradient(140deg, var(--blue), #1a3fa8);
  box-shadow: 0 6px 18px rgba(47, 107, 255, 0.45);
}

.hero-now-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.hero-now-text small {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-soft);
  font-weight: 700;
}

.hero-now-text strong {
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
}

.hero-now-eq {
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 16px;
  flex-shrink: 0;
}

.hero-now-eq i {
  width: 2.5px;
  border-radius: 2px;
  background: var(--blue-soft);
  transform-origin: bottom;
  animation: heroEq 1.05s ease-in-out infinite;
}

.hero-now-eq i:nth-child(1) {
  height: 50%;
  animation-delay: -.9s;
}

.hero-now-eq i:nth-child(2) {
  height: 100%;
  animation-delay: -.7s;
}

.hero-now-eq i:nth-child(3) {
  height: 65%;
  animation-delay: -.5s;
}

.hero-now-eq i:nth-child(4) {
  height: 90%;
  animation-delay: -.3s;
}

.hero-now-eq i:nth-child(5) {
  height: 45%;
  animation-delay: -.1s;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-soft);
  font-weight: 600;
  padding: 7px 14px;
  border: 1px solid rgba(95, 139, 255, 0.35);
  border-radius: 100px;
  background: rgba(47, 107, 255, 0.08);
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
}

.btn-primary {
  padding: 15px 28px;
  border-radius: 100px;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(47, 107, 255, 0.4);
  transition: transform .2s ease, box-shadow .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(47, 107, 255, 0.55);
}

.btn-ghost {
  padding: 15px 26px;
  border-radius: 100px;
  border: 1px solid var(--line);
  color: var(--ice);
  font-weight: 600;
  transition: border-color .2s ease, background .2s ease;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.03);
}

/* GENRES STRIP */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.18);
}

.strip-track {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  animation: scroll 32s linear infinite;
  width: max-content;
}

.strip-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ice);
  letter-spacing: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.strip-pill-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: #818cf8;
  transition: color .25s ease, transform .25s ease;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* SECTION HEADS */
.section {
  padding: 100px 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 56px;
}

.section-head .eyebrow {
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: clamp(2.1rem, 3.5vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.fcard {
  background: linear-gradient(180deg, var(--bg-panel), var(--bg-panel-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .35s cubic-bezier(.2, .7, .3, 1), border-color .25s ease, box-shadow .3s ease;
}

.fcard:hover {
  transform: translateY(-6px);
  border-color: var(--blue-soft);
  box-shadow: 0 20px 45px rgba(47, 107, 255, 0.35), 0 0 20px rgba(47, 107, 255, 0.15);
}

.fcard-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.ficon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(47, 107, 255, 0.14);
  border: 1px solid rgba(95, 139, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0;
}

.ficon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue-soft);
}

.fcard h3 {
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.3;
}

.fcard p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* CATALOG SHOWCASE */
.catalog {
  display: grid;
  gap: 56px;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.catalog-visual {
  background: linear-gradient(160deg, var(--bg-panel), var(--bg-panel-2));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Linha de pasta individual no catálogo - Base */
.folder-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  /* transição suave do hover (background, borda e deslocamento horizontal imediato) */
  transition: background .2s ease, border-color .2s ease, translate .2s ease;
}

/* Efeito ao passar o mouse: leve destaque de fundo e borda azul suave */
.folder-row:hover {
  background: rgba(47, 107, 255, 0.08);
  border-color: rgba(95, 139, 255, 0.25);
}

.folder-ico {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  flex-shrink: 0;
  background: rgba(47, 107, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.folder-ico svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue-soft);
}

.folder-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.folder-meta {
  font-size: 0.78rem;
  color: var(--muted);
}

.folder-row .bars {
  margin-left: auto;
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 18px;
}

.folder-row .bars span {
  width: 3px;
  border-radius: 2px;
  background: var(--blue-soft);
  animation: heroEq 1s ease-in-out infinite;
  transform-origin: bottom;
}

.catalog-copy .eyebrow {
  margin-bottom: 18px;
}

.catalog-copy h2 {
  font-size: clamp(2.1rem, 3.4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.catalog-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.catalog-copy .checklist {
  list-style: none;
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.catalog-copy .checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.96rem;
  color: var(--ice);
}

.checkmark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background: rgba(47, 107, 255, 0.18);
  border: 1px solid rgba(95, 139, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkmark svg {
  width: 12px;
  height: 12px;
  stroke: var(--blue-soft);
}

/* VIDEO SECTION */
.video-section .section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.video-frame {
  position: relative;
  width: min(380px, 86vw);
  max-width: 380px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(95, 139, 255, 0.35);
  box-shadow: 0 30px 80px rgba(47, 107, 255, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  background: #000;
  aspect-ratio: 1080 / 2316;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.video-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  z-index: -1;
  background: conic-gradient(from 0deg, var(--blue), transparent 30%, transparent 70%, var(--blue-soft));
  animation: spin 6s linear infinite;
  opacity: .5;
  filter: blur(10px);
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 11, 24, 0.35);
  cursor: pointer;
  transition: background .3s ease;
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 11, 24, 0.4);
  cursor: pointer;
  transition: background .3s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.video-play:hover {
  background: rgba(5, 11, 24, 0.25);
}

.video-play .play-btn {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 60%, #1e40af 100%);
  border: 2px solid rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 14px 40px rgba(29, 78, 216, 0.55),
    inset 0 2px 4px rgba(255, 255, 255, 0.75),
    inset 0 -3px 6px rgba(0, 0, 0, 0.35);
  animation: playRipple 2.2s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
  transition: transform .25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow .25s ease;
  position: relative;
}

.video-play:hover .play-btn {
  transform: scale(1.12);
  background: linear-gradient(135deg, #60a5fa 0%, #2563eb 60%, #1d4ed8 100%);
  box-shadow:
    0 18px 50px rgba(37, 99, 235, 0.7),
    inset 0 2px 4px rgba(255, 255, 255, 0.9),
    inset 0 -3px 6px rgba(0, 0, 0, 0.35);
}

.video-play:active .play-btn {
  transform: scale(0.95);
}

.video-play .play-btn svg {
  width: 32px;
  height: 32px;
  margin-left: 5px;
  fill: #fff;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.35));
  transition: transform 0.2s ease;
}

.video-play:hover .play-btn svg {
  transform: scale(1.06);
}

@keyframes playRipple {
  0% {
    box-shadow:
      0 0 0 0 rgba(59, 130, 246, 0.7),
      0 14px 40px rgba(29, 78, 216, 0.55),
      inset 0 2px 4px rgba(255, 255, 255, 0.75),
      inset 0 -3px 6px rgba(0, 0, 0, 0.35);
  }

  60% {
    box-shadow:
      0 0 0 26px rgba(59, 130, 246, 0),
      0 14px 40px rgba(29, 78, 216, 0.55),
      inset 0 2px 4px rgba(255, 255, 255, 0.75),
      inset 0 -3px 6px rgba(0, 0, 0, 0.35);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(59, 130, 246, 0),
      0 14px 40px rgba(29, 78, 216, 0.55),
      inset 0 2px 4px rgba(255, 255, 255, 0.75),
      inset 0 -3px 6px rgba(0, 0, 0, 0.35);
  }
}

.video-play.hidden {
  display: none;
}

/* PLANS */
@keyframes planGlowPulse {

  0%,
  100% {
    opacity: 0.35;
  }

  50% {
    opacity: 1;
  }
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.plans-count-1 {
  max-width: 420px;
  margin: 0 auto;
}

.plan {
  position: relative;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px 30px;
  overflow: hidden;
}

.plan::before {
  content: attr(data-tab);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--blue-soft);
  padding: 5px 16px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.plan.featured {
  overflow: visible;
  border-color: rgba(95, 139, 255, 0.75);
  background: linear-gradient(180deg, rgba(47, 107, 255, 0.22), var(--bg-panel-2));
  transform: scale(1.05);
  box-shadow: 0 25px 60px rgba(47, 107, 255, 0.4), 0 0 30px rgba(47, 107, 255, 0.2);
  z-index: 2;
}

.plan.featured::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 1px solid rgba(120, 160, 255, 0.65);
  box-shadow: 0 0 40px rgba(47, 107, 255, 0.5), 0 0 80px rgba(47, 107, 255, 0.3);
  opacity: 0.55;
  animation: planGlowPulse 2.4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.plan.featured::before {
  z-index: 2;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 7px 22px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0b1220;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.5);
  border-radius: 0 0 12px 12px;
}

.plan.featured>* {
  position: relative;
  z-index: 1;
}

.plan h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 26px 0 6px;
}

.plan .price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.plan .price span {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}

.plan .price .price-old {
  display: block;
  font-size: 0.9rem;
  color: #a0a6b5;
  text-decoration: line-through;
  font-weight: 500;
  margin-bottom: -4px;
}

.plan .price .price-new {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}

.plan .plan-desc {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 22px;
}

.plan ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.plan ul li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ice);
  align-items: flex-start;
}

.plan ul li svg {
  width: 15px;
  height: 15px;
  stroke: var(--blue-soft);
  flex-shrink: 0;
  margin-top: 3px;
}

.plan-btn {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid rgba(95, 139, 255, 0.4);
  color: var(--ice);
  transition: background .2s ease, border-color .2s ease;
}

.plan.featured .plan-btn {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 10px 28px rgba(47, 107, 255, 0.45);
}

.plan-btn:hover {
  background: rgba(47, 107, 255, 0.15);
}

.plan-guarantee-micro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 500;
}

.plan-guarantee-micro svg {
  color: var(--blue-soft);
  flex-shrink: 0;
}

/* GUARANTEE */
.guarantee-band {
  margin: 48px auto 0;
  max-width: 1180px;
  text-align: center;
  padding: 52px 56px;
  border-radius: 28px;
  border: 1px solid rgba(95, 139, 255, 0.3);
  background: linear-gradient(120deg, rgba(47, 107, 255, 0.18), rgba(47, 107, 255, 0.05));
  position: relative;
  overflow: hidden;
}

.guarantee-band::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 139, 255, 0.35), transparent 70%);
  right: -80px;
  top: -80px;
  pointer-events: none;
}

.guarantee-ico {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(47, 107, 255, 0.16);
  box-shadow: 0 0 0 8px rgba(47, 107, 255, 0.08), 0 0 28px rgba(47, 107, 255, 0.22);
  color: var(--blue-bright);
}

.guarantee-ico svg {
  width: 24px;
  height: 24px;
}

.guarantee-label {
  position: relative;
  z-index: 1;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 10px;
}

.guarantee-title {
  position: relative;
  z-index: 1;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.guarantee-title span {
  color: var(--blue-bright);
}

.guarantee-text {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

/* TESTIMONIALS */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tcard {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stars {
  display: flex;
  gap: 3px;
}

.stars svg {
  width: 14px;
  height: 14px;
  fill: var(--amber);
}

.tcard p {
  font-size: 0.92rem;
  color: var(--ice);
  line-height: 1.6;
}

.tauthor {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.tavatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #163a99);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.tauthor strong {
  display: block;
  font-size: 0.88rem;
}

.tauthor span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* CTA BAND */
.cta-band {
  margin: 0 auto;
  max-width: 1180px;
  background: linear-gradient(120deg, rgba(47, 107, 255, 0.18), rgba(47, 107, 255, 0.05));
  border: 1px solid rgba(95, 139, 255, 0.3);
  border-radius: 28px;
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 139, 255, 0.35), transparent 70%);
  right: -80px;
  top: -80px;
}

.cta-band h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 700;
  max-width: 420px;
  letter-spacing: -0.01em;
}

.cta-band p {
  color: var(--muted);
  margin-top: 10px;
  max-width: 420px;
  font-size: 0.95rem;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 30px;
  margin-top: 60px;
}

.foot-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.foot-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 14px;
  max-width: 280px;
  line-height: 1.6;
}

.foot-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 16px;
}

.foot-col a {
  display: block;
  color: var(--ice);
  font-size: 0.9rem;
  margin-bottom: 12px;
  opacity: 0.85;
}

.foot-col a:hover {
  opacity: 1;
  color: var(--blue-soft);
}

.foot-link-btn {
  display: block;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--ice);
  font-size: 0.9rem;
  margin-bottom: 12px;
  opacity: 0.85;
  text-align: left;
  font-family: inherit;
}

.foot-link-btn:hover {
  opacity: 1;
  color: var(--blue-soft);
}

.foot-bottom {
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}

/* COOKIES */
body.cookie-modal-open {
  overflow: hidden;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  padding: 18px 0 calc(18px + env(safe-area-inset-bottom));
  background: rgba(6, 11, 24, 0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transform: translateY(110%);
  transition: transform .35s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-title {
  font-weight: 700;
  color: var(--ice);
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.cookie-banner-copy p:last-child {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 720px;
  margin: 0;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: inherit;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 8px 22px rgba(47, 107, 255, 0.35);
}

.cookie-btn-ghost {
  background: transparent;
  color: var(--ice);
  border-color: var(--line);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 20px;
}

.cookie-modal[hidden] {
  display: none !important;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 18, 0.72);
  backdrop-filter: blur(4px);
}

.cookie-modal-card {
  position: relative;
  width: min(520px, 100%);
  background: linear-gradient(180deg, rgba(16, 24, 48, 0.98), rgba(10, 16, 34, 0.98));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.cookie-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.cookie-modal-head h2 {
  font-size: 1.2rem;
  font-weight: 700;
}

.cookie-modal-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ice);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-modal-lead {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.cookie-option-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cookie-option-info strong {
  font-size: 0.92rem;
}

.cookie-option-info span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.cookie-toggle {
  position: relative;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
}

.cookie-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  transition: background .2s ease;
}

.cookie-toggle span::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform .2s ease;
}

.cookie-toggle input:checked+span {
  background: var(--blue);
}

.cookie-toggle input:checked+span::after {
  transform: translateX(20px);
}

.cookie-toggle.is-locked {
  opacity: 0.7;
  cursor: not-allowed;
}

.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

@media(max-width:1100px) {
  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media(max-width:920px) {
  .hero .wrap {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .hero-visual {
    min-height: 380px;
    margin-top: 12px;
  }

  .hero-mock {
    animation: heroMockFloat 5s ease-in-out infinite;
  }

  .hero-mock-screen {
    transform: none;
  }

  .hero-mock:hover .hero-mock-screen {
    transform: translateY(-4px);
  }

  .hero-mock-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-album:nth-child(n+9) {
    display: none;
  }

  .hero-mock-sidebar {
    width: 112px;
    flex-basis: 112px;
    padding: 10px 8px;
  }

  .hero-side-list.is-secondary li:nth-child(n+3) {
    display: none;
  }

  .hero-chip.is-sort {
    display: none;
  }

  .hero-pill-offline {
    top: 10%;
    right: 4%;
  }

  .hero-now {
    left: 0;
    bottom: 12%;
  }

  .hero-player-wave {
    display: none;
  }

  .hero-stats li {
    padding: 0 18px;
  }

  .features,
  .plans,
  .testimonials {
    grid-template-columns: minmax(0, 1fr);
  }

  .catalog {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .nav-toggle {
    display: grid;
  }

  nav.wrap>.nav-actions,
  nav.wrap>.nav-cta {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 49;
    flex-direction: column;
    gap: 0;
    padding: 6px 22px 20px;
    background: linear-gradient(180deg, #080d1b, #060b18);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
    max-height: calc(100dvh - 100%);
    overflow-y: auto;
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 15px 2px;
    font-size: 1rem;
    color: var(--ice);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

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

  .nav-login-mobile {
    display: inline-flex;
    justify-content: center;
    text-align: center;
    margin-top: 14px;
    padding: 12px 18px !important;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: none !important;
    color: var(--ice) !important;
    font-weight: 600;
  }

  .nav-cta-mobile {
    display: inline-flex;
    justify-content: center;
    text-align: center;
    margin-top: 10px;
    border-bottom: none !important;
    color: #fff;
  }

  body.nav-open {
    overflow: hidden;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-banner-actions .cookie-btn {
    flex: 1;
    text-align: center;
  }

  .foot-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .cta-band {
    flex-direction: column;
    text-align: center;
    padding: 48px 28px;
  }

  .guarantee-band {
    padding: 40px 28px;
  }

  .plan.featured {
    transform: none;
  }

  [data-reveal-group].in>.plan.featured {
    transform: translateY(0);
  }

  .float-actions {
    right: 16px;
    bottom: 16px;
  }
}

@media(max-width:760px) {
  .wrap {
    padding: 0 18px;
  }

  nav.wrap {
    padding: 14px 18px;
  }

  .nav-links {
    padding: 6px 18px 20px;
  }

  .logo-img {
    height: 34px;
  }

  .hero {
    padding: 44px 0 56px;
  }

  .hero .wrap {
    gap: 28px;
  }

  .hero-badge {
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    padding: 7px 12px;
    margin-bottom: 20px;
  }

  .hero h1 {
    margin-bottom: 18px;
  }

  .hero p.lead {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .hero-actions {
    gap: 10px;
    margin-bottom: 24px;
    flex-direction: column;
    align-items: stretch;
  }

  .btn-hero-primary {
    justify-content: center;
    padding: 15px 20px;
  }

  .btn-hero-quiet {
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  .hero-stats {
    gap: 12px 0;
    margin-bottom: 14px;
  }

  .hero-stats li {
    padding: 0 14px;
  }

  .hero-stats strong {
    font-size: 1.2rem;
  }

  .hero-stats span {
    font-size: 0.7rem;
  }

  .hero-note {
    font-size: 0.8rem;
  }

  .hero-visual {
    min-height: 0;
    margin-top: 4px;
  }

  .hero-pill {
    padding: 6px 11px;
    font-size: 0.66rem;
  }

  .hero-pill svg {
    width: 13px;
    height: 13px;
  }

  .hero-pill-offline {
    top: -10px;
    right: 14px;
  }

  .hero-now {
    left: 0;
    bottom: 10%;
    padding: 8px 12px 8px 8px;
    gap: 9px;
    border-radius: 12px;
  }

  .hero-now-art {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    font-size: 0.9rem;
  }

  .hero-now-text small {
    font-size: 0.52rem;
  }

  .hero-now-text strong {
    font-size: 0.66rem;
  }

  .section {
    padding: 64px 0;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .strip {
    padding: 14px 0;
  }

  .strip-pill {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .fcard {
    padding: 26px 20px;
  }

  .catalog-visual {
    padding: 14px;
  }

  .folder-row {
    padding: 12px 10px;
    gap: 12px;
  }

  .plan {
    padding: 30px 22px 26px;
  }

  .guarantee-band {
    margin-top: 32px;
    padding: 34px 20px;
    border-radius: 22px;
  }

  .cta-band {
    padding: 40px 22px;
    border-radius: 22px;
    gap: 24px;
  }

  .cta-band h2,
  .cta-band p {
    max-width: none;
  }

  .video-play .play-btn {
    width: 64px;
    height: 64px;
  }

  .faq-item {
    padding: 16px 18px;
  }

  .faq-item summary {
    font-size: 0.95rem;
  }

  .faq-content {
    font-size: 0.9rem;
  }

  footer {
    padding: 44px 0 26px;
    margin-top: 44px;
  }

  .foot-top {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 32px;
  }

  .foot-brand p {
    max-width: none;
  }

  .cookie-modal-card {
    padding: 20px;
  }

  .cookie-modal-actions .cookie-btn {
    flex: 1;
  }

  .float-btn {
    width: 48px;
    height: 48px;
  }

  .float-btn-wa svg {
    width: 25px;
    height: 25px;
  }
}

@media(max-width:480px) {
  .hero h1 {
    font-size: 2.05rem;
  }

  .hero-stats li {
    padding: 0 11px;
  }

  .hero-stats strong {
    font-size: 1.08rem;
  }

  .hero-stats span {
    font-size: 0.64rem;
  }

  .hero-mock-sidebar {
    width: 92px;
    flex-basis: 92px;
    padding: 9px 7px;
  }

  .hero-side-head span {
    display: none;
  }

  .hero-side-item {
    padding: 6px 7px;
    font-size: 0.5rem;
  }

  .hero-mock-toolbar {
    padding: 9px 8px 7px;
    gap: 5px;
  }

  .hero-chip {
    display: none;
  }

  .hero-mock-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 0 8px 8px;
  }

  .hero-album:nth-child(n+7) {
    display: none;
  }

  .hero-player-vol {
    display: none;
  }

  .hero-now-text strong {
    font-size: 0.6rem;
  }

  .hero-now-eq {
    display: none;
  }

  .hero-now {
    bottom: 8%;
  }

  .hero-chrome-url {
    font-size: 0.52rem;
  }

  .section {
    padding: 52px 0;
  }

  .plan .price {
    font-size: 1.9rem;
  }

  .guarantee-band {
    padding: 28px 18px;
  }

  .cta-band {
    padding: 32px 18px;
  }
}

/* FLOAT ACTIONS */
.float-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 115;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-bottom: env(safe-area-inset-bottom);
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  text-decoration: none;
}

.float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}

.float-btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
}

.float-btn-wa:hover {
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.5);
}

.float-btn-wa svg {
  width: 28px;
  height: 28px;
}

.float-btn-top {
  width: 42px;
  height: 42px;
  background: var(--blue);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  box-shadow: 0 8px 22px rgba(47, 107, 255, 0.45);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease, background .2s ease;
}

.float-btn-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.float-btn-top svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
}

.float-btn-top:hover {
  background: #3b82f6;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(47, 107, 255, 0.65);
  transform: translateY(-3px);
}

/* FAQ ACCORDION SECTION */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 24px;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(95, 139, 255, 0.35);
  background: var(--bg-panel-2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.02rem;
  cursor: pointer;
  user-select: none;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--blue-soft);
  transition: transform 0.2s ease;
  font-family: system-ui, sans-serif;
  margin-left: 12px;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-content {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.94rem;
}

.faq-content p {
  margin: 0;
}

.faq-content strong,
.faq-item summary strong {
  color: var(--ice);
  font-weight: 700;
}

.faq-content br {
  display: block;
  margin-top: 0.55em;
}

/* ==========================================================
   CAMADA DE MOVIMENTO
   ========================================================== */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 60;
  pointer-events: none;
  transform: scaleX(var(--p, 0));
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--blue), var(--blue-soft) 55%, #9d8bff);
  box-shadow: 0 0 14px rgba(47, 107, 255, 0.55);
}

header {
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}

header.is-scrolled {
  background: rgba(6, 11, 24, 0.9);
  box-shadow: 0 14px 34px rgba(2, 6, 16, 0.45);
}

/* reveal com desfoque */
[data-reveal] {
  filter: blur(7px);
  transition: opacity .8s cubic-bezier(.2, .7, .3, 1), transform .8s cubic-bezier(.2, .7, .3, 1), filter .8s cubic-bezier(.2, .7, .3, 1);
}

[data-reveal].in {
  filter: blur(0);
}

[data-reveal-group].in>*:nth-child(6) {
  transition-delay: .52s;
}

[data-reveal-group].in>*:nth-child(7) {
  transition-delay: .58s;
}

[data-reveal-group].in>*:nth-child(8) {
  transition-delay: .64s;
}

[data-reveal-group].in>*:nth-child(9) {
  transition-delay: .7s;
}

[data-reveal-group].in>*:nth-child(n+10) {
  transition-delay: .76s;
}

/* reveal palavra por palavra */
[data-reveal-words] {
  perspective: 900px;
}

[data-reveal-words].is-split .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(.5em) rotateX(-55deg);
  transform-origin: 50% 100%;
  filter: blur(8px);
  transition: opacity .75s cubic-bezier(.2, .7, .3, 1), transform .75s cubic-bezier(.2, .7, .3, 1), filter .75s ease;
  transition-delay: calc(var(--w, 0) * 48ms);
}

[data-reveal-words].is-split.in .word {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* luz que segue o cursor */
.fcard,
.tcard,
.faq-item,
.guarantee-band {
  position: relative;
  isolation: isolate;
}

.fcard::after,
.tcard::before,
.faq-item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 0%), rgba(95, 139, 255, 0.16), transparent 65%);
}

.fcard:hover::after,
.tcard:hover::before,
.faq-item:hover::before {
  opacity: 1;
}

.fcard {
  transform: perspective(1000px) rotateX(var(--tx, 0deg)) rotateY(var(--ty, 0deg));
  transition: transform .35s cubic-bezier(.2, .7, .3, 1), border-color .25s ease, box-shadow .35s ease;
}

.fcard:hover {
  transform: perspective(1000px) rotateX(var(--tx, 0deg)) rotateY(var(--ty, 0deg)) translate3d(0, -8px, 0);
  border-color: var(--blue-soft);
  box-shadow: 0 20px 45px rgba(47, 107, 255, 0.35), 0 0 20px rgba(47, 107, 255, 0.15);
}

.tcard {
  transition: transform .3s cubic-bezier(.2, .7, .3, 1), border-color .25s ease, box-shadow .3s ease;
}

.tcard:hover {
  transform: translateY(-6px);
  border-color: rgba(95, 139, 255, 0.35);
  box-shadow: 0 22px 50px rgba(2, 6, 16, 0.45);
}

.plan {
  transition: transform .32s cubic-bezier(.2, .7, .3, 1), border-color .25s ease, box-shadow .32s ease;
  background-image: radial-gradient(340px circle at var(--mx, 50%) var(--my, -10%), rgba(95, 139, 255, 0.14), transparent 62%);
}

.plan.featured {
  background-image:
    radial-gradient(340px circle at var(--mx, 50%) var(--my, -10%), rgba(120, 160, 255, 0.16), transparent 62%),
    linear-gradient(180deg, rgba(47, 107, 255, 0.14), var(--bg-panel-2));
}

[data-reveal-group].in>.plan:hover {
  transform: translateY(-7px);
  border-color: rgba(95, 139, 255, 0.45);
  box-shadow: 0 26px 56px rgba(2, 6, 16, 0.5);
}

[data-reveal-group].in>.plan.featured:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 32px 70px rgba(47, 107, 255, 0.38);
}

/* checklist em cascata */
[data-reveal] .checklist li {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2, .7, .3, 1);
}

[data-reveal].in .checklist li {
  opacity: 1;
  transform: translateX(0);
}

[data-reveal].in .checklist li:nth-child(1) {
  transition-delay: .2s;
}

[data-reveal].in .checklist li:nth-child(2) {
  transition-delay: .3s;
}

[data-reveal].in .checklist li:nth-child(3) {
  transition-delay: .4s;
}

[data-reveal].in .checklist li:nth-child(4) {
  transition-delay: .5s;
}

[data-reveal].in .checklist li:nth-child(n+5) {
  transition-delay: .6s;
}

/* pastas em cascata */
[data-reveal] .folder-row {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2, .7, .3, 1);
}

[data-reveal].in .folder-row {
  opacity: 1;
  transform: translateX(0);
  /* Propriedades que serão animadas ao revelar e ao passar o mouse */
  transition:
    opacity .55s ease,
    transform .55s cubic-bezier(.2, .7, .3, 1),
    background .2s ease,
    border-color .2s ease,
    translate .2s ease;
}

/* 
  Definição de transição para cada linha com atraso em cascata na revelação inicial.
  IMPORTANTE: background, border-color e translate possuem delay de 0s explicito
  para que a interação de passar o mouse (hover e unhover) responda instantaneamente,
  sem herdar o atraso da animação de entrada do scroll reveal.
*/
[data-reveal].in .folder-row:nth-child(1) {
  transition:
    opacity .55s ease .2s,
    transform .55s cubic-bezier(.2, .7, .3, 1) .2s,
    background .2s ease 0s,
    border-color .2s ease 0s,
    translate .2s ease 0s;
}

[data-reveal].in .folder-row:nth-child(2) {
  transition:
    opacity .55s ease .3s,
    transform .55s cubic-bezier(.2, .7, .3, 1) .3s,
    background .2s ease 0s,
    border-color .2s ease 0s,
    translate .2s ease 0s;
}

[data-reveal].in .folder-row:nth-child(3) {
  transition:
    opacity .55s ease .4s,
    transform .55s cubic-bezier(.2, .7, .3, 1) .4s,
    background .2s ease 0s,
    border-color .2s ease 0s,
    translate .2s ease 0s;
}

[data-reveal].in .folder-row:nth-child(4) {
  transition:
    opacity .55s ease .5s,
    transform .55s cubic-bezier(.2, .7, .3, 1) .5s,
    background .2s ease 0s,
    border-color .2s ease 0s,
    translate .2s ease 0s;
}

[data-reveal].in .folder-row:nth-child(n+5) {
  transition:
    opacity .55s ease .6s,
    transform .55s cubic-bezier(.2, .7, .3, 1) .6s,
    background .2s ease 0s,
    border-color .2s ease 0s,
    translate .2s ease 0s;
}

/* Deslocamento de 6px lateral ao passar o mouse usando a propriedade independente translate (evita conflitos de transform) */
[data-reveal].in .folder-row:hover {
  translate: 6px 0;
}

/* faixa de gêneros */
.strip {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.strip:hover .strip-track {
  animation-play-state: paused;
}

.strip-pill {
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.strip-pill:hover {
  transform: translateY(-3px);
  background: rgba(47, 107, 255, 0.14);
  border-color: rgba(95, 139, 255, 0.45);
}

.strip-pill:hover .strip-pill-icon {
  color: #a5b4fc;
  transform: scale(1.1);
}

/* brilho ao passar nos botões */
.btn-hero-primary,
.btn-primary,
.plan-btn,
.fc-btn {
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::after,
.btn-primary::after,
.plan-btn::after,
.fc-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -140%;
  width: 55%;
  height: 100%;
  pointer-events: none;
  transform: skewX(-18deg);
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.28), transparent);
}

.btn-hero-primary:hover::after,
.btn-primary:hover::after,
.plan-btn:hover::after,
.fc-btn:hover::after {
  animation: btnSheen .85s ease;
}

@keyframes btnSheen {
  to {
    left: 150%;
  }
}

/* abertura do FAQ */
.faq-item[open] .faq-content {
  animation: faqOpen .38s cubic-bezier(.2, .7, .3, 1) both;
}

@keyframes faqOpen {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
}

/* garantia com halo girando */
.guarantee-band::before {
  content: '';
  position: absolute;
  inset: -40%;
  z-index: -1;
  pointer-events: none;
  opacity: .5;
  background: conic-gradient(from 0deg, transparent 0 60%, rgba(95, 139, 255, 0.22) 75%, transparent 88%);
  animation: haloSpin 14s linear infinite;
}

@keyframes haloSpin {
  to {
    transform: rotate(1turn);
  }
}

/* ==========================================================
   CTA FINAL
   ========================================================== */
.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 118px 0 126px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(900px 420px at 50% 8%, rgba(47, 107, 255, 0.22), transparent 70%),
    radial-gradient(720px 360px at 50% 105%, rgba(124, 107, 255, 0.16), transparent 70%);
}

.final-cta-fx {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.fc-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
}

.fc-orb-a {
  width: 440px;
  height: 440px;
  left: -140px;
  top: -80px;
  background: radial-gradient(circle, rgba(47, 107, 255, 0.5), transparent 66%);
  animation: fcOrbA 17s ease-in-out infinite;
}

.fc-orb-b {
  width: 380px;
  height: 380px;
  right: -120px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(124, 107, 255, 0.42), transparent 66%);
  animation: fcOrbB 21s ease-in-out infinite;
}

@keyframes fcOrbA {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: .45;
  }

  50% {
    transform: translate3d(70px, 40px, 0) scale(1.12);
    opacity: .7;
  }
}

@keyframes fcOrbB {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1.08);
    opacity: .55;
  }

  50% {
    transform: translate3d(-60px, -50px, 0) scale(1);
    opacity: .35;
  }
}

.fc-rings {
  position: absolute;
  left: 50%;
  top: 46%;
  width: min(980px, 130%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: repeating-radial-gradient(circle at center, rgba(140, 168, 220, 0.08) 0 1px, transparent 1px 76px);
  -webkit-mask-image: radial-gradient(circle at center, #000 22%, transparent 70%);
  mask-image: radial-gradient(circle at center, #000 22%, transparent 70%);
  animation: fcRings 22s ease-in-out infinite;
}

@keyframes fcRings {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: .55;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: .95;
  }
}

.fc-sweep {
  position: absolute;
  inset: -20%;
  background: linear-gradient(115deg, transparent 38%, rgba(95, 139, 255, 0.12) 50%, transparent 62%);
  background-size: 260% 100%;
  animation: fcSweep 9s ease-in-out infinite;
}

@keyframes fcSweep {

  0%,
  100% {
    background-position: 120% 0;
  }

  50% {
    background-position: -20% 0;
  }
}

.final-cta-inner {
  position: relative;
}

.final-cta+footer {
  margin-top: 0;
  border-top: none;
}

.final-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-soft);
  border: 1px solid rgba(95, 139, 255, 0.4);
  background: rgba(47, 107, 255, 0.1);
  animation: fcBadgeGlow 3.4s ease-in-out infinite;
}

.final-cta-badge svg {
  width: 13px;
  height: 13px;
}

@keyframes fcBadgeGlow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(47, 107, 255, 0.28), 0 6px 20px rgba(47, 107, 255, 0.14);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(47, 107, 255, 0.05), 0 10px 30px rgba(47, 107, 255, 0.28);
  }
}

.final-cta-title {
  margin: 26px auto 0;
  max-width: 940px;
  font-size: clamp(2.05rem, 5.4vw, 3.85rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.final-cta-title .fc-hl {
  color: var(--blue-bright);
  text-shadow: 0 0 44px rgba(95, 139, 255, 0.4);
}

.final-cta-lead {
  margin: 22px auto 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 1.01rem;
  line-height: 1.7;
}

.final-cta-actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.fc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 30px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--ice);
  transition: transform .25s cubic-bezier(.2, .7, .3, 1), box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.fc-btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.fc-btn-primary {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  box-shadow: 0 14px 40px rgba(47, 107, 255, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  animation: fcBtnBreathe 3.6s ease-in-out infinite;
}

.fc-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 56px rgba(47, 107, 255, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

@keyframes fcBtnBreathe {

  0%,
  100% {
    box-shadow: 0 14px 40px rgba(47, 107, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }

  50% {
    box-shadow: 0 18px 52px rgba(47, 107, 255, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }
}

.fc-btn-ghost {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(140, 168, 220, 0.22);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.fc-btn-ghost:hover {
  transform: translateY(-3px);
  border-color: rgba(95, 139, 255, 0.5);
  background: rgba(47, 107, 255, 0.12);
}

.final-cta-trust {
  list-style: none;
  margin: 26px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  color: var(--muted);
  font-size: 0.84rem;
}

.final-cta-trust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.final-cta-trust svg {
  width: 14px;
  height: 14px;
  color: var(--blue-soft);
}

@media(max-width:760px) {
  .final-cta {
    padding: 84px 0 92px;
  }

  .final-cta-title {
    letter-spacing: -0.02em;
  }

  .final-cta-actions {
    margin-top: 30px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .fc-btn {
    justify-content: center;
    padding: 16px 22px;
  }

  .final-cta-trust {
    gap: 10px 18px;
    font-size: 0.79rem;
  }
}

@media(max-width:480px) {
  .final-cta {
    padding: 68px 0 76px;
  }

  .final-cta-badge {
    font-size: 0.68rem;
    letter-spacing: 0.09em;
    padding: 8px 14px;
  }

  .final-cta-lead {
    font-size: 0.94rem;
  }
}

/* DESTAQUE AZUL SÓLIDO */
.gradient-text,
.hl,
.text-gradient {
  color: #3b82f6 !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
  display: inline;
}

/* GÊNEROS / ESTILOS */
.genres-section {
  padding: 65px 0;
  position: relative;
}

.genres-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  max-width: 1240px;
  margin: 0 auto;
}

.genre-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 14px 18px;
  background: rgba(15, 23, 42, 0.5);
  background-image: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.08) 0%, transparent 75%);
  border: 1px solid rgba(140, 168, 220, 0.12);
  border-radius: 18px;
  text-align: center;
  gap: 12px;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  user-select: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  position: relative;
}

.genre-cover {
  width: 100%;
  max-width: 130px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), filter 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.genre-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.genre-name {
  color: #f1f5f9;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color 0.22s ease, transform 0.22s ease;
}

.genre-card:hover {
  background: rgba(30, 58, 138, 0.22);
  background-image: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.25) 0%, transparent 80%);
  border-color: rgba(95, 139, 255, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px -6px rgba(0, 0, 0, 0.5), 0 0 28px rgba(59, 130, 246, 0.25);
}

.genre-card:hover .genre-cover {
  transform: scale(1.08) translateY(-2px);
  filter: drop-shadow(0 14px 26px rgba(47, 107, 255, 0.4));
}

.genre-card:hover .genre-name {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
}

@media (max-width: 1240px) {
  .genres-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
}

@media (max-width: 1040px) {
  .genres-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}

@media (max-width: 991px) {
  .genres-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .genre-cover {
    max-width: 100px;
  }
}

@media (max-width: 640px) {
  .genres-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .genre-card {
    padding: 8px 4px 10px;
    border-radius: 12px;
    gap: 6px;
    min-width: 0;
  }

  .genre-cover {
    max-width: 100%;
  }

  .genre-name {
    font-size: clamp(0.65rem, 2.2vw, 0.76rem);
    font-weight: 600;
    line-height: 1.15;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 380px) {
  .genres-grid {
    gap: 5px;
  }

  .genre-card {
    padding: 6px 2px 8px;
    border-radius: 10px;
    gap: 4px;
  }

  .genre-name {
    font-size: 0.62rem;
  }
}

@media(prefers-reduced-motion: reduce) {

  .scroll-progress {
    display: none;
  }

  [data-reveal],
  [data-reveal-words].is-split .word {
    filter: none;
  }

  .fcard,
  .fcard:hover {
    transform: none;
  }
}