/* BackStage — site.css : componentes do site público (Studio Noir) */

/* Elementos rotacionados (ticker, CTA credencial) vazam alguns px além do
   viewport e criariam scroll horizontal. `clip` corta sem virar scroll
   container — o sticky da nav continua funcionando (hidden quebraria). */
.stage {
  overflow-x: clip;
}

@supports not (overflow: clip) {
  .stage { overflow-x: hidden; }
}

/* ============================================================
   Background ambient — gradient mesh + blueprint grid
   ============================================================ */

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background: 
    radial-gradient(circle at 70% 85%, rgba(255, 255, 255, 0.02), transparent 60%),
    radial-gradient(var(--c-border) 1px, transparent 1px);
  background-size: 100% 100%, 32px 32px;
  transition: background var(--m-base);
}

[data-theme="dark"] .ambient {
  background: 
    radial-gradient(circle at 70% 85%, rgba(255, 255, 255, 0.03), transparent 65%),
    radial-gradient(var(--c-border) 1px, transparent 1px);
  background-size: 100% 100%, 32px 32px;
}

@media (prefers-color-scheme: dark) {
  [data-theme="system"] .ambient {
    background: 
      radial-gradient(circle at 70% 85%, rgba(255, 255, 255, 0.03), transparent 65%),
      radial-gradient(var(--c-border) 1px, transparent 1px);
    background-size: 100% 100%, 32px 32px;
  }
}

/* Orbs: invisíveis sobre fundo claro — só renderizam no tema escuro
   (economiza composição de blur(120px) animado no light). */
.ambient::before,
.ambient::after {
  content: "";
  display: none;
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .35;
  will-change: transform;
}

.ambient::before {
  width: 580px;
  height: 580px;
  top: -180px;
  left: -120px;
  background: radial-gradient(circle, rgba(255, 178, 36, 0.14), transparent 65%);
  animation: drift1 22s ease-in-out infinite alternate;
}

.ambient::after {
  width: 520px;
  height: 520px;
  top: 30vh;
  right: -180px;
  background: radial-gradient(circle, rgba(255, 142, 60, 0.1), transparent 65%);
  animation: drift2 26s ease-in-out infinite alternate;
}

/* — Grain de filme (só no site público, via body.stage) — */
.stage::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.035;
  mix-blend-mode: multiply;
}

[data-theme="dark"] .stage::after {
  opacity: 0.06;
  mix-blend-mode: screen;
}

@media (prefers-color-scheme: dark) {
  [data-theme="system"] .stage::after {
    opacity: 0.06;
    mix-blend-mode: screen;
  }
}

[data-theme="dark"] .ambient::before,
[data-theme="dark"] .ambient::after {
  display: block;
  opacity: .25;
}

@media (prefers-color-scheme: dark) {
  [data-theme="system"] .ambient::before,
  [data-theme="system"] .ambient::after {
    display: block;
    opacity: .25;
  }
}

@keyframes drift1 {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(60px, 80px); }
}

@keyframes drift2 {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(-80px, -50px); }
}

/* ============================================================
   Navigation
   ============================================================ */

.site-nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  padding: 0 var(--s-8);
  background: color-mix(in srgb, var(--c-bg) 75%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--c-border) 70%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  transition: all var(--m-base) ease;
}

@media (min-width: 901px) {
  .site-nav {
    position: fixed;
    top: var(--s-3);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--container);
    padding: 0;
    background: transparent;
    border-bottom: none;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .site-nav::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--c-border-strong);
    border-radius: var(--r-full);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .site-nav.scrolled {
    top: var(--s-2);
    max-width: calc(var(--container) - 96px);
    padding: 0 var(--s-8);
    background: var(--c-surface-glass);
    border: 1px solid var(--brand-ring);
    border-radius: var(--r-full);
    box-shadow: var(--sh-3), 0 0 0 1px rgba(255, 255, 255, 0.05), 0 0 24px -8px color-mix(in srgb, var(--c-accent) 35%, transparent);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    min-height: 56px;
  }

  /* — Now playing: a cápsula vira player. Seek bar = progresso de leitura
       da página (--scroll-p vem do theme.js), com trilho apagado e
       preenchimento âmbar. — */
  .site-nav.scrolled::before {
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 5px;
    height: 2px;
    border-radius: var(--r-full);
    background:
      var(--brand-grad) 0 0 / calc(var(--scroll-p, 0) * 100%) 100% no-repeat,
      color-mix(in srgb, var(--c-text) 14%, transparent);
    pointer-events: none;
  }

  /* O risco decorativo sob a nav vira o playhead: bolinha âmbar com glow
     que percorre o seek bar conforme o scroll. */
  .site-nav.scrolled::after {
    opacity: 1;
    transform: none;
    top: auto;
    bottom: 2px;
    left: clamp(26px, calc(30px + (100% - 60px) * var(--scroll-p, 0) - 4px), calc(100% - 34px));
    right: auto;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-accent);
    box-shadow: 0 0 10px var(--c-accent);
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .hero {
    padding-top: calc(var(--s-24) + var(--nav-h) + var(--s-16));
  }

  .page-top {
    padding-top: calc(var(--nav-h) + var(--s-12) + var(--s-6));
  }

  /* — Mini equalizer na marca: surge quando a cápsula entra em modo player — */
  .nav-eq {
    display: inline-flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, margin 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .site-nav.scrolled .nav-eq {
    width: 18px;
    margin-left: var(--s-1);
    opacity: 1;
  }

  .nav-eq i {
    flex: 1 0 3px;
    border-radius: 1px 1px 0 0;
    background: var(--c-accent);
    animation: eq-bounce 1s ease-in-out infinite alternate;
  }

  .nav-eq i:nth-child(1) { height: 55%; animation-delay: -0.6s; }
  .nav-eq i:nth-child(2) { height: 100%; animation-delay: -0.2s; }
  .nav-eq i:nth-child(3) { height: 75%; animation-delay: -0.9s; }
}

@media (max-width: 900px) {
  .nav-eq { display: none; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  color: var(--c-text-soft);
  font-size: 0.94rem;
  font-weight: 600;
}

/* Site público: menu em mono uppercase, como setlist impressa */
.stage .nav-links {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Botão do menu compacto: precisa caber na cápsula (56px) sem cobrir o seek bar */
@media (min-width: 901px) {
  .stage .nav-links .button {
    min-height: 32px;
    padding: 0 var(--s-4);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }
}

.nav-links > a {
  position: relative;
  padding: 6px 0;
}

.nav-links > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--c-accent-grad);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--m-base);
}

.nav-links > a:hover::after,
.nav-links > a:focus-visible::after {
  transform: scaleX(1);
}

.nav-links > a:hover,
.nav-links > a:focus-visible {
  color: var(--c-accent);
}

.nav-links > a.button:hover,
.nav-links > a.button:focus-visible {
  color: var(--btn-fg);
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1.15fr);
  gap: var(--s-12);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--s-24) var(--s-6) var(--s-20);
}

/* Hero com fundo brand gradient full-bleed + curva no rodapé */
.hero-tinted {
  max-width: none;
  padding-left: max(var(--s-6), calc((100vw - var(--container)) / 2));
  padding-right: max(var(--s-6), calc((100vw - var(--container)) / 2));
  padding-bottom: calc(var(--s-20) + 80px);
  color: var(--c-text);
  margin-bottom: -80px;
  background: var(--hero-grad);
}

.hero-tinted::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("/assets/images/music_hero_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: var(--hero-bg-opacity);
  filter: var(--hero-bg-filter);
  pointer-events: none;
}

/* Spotlights de palco: dois feixes cônicos descendo do topo + luz central.
   Token-driven (color-mix sobre --c-accent), funciona nos dois temas. */
.hero-tinted::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    conic-gradient(from 196deg at 16% -12%, transparent 41%, color-mix(in srgb, var(--c-accent) 11%, transparent) 47%, transparent 53%),
    conic-gradient(from 164deg at 84% -12%, transparent 47%, color-mix(in srgb, var(--c-accent) 9%, transparent) 53%, transparent 59%),
    radial-gradient(820px circle at 50% -5%, var(--c-spotlight), transparent 62%);
}

.hero-tinted .eyebrow {
  background: var(--brand-tint);
  color: var(--c-text);
  border-color: var(--c-border-strong);
}

.hero-tinted h1 {
  color: var(--c-text);
}

.hero-tinted .hero-copy p,
.hero-tinted .hero-copy .hero-lead {
  color: var(--c-text-soft);
}

.hero-tinted .hero-meta span {
  color: var(--c-text-muted);
}

.hero-tinted .hero-meta strong {
  color: var(--c-text);
  background: none;
  -webkit-text-fill-color: var(--c-text);
}

.hero-tinted .hero-meta div {
  position: relative;
  padding-bottom: 8px;
}

.hero-tinted .hero-meta div::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: var(--c-accent);
  box-shadow: none;
}

.hero-tinted h1 .grad {
  background: var(--brand-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-tinted .button.secondary {
  background: var(--c-surface-glass);
  color: var(--c-text);
  border-color: var(--c-border);
  backdrop-filter: blur(8px);
}

.hero-tinted .button.secondary:hover {
  background: var(--c-bg-soft);
  border-color: var(--c-text-soft);
  color: var(--c-text);
}

.hero-tinted .hero-meta { border-top-color: var(--c-border); }

.hero-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 80px;
  display: block;
  z-index: 1;
  pointer-events: none;
}

.hero-divider path {
  fill: var(--c-bg);
}

.hero-copy > .eyebrow {
  margin-bottom: var(--s-4);
}

.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: var(--s-5);
}

.hero h1 .grad {
  background: var(--brand-grad-text);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero p,
.hero .hero-lead {
  max-width: 540px;
  color: var(--c-text-muted);
  font-size: 1.14rem;
  line-height: 1.7;
  margin-bottom: var(--s-8);
}

.hero .hero-lead > :first-child { margin-top: 0; }
.hero .hero-lead > :last-child { margin-bottom: 0; }
.hero .hero-lead strong { color: inherit; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}

.hero-meta {
  margin-top: var(--s-8);
  display: flex;
  gap: var(--s-8);
  flex-wrap: wrap;
}

.hero-meta div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-meta strong {
  font-family: var(--ff-mono);
  font-variant-numeric: tabular-nums;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  background: var(--brand-grad-text);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-meta span {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

/* — Equalizer "ao vivo" (ornamento do hero) — */
.hero-eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
  margin-bottom: var(--s-4);
}

.hero-eq i {
  width: 4px;
  border-radius: 2px 2px 0 0;
  background: var(--c-accent);
  animation: eq-bounce 1.1s ease-in-out infinite alternate;
}

.hero-eq i:nth-child(1) { height: 40%; animation-delay: -0.9s; }
.hero-eq i:nth-child(2) { height: 90%; animation-delay: -0.4s; }
.hero-eq i:nth-child(3) { height: 60%; animation-delay: -0.7s; }
.hero-eq i:nth-child(4) { height: 100%; animation-delay: -0.2s; }
.hero-eq i:nth-child(5) { height: 50%; animation-delay: -1.1s; }

@keyframes eq-bounce {
  0%   { transform: scaleY(0.35); }
  100% { transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-eq i { transform: none; }
}

/* — Ticker de turnê (letreiro contínuo pós-hero) — */
.ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 11px 0;
  background: var(--brand-1);
  color: var(--c-bg);
  border-block: 1px solid var(--c-border-strong);
  transform: rotate(-0.6deg) scale(1.02);
}

[data-theme="dark"] .ticker { color: #1d1206; }

@media (prefers-color-scheme: dark) {
  [data-theme="system"] .ticker { color: #1d1206; }
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: var(--s-8);
  width: max-content;
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  white-space: nowrap;
  animation: ticker-scroll 36s linear infinite;
}

.ticker-note {
  font-size: 0.9rem;
  opacity: 0.6;
}

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

/* — Hero "studio" mockup — */
.product-preview-container {
  position: relative;
  perspective: 1500px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-preview {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: auto;
  padding: 0;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 0;
  box-shadow: -22px 28px 55px -12px rgba(9, 9, 11, 0.45), 0 0 35px rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transform: rotateY(-17deg) rotateX(12deg) rotateZ(3deg);
  transform-style: preserve-3d;
  transition: transform var(--m-slow) ease, box-shadow var(--m-slow) ease;
  animation: float 8s ease-in-out infinite;
}

.product-preview::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: var(--brand-grad);
  border-radius: 0;
  opacity: .35;
  filter: blur(24px);
}

.product-browser-content {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.product-browser-content img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--m-slow) ease;
}

/* Floating Glass Widgets */
.floating-widget {
  position: absolute;
  background: var(--c-surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-lg);
  padding: var(--s-4);
  box-shadow: var(--sh-3), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  z-index: 10;
  pointer-events: none;
  animation: float-widget 6s ease-in-out infinite alternate;
}

.widget-metrics {
  left: -25px;
  bottom: 30px;
  width: 210px;
  animation-duration: 7.5s;
  animation-delay: -2s;
}

.widget-status {
  right: -20px;
  top: 50px;
  width: 185px;
  animation-duration: 5.5s;
}

.floating-widget .widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: var(--c-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.floating-widget .widget-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--c-text);
  font-family: var(--ff-display);
  letter-spacing: -0.02em;
}

.floating-widget .trend {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 0.7rem;
  font-weight: 700;
}

.floating-widget .trend.up {
  color: var(--c-success);
}

.floating-widget .status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 4px;
}

.floating-widget .status-indicator .pulse {
  width: 8px;
  height: 8px;
  background: var(--c-success);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--c-success);
}

.floating-widget small {
  font-size: 0.72rem;
  color: var(--c-text-muted);
}

@keyframes float-widget {
  0% {
    transform: translateY(0) translateZ(25px);
  }
  100% {
    transform: translateY(-8px) translateZ(35px);
  }
}

.product-preview-image {
  display: block;
  grid-template-rows: none;
  padding: 0;
  background: transparent;
  border: 0;
}

.product-preview-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-2xl);
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  box-shadow: var(--sh-4);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 var(--s-4);
  background: var(--c-surface-2);
  border-bottom: 1px solid var(--c-border);
}

.window-bar::before,
.window-bar::after,
.window-bar > span {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--c-border-strong);
}

.window-bar::before { background: #ff5f56; }
.window-bar::after { background: #27c93f; }
.window-bar > span { background: #ffbd2e; }

.preview-grid {
  display: grid;
  grid-template-columns: 130px 1fr;
  padding: var(--s-5);
  gap: var(--s-4);
}

.preview-grid aside {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.preview-grid aside i {
  display: block;
  height: 10px;
  background: var(--c-surface-2);
  border-radius: var(--r-full);
}

.preview-grid aside i:nth-child(1) { width: 60%; }
.preview-grid aside i:nth-child(2) { width: 90%; background: var(--brand-tint); }
.preview-grid aside i:nth-child(3) { width: 75%; }
.preview-grid aside i:nth-child(4) { width: 50%; }

.preview-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
}

.preview-tiles span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--c-text-soft);
}

.preview-waveform {
  height: 64px;
  margin: 0 var(--s-5) var(--s-5);
  background:
    linear-gradient(90deg, var(--brand-1), var(--brand-2));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 64' preserveAspectRatio='none'%3E%3Cg fill='black'%3E%3Crect x='2' y='28' width='4' height='8' rx='2'/%3E%3Crect x='10' y='22' width='4' height='20' rx='2'/%3E%3Crect x='18' y='14' width='4' height='36' rx='2'/%3E%3Crect x='26' y='6' width='4' height='52' rx='2'/%3E%3Crect x='34' y='20' width='4' height='24' rx='2'/%3E%3Crect x='42' y='10' width='4' height='44' rx='2'/%3E%3Crect x='50' y='24' width='4' height='16' rx='2'/%3E%3Crect x='58' y='2' width='4' height='60' rx='2'/%3E%3Crect x='66' y='18' width='4' height='28' rx='2'/%3E%3Crect x='74' y='12' width='4' height='40' rx='2'/%3E%3Crect x='82' y='24' width='4' height='16' rx='2'/%3E%3Crect x='90' y='8' width='4' height='48' rx='2'/%3E%3Crect x='98' y='20' width='4' height='24' rx='2'/%3E%3Crect x='106' y='4' width='4' height='56' rx='2'/%3E%3Crect x='114' y='22' width='4' height='20' rx='2'/%3E%3Crect x='122' y='14' width='4' height='36' rx='2'/%3E%3Crect x='130' y='6' width='4' height='52' rx='2'/%3E%3Crect x='138' y='20' width='4' height='24' rx='2'/%3E%3Crect x='146' y='10' width='4' height='44' rx='2'/%3E%3Crect x='154' y='24' width='4' height='16' rx='2'/%3E%3Crect x='162' y='2' width='4' height='60' rx='2'/%3E%3Crect x='170' y='18' width='4' height='28' rx='2'/%3E%3Crect x='178' y='12' width='4' height='40' rx='2'/%3E%3Crect x='186' y='24' width='4' height='16' rx='2'/%3E%3Crect x='194' y='8' width='4' height='48' rx='2'/%3E%3Crect x='202' y='20' width='4' height='24' rx='2'/%3E%3Crect x='210' y='4' width='4' height='56' rx='2'/%3E%3Crect x='218' y='22' width='4' height='20' rx='2'/%3E%3Crect x='226' y='14' width='4' height='36' rx='2'/%3E%3Crect x='234' y='6' width='4' height='52' rx='2'/%3E%3Crect x='242' y='20' width='4' height='24' rx='2'/%3E%3Crect x='250' y='10' width='4' height='44' rx='2'/%3E%3Crect x='258' y='24' width='4' height='16' rx='2'/%3E%3Crect x='266' y='2' width='4' height='60' rx='2'/%3E%3Crect x='274' y='18' width='4' height='28' rx='2'/%3E%3Crect x='282' y='12' width='4' height='40' rx='2'/%3E%3Crect x='290' y='24' width='4' height='16' rx='2'/%3E%3Crect x='298' y='8' width='4' height='48' rx='2'/%3E%3Crect x='306' y='20' width='4' height='24' rx='2'/%3E%3Crect x='314' y='4' width='4' height='56' rx='2'/%3E%3Crect x='322' y='22' width='4' height='20' rx='2'/%3E%3Crect x='330' y='14' width='4' height='36' rx='2'/%3E%3Crect x='338' y='6' width='4' height='52' rx='2'/%3E%3Crect x='346' y='20' width='4' height='24' rx='2'/%3E%3Crect x='354' y='10' width='4' height='44' rx='2'/%3E%3Crect x='362' y='24' width='4' height='16' rx='2'/%3E%3Crect x='370' y='2' width='4' height='60' rx='2'/%3E%3Crect x='378' y='18' width='4' height='28' rx='2'/%3E%3Crect x='386' y='12' width='4' height='40' rx='2'/%3E%3Crect x='394' y='24' width='4' height='16' rx='2'/%3E%3Crect x='402' y='8' width='4' height='48' rx='2'/%3E%3Crect x='410' y='20' width='4' height='24' rx='2'/%3E%3Crect x='418' y='4' width='4' height='56' rx='2'/%3E%3Crect x='426' y='22' width='4' height='20' rx='2'/%3E%3Crect x='434' y='14' width='4' height='36' rx='2'/%3E%3Crect x='442' y='6' width='4' height='52' rx='2'/%3E%3Crect x='450' y='20' width='4' height='24' rx='2'/%3E%3Crect x='458' y='10' width='4' height='44' rx='2'/%3E%3Crect x='466' y='24' width='4' height='16' rx='2'/%3E%3Crect x='474' y='2' width='4' height='60' rx='2'/%3E%3Crect x='482' y='18' width='4' height='28' rx='2'/%3E%3Crect x='490' y='12' width='4' height='40' rx='2'/%3E%3Crect x='498' y='24' width='4' height='16' rx='2'/%3E%3Crect x='506' y='8' width='4' height='48' rx='2'/%3E%3Crect x='514' y='20' width='4' height='24' rx='2'/%3E%3Crect x='522' y='4' width='4' height='56' rx='2'/%3E%3Crect x='530' y='22' width='4' height='20' rx='2'/%3E%3Crect x='538' y='14' width='4' height='36' rx='2'/%3E%3Crect x='546' y='6' width='4' height='52' rx='2'/%3E%3Crect x='554' y='20' width='4' height='24' rx='2'/%3E%3Crect x='562' y='10' width='4' height='44' rx='2'/%3E%3Crect x='570' y='24' width='4' height='16' rx='2'/%3E%3Crect x='578' y='2' width='4' height='60' rx='2'/%3E%3Crect x='586' y='18' width='4' height='28' rx='2'/%3E%3C/g%3E%3C/svg%3E")
    no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 64' preserveAspectRatio='none'%3E%3Cg fill='black'%3E%3Crect x='2' y='28' width='4' height='8' rx='2'/%3E%3Crect x='10' y='22' width='4' height='20' rx='2'/%3E%3Crect x='18' y='14' width='4' height='36' rx='2'/%3E%3Crect x='26' y='6' width='4' height='52' rx='2'/%3E%3Crect x='34' y='20' width='4' height='24' rx='2'/%3E%3Crect x='42' y='10' width='4' height='44' rx='2'/%3E%3Crect x='50' y='24' width='4' height='16' rx='2'/%3E%3Crect x='58' y='2' width='4' height='60' rx='2'/%3E%3Crect x='66' y='18' width='4' height='28' rx='2'/%3E%3Crect x='74' y='12' width='4' height='40' rx='2'/%3E%3Crect x='82' y='24' width='4' height='16' rx='2'/%3E%3Crect x='90' y='8' width='4' height='48' rx='2'/%3E%3Crect x='98' y='20' width='4' height='24' rx='2'/%3E%3Crect x='106' y='4' width='4' height='56' rx='2'/%3E%3Crect x='114' y='22' width='4' height='20' rx='2'/%3E%3Crect x='122' y='14' width='4' height='36' rx='2'/%3E%3Crect x='130' y='6' width='4' height='52' rx='2'/%3E%3Crect x='138' y='20' width='4' height='24' rx='2'/%3E%3Crect x='146' y='10' width='4' height='44' rx='2'/%3E%3Crect x='154' y='24' width='4' height='16' rx='2'/%3E%3Crect x='162' y='2' width='4' height='60' rx='2'/%3E%3Crect x='170' y='18' width='4' height='28' rx='2'/%3E%3Crect x='178' y='12' width='4' height='40' rx='2'/%3E%3Crect x='186' y='24' width='4' height='16' rx='2'/%3E%3Crect x='194' y='8' width='4' height='48' rx='2'/%3E%3Crect x='202' y='20' width='4' height='24' rx='2'/%3E%3Crect x='210' y='4' width='4' height='56' rx='2'/%3E%3Crect x='218' y='22' width='4' height='20' rx='2'/%3E%3Crect x='226' y='14' width='4' height='36' rx='2'/%3E%3Crect x='234' y='6' width='4' height='52' rx='2'/%3E%3Crect x='242' y='20' width='4' height='24' rx='2'/%3E%3Crect x='250' y='10' width='4' height='44' rx='2'/%3E%3Crect x='258' y='24' width='4' height='16' rx='2'/%3E%3Crect x='266' y='2' width='4' height='60' rx='2'/%3E%3Crect x='274' y='18' width='4' height='28' rx='2'/%3E%3Crect x='282' y='12' width='4' height='40' rx='2'/%3E%3Crect x='290' y='24' width='4' height='16' rx='2'/%3E%3Crect x='298' y='8' width='4' height='48' rx='2'/%3E%3Crect x='306' y='20' width='4' height='24' rx='2'/%3E%3Crect x='314' y='4' width='4' height='56' rx='2'/%3E%3Crect x='322' y='22' width='4' height='20' rx='2'/%3E%3Crect x='330' y='14' width='4' height='36' rx='2'/%3E%3Crect x='338' y='6' width='4' height='52' rx='2'/%3E%3Crect x='346' y='20' width='4' height='24' rx='2'/%3E%3Crect x='354' y='10' width='4' height='44' rx='2'/%3E%3Crect x='362' y='24' width='4' height='16' rx='2'/%3E%3Crect x='370' y='2' width='4' height='60' rx='2'/%3E%3Crect x='378' y='18' width='4' height='28' rx='2'/%3E%3Crect x='386' y='12' width='4' height='40' rx='2'/%3E%3Crect x='394' y='24' width='4' height='16' rx='2'/%3E%3Crect x='402' y='8' width='4' height='48' rx='2'/%3E%3Crect x='410' y='20' width='4' height='24' rx='2'/%3E%3Crect x='418' y='4' width='4' height='56' rx='2'/%3E%3Crect x='426' y='22' width='4' height='20' rx='2'/%3E%3Crect x='434' y='14' width='4' height='36' rx='2'/%3E%3Crect x='442' y='6' width='4' height='52' rx='2'/%3E%3Crect x='450' y='20' width='4' height='24' rx='2'/%3E%3Crect x='458' y='10' width='4' height='44' rx='2'/%3E%3Crect x='466' y='24' width='4' height='16' rx='2'/%3E%3Crect x='474' y='2' width='4' height='60' rx='2'/%3E%3Crect x='482' y='18' width='4' height='28' rx='2'/%3E%3Crect x='490' y='12' width='4' height='40' rx='2'/%3E%3Crect x='498' y='24' width='4' height='16' rx='2'/%3E%3Crect x='506' y='8' width='4' height='48' rx='2'/%3E%3Crect x='514' y='20' width='4' height='24' rx='2'/%3E%3Crect x='522' y='4' width='4' height='56' rx='2'/%3E%3Crect x='530' y='22' width='4' height='20' rx='2'/%3E%3Crect x='538' y='14' width='4' height='36' rx='2'/%3E%3Crect x='546' y='6' width='4' height='52' rx='2'/%3E%3Crect x='554' y='20' width='4' height='24' rx='2'/%3E%3Crect x='562' y='10' width='4' height='44' rx='2'/%3E%3Crect x='570' y='24' width='4' height='16' rx='2'/%3E%3Crect x='578' y='2' width='4' height='60' rx='2'/%3E%3Crect x='586' y='18' width='4' height='28' rx='2'/%3E%3C/g%3E%3C/svg%3E")
    no-repeat center / contain;
}

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

.section-heading {
  max-width: 720px;
  margin: 0 0 var(--s-12);
  text-align: left;
}

.section-heading::before {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  margin-bottom: var(--s-4);
  background: var(--brand-grad);
  border-radius: 2px;
}

/* — Home como tracklist: cada seção com lugar para o chip é uma faixa
     numerada. Só incrementa onde o chip pode aparecer (section-heading ou
     media-split), senão seções "mudas" (CTA flat, banner) consomem números
     e a contagem pula. — */
.stage #main {
  counter-reset: track;
}

.stage .section:has(.section-heading, .media-split-copy) {
  counter-increment: track;
}

.stage .section .section-heading::before,
.stage .section .media-split-copy::before {
  content: "TRACK " counter(track, decimal-leading-zero);
  width: auto;
  height: auto;
  display: inline-block;
  margin-bottom: var(--s-4);
  padding: 5px 12px;
  background: var(--brand-tint);
  color: var(--c-accent);
  border: 1px solid var(--brand-ring);
  border-radius: 3px;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

html[lang="pt-BR"] .stage .section .section-heading::before,
html[lang="pt-BR"] .stage .section .media-split-copy::before {
  content: "FAIXA " counter(track, decimal-leading-zero);
}

html[lang="es"] .stage .section .section-heading::before,
html[lang="es"] .stage .section .media-split-copy::before {
  content: "PISTA " counter(track, decimal-leading-zero);
}

.section-heading-with-media {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-10);
  align-items: center;
}

.section-heading-with-media::before {
  grid-column: 1;
}

/* — Cookie consent banner — */
.cookie-banner {
  position: fixed;
  left: var(--s-4);
  right: var(--s-4);
  bottom: var(--s-4);
  max-width: 720px;
  margin: 0 auto;
  padding: var(--s-4) var(--s-5);
  background: var(--c-surface);
  color: var(--c-text);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-2);
  display: flex;
  align-items: center;
  gap: var(--s-4);
  flex-wrap: wrap;
  z-index: calc(var(--z-overlay) - 1); /* acima da nav, abaixo do modal de confirmação */
  animation: cookie-in 0.4s ease-out;
}

.cookie-banner[hidden] { display: none; }

.cookie-banner-text {
  flex: 1 1 320px;
  margin: 0;
  font-size: 0.9rem;
  color: var(--c-text-soft);
  line-height: 1.5;
}

.cookie-banner-actions {
  display: flex;
  gap: var(--s-2);
  align-items: center;
  flex-wrap: wrap;
}

.cookie-banner-actions .button { padding: 8px 16px; font-size: 0.88rem; }

@keyframes cookie-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .cookie-banner { padding: var(--s-3); }
  .cookie-banner-actions { width: 100%; justify-content: flex-end; }
}

.section-heading-with-media .section-heading-text { min-width: 0; }
.section-heading-with-media .section-heading-text p { max-width: none; }

.section-heading-media {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-2);
  background: var(--c-surface-2);
}

.section-heading-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1024px) {
  .section-heading-with-media {
    grid-template-columns: 1fr;
    gap: var(--s-6);
  }
}

.section-heading h1,
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-heading h1 + p,
.section-heading h2 + p,
.section-heading p {
  margin-top: var(--s-4);
  color: var(--c-text-muted);
  font-size: 1.05rem;
  max-width: 620px;
}

.section-heading .eyebrow + h1,
.section-heading .eyebrow + h2 {
  margin-top: var(--s-3);
}

.eyebrow {
  display: inline-block;
  padding: 5px 12px;
  background: var(--brand-tint);
  color: var(--c-accent);
  border: 1px solid var(--brand-ring);
  border-radius: 3px;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.cards {
  grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  padding: var(--s-6);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-1);
  transition: transform var(--m-base), border-color var(--m-base), box-shadow var(--m-base), background var(--m-base);
  isolation: isolate;
  text-decoration: none;
  color: inherit;
}

.clickable-card {
  cursor: pointer;
}

.card-arrow {
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  z-index: 3;
  font-size: 1.25rem;
  color: var(--c-text-muted);
  opacity: 1;
  transform: translate(0, 0);
  transition: opacity var(--m-base), transform var(--m-base), color var(--m-base);
  pointer-events: none;
}

@media (hover: hover) {
  .clickable-card .card-arrow {
    opacity: 0;
    transform: translate(-4px, 4px);
  }
  .clickable-card:hover .card-arrow,
  .clickable-card:focus-visible .card-arrow {
    opacity: 1;
    transform: translate(0, 0);
    color: var(--c-text);
  }
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    var(--c-spotlight),
    transparent 40%
  );
  opacity: 0;
  transition: opacity var(--m-base);
  pointer-events: none;
  mix-blend-mode: screen;
}

[data-theme="dark"] .card::after {
  mix-blend-mode: plus-lighter;
}

@media (prefers-color-scheme: dark) {
  [data-theme="system"] .card::after {
    mix-blend-mode: plus-lighter;
  }
}

.card:hover::after {
  opacity: 1;
}

/* — VU meter no topo do card: barra âmbar que "enche" no hover — */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 26%;
  height: 3px;
  border-top-left-radius: inherit;
  background: var(--brand-grad);
  opacity: 0.45;
  transition: width 520ms cubic-bezier(.16, 1, .3, 1), opacity var(--m-base);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-ring);
  background: var(--c-surface);
  box-shadow: var(--sh-3);
}

.card:hover::before {
  width: 100%;
  opacity: 1;
  border-top-right-radius: inherit;
}

/* — Card Internals Layout — */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: var(--s-3);
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  flex-grow: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--s-3);
  border-top: 1px solid var(--c-border);
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--c-text);
  margin: 0;
}

.card p {
  color: var(--c-text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
  margin: 0;
}

/* — Ícone como pad de MPC: borracha com profundidade, acende no hover — */
.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(180deg, var(--c-surface-2) 0%, var(--c-bg-soft) 100%);
  color: var(--c-accent);
  border-radius: 10px;
  font-size: 1.4rem;
  border: 1px solid var(--c-border-strong);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12), var(--sh-1);
  transition: transform var(--m-fast) ease, border-color var(--m-fast) ease, box-shadow var(--m-base) ease, color var(--m-fast) ease;
}

.card:hover .card-icon {
  transform: scale(1.07);
  border-color: var(--brand-ring);
  color: var(--c-accent-light);
  box-shadow:
    inset 0 -2px 0 rgba(0, 0, 0, 0.12),
    0 0 0 3px var(--brand-tint),
    0 0 18px color-mix(in srgb, var(--c-accent) 30%, transparent);
}

.card-logo {
  display: block;
  max-width: 120px;
  max-height: 38px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.1) opacity(0.8);
  transition: filter var(--m-base), opacity var(--m-base);
}

.card:hover .card-logo {
  filter: grayscale(0) opacity(1);
}

.client-logo {
  display: block;
  max-width: 120px;
  max-height: 38px;
  object-fit: contain;
  padding: 6px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
}

.status {
  align-self: center;
  padding: 4px 10px;
  background: var(--brand-tint);
  color: var(--c-accent);
  border: 1px solid var(--brand-ring);
  border-radius: 3px;
  font-family: var(--ff-mono);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* — Testimonial Specifics — */
.quote-icon {
  font-size: 1.8rem;
  color: var(--c-accent);
  opacity: 0.45;
}

.quote-text {
  font-style: italic;
  font-size: 0.98rem !important;
  color: var(--c-text-soft) !important;
}

.client-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.client-info h3 {
  font-size: 0.96rem;
  font-weight: 700;
}

.client-info small {
  font-size: 0.8rem;
  color: var(--c-text-muted);
}

.visit-link-circle {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: var(--r-full);
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  background: var(--c-surface-2);
  transition: all var(--m-fast) ease;
}

.visit-link-circle:hover {
  color: var(--c-text);
  border-color: var(--brand-1);
  background: var(--c-bg-soft);
  transform: translateY(-1px);
}

/* — Pricing cards — */
.pricing {
  position: relative;
  padding-top: var(--s-8);
}

.pricing > p {
  min-height: calc(1.5em * 3);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pricing.recommended {
  border-color: var(--c-border-strong);
  background: var(--c-surface);
  box-shadow: var(--sh-glow);
}

.pricing.recommended::before {
  opacity: 0.02;
}

.pricing.recommended .status {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-1);
  color: var(--c-bg);
  padding: 6px 14px;
  font-weight: 800;
  box-shadow: var(--sh-2);
}

.pricing-list {
  display: grid;
  gap: 2px;
  margin: var(--s-5) 0;
  padding: 0;
  list-style: none;
}

.pricing-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: var(--s-2);
  padding: var(--s-2) 0;
  border-top: 1px solid var(--c-border);
  color: var(--c-text-soft);
  font-size: 0.84rem;
  line-height: 1.45;
}

.pricing-list li::before {
  content: "check";
  color: var(--c-success);
  font-family: "Material Symbols Outlined";
  font-size: 1.05rem;
  line-height: 1.4;
}

.pricing-list li.unavailable {
  color: var(--c-text-muted);
  text-decoration: line-through;
}

.pricing-list li.unavailable::before {
  content: "remove";
  color: var(--c-text-muted);
  text-decoration: none;
}

.pricing-list small {
  display: block;
  grid-column: 2;
  color: var(--c-text-muted);
  font-size: 0.74rem;
  text-decoration: none;
}

.pricing-price {
  margin-top: auto;
  padding-top: var(--s-4);
  border-top: 1px solid var(--c-border);
}

.pricing-price span {
  display: block;
  color: var(--c-text-muted);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.pricing-price strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.7rem;
  margin-bottom: var(--s-4);
}

.pricing-footer {
  flex-direction: column;
  align-items: stretch;
  gap: var(--s-3);
  margin-top: auto;
  padding-top: var(--s-4);
  border-top: 1px solid var(--c-border);
}

.pricing-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.pricing-price-row span {
  margin: 0;
}

.pricing-price-row strong {
  margin: 0;
  font-size: 1.8rem;
  color: var(--c-text);
  font-weight: 800;
}

.pricing-footer .button {
  width: 100%;
}

/* — Audience cards — */
.audience-card {
  min-height: 100%;
}

.check-list {
  display: grid;
  gap: var(--s-2);
  margin: var(--s-4) 0 0;
  padding: 0;
  list-style: none;
  color: var(--c-text-soft);
  font-size: 0.94rem;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: var(--s-2);
  line-height: 1.5;
}

.check-list li::before {
  content: "check_circle";
  color: var(--c-success);
  font-family: "Material Symbols Outlined";
  font-size: 1.1rem;
}

/* ============================================================
   Artist app section
   ============================================================ */

.app-artists,
.media-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: var(--s-12);
  align-items: center;
}

.media-split-copy h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.15;
  margin: var(--s-3) 0 var(--s-4);
}

.media-split-copy p {
  color: var(--c-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
}

.media-split-image {
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-4);
  background: var(--c-surface-2);
}

.media-split-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 900px) {
  .media-split { grid-template-columns: 1fr; gap: var(--s-6); }
}

.app-artists-copy h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.15;
  margin: var(--s-3) 0 var(--s-4);
}

.app-artists-copy p {
  color: var(--c-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
}

.phone-preview {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--s-2);
  min-height: 420px;
  padding: var(--s-8);
  color: white;
  background: linear-gradient(160deg, #1d1d1d 0%, #384b58 50%, #00a1e0 130%);
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-4);
  overflow: hidden;
  isolation: isolate;
}

.phone-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(600px circle at 0% 0%, rgba(167, 139, 250, .35), transparent 50%),
    radial-gradient(500px circle at 100% 100%, rgba(34, 211, 238, .35), transparent 50%);
}

.phone-preview .material-symbols-outlined {
  font-size: 5rem;
  background: rgba(255, 255, 255, .12);
  border-radius: var(--r-full);
  padding: var(--s-4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .18);
}

.phone-preview strong {
  font-family: var(--ff-display);
  font-size: 1.4rem;
}

.phone-preview small {
  color: rgba(255, 255, 255, .8);
  font-size: 0.94rem;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-list {
  display: grid;
  gap: var(--s-2);
  counter-reset: faq;
}

.stage .faq-list details {
  counter-increment: faq;
}

.stage .faq-list summary::before {
  content: counter(faq, decimal-leading-zero);
  flex-shrink: 0;
  font-family: var(--ff-mono);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.08em;
}

details {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  transition: border-color var(--m-base), box-shadow var(--m-base);
}

details[open] {
  border-color: var(--brand-ring);
  box-shadow: var(--sh-2);
}

summary {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-4) var(--s-5);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

summary::after {
  margin-left: auto;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "expand_more";
  font-family: "Material Symbols Outlined";
  font-size: 1.4rem;
  color: var(--brand-1);
  transition: transform var(--m-base);
}

details[open] summary::after {
  transform: rotate(180deg);
}

details > p,
details .rich-content {
  padding: 0 var(--s-5) var(--s-5);
  color: var(--c-text-soft);
  font-size: 0.94rem;
  line-height: 1.7;
}

details .rich-content p {
  margin: 0 0 var(--s-3) 0;
}

details .rich-content p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   CTA
   ============================================================ */

/* — CTA como credencial backstage: cartão âmbar levemente torto,
     borda perfurada à esquerda, carimbo ALL ACCESS e código de barras — */
.cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: var(--s-12) auto var(--s-20);
  max-width: var(--container);
  padding: var(--s-16) var(--s-8);
  color: var(--c-on-brand-grad);
  background: var(--brand-grad);
  border-radius: var(--r-lg);
  text-align: center;
  transform: rotate(-1deg);
  transition: transform var(--m-slow);
}

.cta:hover {
  transform: rotate(0deg);
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(700px circle at 20% 0%, rgba(255, 255, 255, 0.12), transparent 50%),
    radial-gradient(500px circle at 80% 100%, rgba(0, 0, 0, 0.1), transparent 50%);
}

.cta::after {
  content: "";
  position: absolute;
  top: var(--s-4);
  bottom: var(--s-4);
  left: 18px;
  border-left: 2px dashed rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.cta h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--s-3);
}

.cta p {
  max-width: 640px;
  margin: 0 auto var(--s-6);
  color: var(--c-on-brand-grad-soft);
  font-size: 1.05rem;
}

.cta-stamp {
  position: absolute;
  top: var(--s-5);
  right: var(--s-6);
  padding: 6px 12px;
  border: 2px solid currentColor;
  border-radius: 3px;
  font-family: var(--ff-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transform: rotate(5deg);
  opacity: 0.75;
  pointer-events: none;
}

.cta-barcode {
  position: absolute;
  right: var(--s-6);
  bottom: var(--s-5);
  width: 110px;
  height: 30px;
  background: repeating-linear-gradient(
    90deg,
    currentColor 0 2px, transparent 2px 5px,
    currentColor 5px 9px, transparent 9px 12px,
    currentColor 12px 13px, transparent 13px 17px
  );
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width: 700px) {
  .cta-stamp,
  .cta-barcode { display: none; }
  .cta { transform: none; }
}

.cta .button {
  background: var(--c-bg);
  color: var(--c-text);
  border: 1px solid var(--c-bg);
  box-shadow: var(--sh-2);
}

.cta .button:hover {
  background: var(--c-bg-soft);
  color: var(--c-text);
  border-color: var(--c-bg-soft);
  box-shadow: var(--sh-3);
}

/* Variante "flat": quando user escolhe background_style != default,
   o cartão gradient interno some e o CTA usa o fundo da seção. */
.cta-flat {
  background: none;
  color: var(--c-text);
  max-width: none;
  margin: 0;
  border-radius: 0;
  transform: none;
}

.cta-flat:hover { transform: none; }

.cta-flat::before,
.cta-flat::after,
.cta-flat .cta-stamp,
.cta-flat .cta-barcode { display: none; }

.cta-flat h2 { color: var(--c-text); }
.cta-flat p { color: var(--c-text-muted); }

.cta-flat .button {
  background: var(--btn-bg);
  color: var(--btn-fg);
  border-color: var(--btn-bg);
}

.cta-flat .button:hover {
  background: var(--btn-bg-hover);
  color: var(--btn-fg);
  border-color: var(--btn-bg-hover);
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  padding: var(--s-12) var(--s-6);
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
}

/* Faixa de "fita" no topo do footer (contador de rolo) */
.stage .footer::before {
  content: "";
  display: block;
  width: 100%;
  max-width: var(--container);
  height: 20px;
  margin: 0 auto var(--s-4);
  background: repeating-linear-gradient(90deg, var(--c-accent) 0 3px, transparent 3px 10px);
  -webkit-mask: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
  mask: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
  opacity: 0.3;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--s-12);
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: row;
  gap: var(--s-5);
  align-items: stretch;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  min-width: 0;
}

.footer-brand-name {
  font-family: var(--ff-display);
  font-size: 1.2rem;
}

.footer-brand-icon {
  flex: 0 0 auto;
  width: auto;
  height: 100%;
  max-height: 120px;
  align-self: stretch;
  filter: invert(1);
  opacity: 0.85;
}

[data-theme="dark"] .footer-brand-icon { filter: none; opacity: 1; }

@media (prefers-color-scheme: dark) {
  [data-theme="system"] .footer-brand-icon { filter: none; opacity: 1; }
}

.footer-brand p {
  color: var(--c-text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
  max-width: 360px;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
  margin-bottom: var(--s-3);
}

.footer-col a {
  display: block;
  padding: 4px 0;
  color: var(--c-text-soft);
  font-size: 0.94rem;
}

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding-top: var(--s-6);
  border-top: 1px solid var(--c-border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-3);
  font-family: var(--ff-mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--c-text-muted);
}

/* ============================================================
   Variantes de fundo de seção (visual rhythm)
   Todas usam tokens (--brand-*, --c-*) que já adaptam claro/escuro.
   ============================================================ */

/* — Mesh: 2 orbs gradient blurred no fundo — */
.section-mesh {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.section-mesh::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 600px at 0% 0%, var(--brand-tint), transparent 55%),
    radial-gradient(700px 500px at 100% 100%, color-mix(in srgb, var(--brand-2) 14%, transparent), transparent 55%);
}

[data-theme="dark"] .section-mesh::before {
  background:
    radial-gradient(900px 600px at 0% 0%, color-mix(in srgb, var(--brand-1) 18%, transparent), transparent 55%),
    radial-gradient(700px 500px at 100% 100%, color-mix(in srgb, var(--brand-2) 18%, transparent), transparent 55%);
}

@media (prefers-color-scheme: dark) {
  [data-theme="system"] .section-mesh::before {
    background:
      radial-gradient(900px 600px at 0% 0%, color-mix(in srgb, var(--brand-1) 18%, transparent), transparent 55%),
      radial-gradient(700px 500px at 100% 100%, color-mix(in srgb, var(--brand-2) 18%, transparent), transparent 55%);
  }
}

/* — Tinted: gradiente diagonal sutil da paleta — */
.section-tinted {
  position: relative;
  isolation: isolate;
}

.section-tinted::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(135deg, var(--brand-tint), transparent 60%);
}

[data-theme="dark"] .section-tinted::before,
.section-tinted.invert::before {
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand-2) 12%, transparent), transparent 60%);
}

@media (prefers-color-scheme: dark) {
  [data-theme="system"] .section-tinted::before {
    background: linear-gradient(135deg, color-mix(in srgb, var(--brand-2) 12%, transparent), transparent 60%);
  }
}

/* — Waveform: pattern de barras na parte inferior — */
.section-waveform {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.section-waveform::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, var(--brand-tint) 100%);
  opacity: .6;
}

.section-waveform::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  z-index: -1;
  pointer-events: none;
  background: var(--brand-grad);
  opacity: .08;
  -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 140' preserveAspectRatio='none'%3E%3Cg fill='black'%3E%3Crect x='0' y='80' width='6' height='40' rx='3'/%3E%3Crect x='14' y='60' width='6' height='60' rx='3'/%3E%3Crect x='28' y='40' width='6' height='80' rx='3'/%3E%3Crect x='42' y='20' width='6' height='100' rx='3'/%3E%3Crect x='56' y='50' width='6' height='70' rx='3'/%3E%3Crect x='70' y='30' width='6' height='90' rx='3'/%3E%3Crect x='84' y='70' width='6' height='50' rx='3'/%3E%3Crect x='98' y='10' width='6' height='110' rx='3'/%3E%3Crect x='112' y='55' width='6' height='65' rx='3'/%3E%3Crect x='126' y='35' width='6' height='85' rx='3'/%3E%3Crect x='140' y='75' width='6' height='45' rx='3'/%3E%3Crect x='154' y='25' width='6' height='95' rx='3'/%3E%3Crect x='168' y='65' width='6' height='55' rx='3'/%3E%3Crect x='182' y='45' width='6' height='75' rx='3'/%3E%3Crect x='196' y='85' width='6' height='35' rx='3'/%3E%3C/g%3E%3C/svg%3E") repeat-x bottom / 210px 100%;
          mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 140' preserveAspectRatio='none'%3E%3Cg fill='black'%3E%3Crect x='0' y='80' width='6' height='40' rx='3'/%3E%3Crect x='14' y='60' width='6' height='60' rx='3'/%3E%3Crect x='28' y='40' width='6' height='80' rx='3'/%3E%3Crect x='42' y='20' width='6' height='100' rx='3'/%3E%3Crect x='56' y='50' width='6' height='70' rx='3'/%3E%3Crect x='70' y='30' width='6' height='90' rx='3'/%3E%3Crect x='84' y='70' width='6' height='50' rx='3'/%3E%3Crect x='98' y='10' width='6' height='110' rx='3'/%3E%3Crect x='112' y='55' width='6' height='65' rx='3'/%3E%3Crect x='126' y='35' width='6' height='85' rx='3'/%3E%3Crect x='140' y='75' width='6' height='45' rx='3'/%3E%3Crect x='154' y='25' width='6' height='95' rx='3'/%3E%3Crect x='168' y='65' width='6' height='55' rx='3'/%3E%3Crect x='182' y='45' width='6' height='75' rx='3'/%3E%3Crect x='196' y='85' width='6' height='35' rx='3'/%3E%3C/g%3E%3C/svg%3E") repeat-x bottom / 210px 100%;
}

[data-theme="dark"] .section-waveform::after {
  opacity: .14;
}

@media (prefers-color-scheme: dark) {
  [data-theme="system"] .section-waveform::after { opacity: .14; }
}

/* — Dots: pattern de pontos suaves — */
.section-dots {
  position: relative;
  isolation: isolate;
}

.section-dots::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(circle at center, var(--c-border-strong) 1px, transparent 1.5px);
  background-size: 32px 32px;
  background-position: 0 0;
  opacity: .5;
  mask: linear-gradient(180deg, transparent, black 20%, black 80%, transparent);
  -webkit-mask: linear-gradient(180deg, transparent, black 20%, black 80%, transparent);
}

[data-theme="dark"] .section-dots::before {
  background-image: radial-gradient(circle at center, color-mix(in srgb, var(--brand-1) 30%, transparent) 1px, transparent 1.5px);
  opacity: .8;
}

@media (prefers-color-scheme: dark) {
  [data-theme="system"] .section-dots::before {
    background-image: radial-gradient(circle at center, color-mix(in srgb, var(--brand-1) 30%, transparent) 1px, transparent 1.5px);
    opacity: .8;
  }
}

/* ============================================================
   Waveform divider (entre seções)
   ============================================================ */

.wave-divider {
  display: block;
  width: 100%;
  height: 60px;
  margin: 0;
  background:
    linear-gradient(90deg, transparent, var(--brand-1) 30%, var(--brand-2) 70%, transparent);
  -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cg fill='black'%3E%3Crect x='0' y='28' width='3' height='4' rx='1.5'/%3E%3Crect x='8' y='24' width='3' height='12' rx='1.5'/%3E%3Crect x='16' y='18' width='3' height='24' rx='1.5'/%3E%3Crect x='24' y='12' width='3' height='36' rx='1.5'/%3E%3Crect x='32' y='6' width='3' height='48' rx='1.5'/%3E%3Crect x='40' y='14' width='3' height='32' rx='1.5'/%3E%3Crect x='48' y='22' width='3' height='16' rx='1.5'/%3E%3Crect x='56' y='10' width='3' height='40' rx='1.5'/%3E%3Crect x='64' y='2' width='3' height='56' rx='1.5'/%3E%3Crect x='72' y='18' width='3' height='24' rx='1.5'/%3E%3Crect x='80' y='26' width='3' height='8' rx='1.5'/%3E%3Crect x='88' y='14' width='3' height='32' rx='1.5'/%3E%3Crect x='96' y='8' width='3' height='44' rx='1.5'/%3E%3Crect x='104' y='20' width='3' height='20' rx='1.5'/%3E%3Crect x='112' y='4' width='3' height='52' rx='1.5'/%3E%3Crect x='120' y='16' width='3' height='28' rx='1.5'/%3E%3Crect x='128' y='24' width='3' height='12' rx='1.5'/%3E%3Crect x='136' y='10' width='3' height='40' rx='1.5'/%3E%3Crect x='144' y='2' width='3' height='56' rx='1.5'/%3E%3Crect x='152' y='18' width='3' height='24' rx='1.5'/%3E%3Crect x='160' y='26' width='3' height='8' rx='1.5'/%3E%3Crect x='168' y='14' width='3' height='32' rx='1.5'/%3E%3Crect x='176' y='6' width='3' height='48' rx='1.5'/%3E%3Crect x='184' y='20' width='3' height='20' rx='1.5'/%3E%3Crect x='192' y='12' width='3' height='36' rx='1.5'/%3E%3Crect x='200' y='4' width='3' height='52' rx='1.5'/%3E%3C/g%3E%3C/svg%3E") repeat-x center / 200px 100%;
  mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cg fill='black'%3E%3Crect x='0' y='28' width='3' height='4' rx='1.5'/%3E%3Crect x='8' y='24' width='3' height='12' rx='1.5'/%3E%3Crect x='16' y='18' width='3' height='24' rx='1.5'/%3E%3Crect x='24' y='12' width='3' height='36' rx='1.5'/%3E%3Crect x='32' y='6' width='3' height='48' rx='1.5'/%3E%3Crect x='40' y='14' width='3' height='32' rx='1.5'/%3E%3Crect x='48' y='22' width='3' height='16' rx='1.5'/%3E%3Crect x='56' y='10' width='3' height='40' rx='1.5'/%3E%3Crect x='64' y='2' width='3' height='56' rx='1.5'/%3E%3Crect x='72' y='18' width='3' height='24' rx='1.5'/%3E%3Crect x='80' y='26' width='3' height='8' rx='1.5'/%3E%3Crect x='88' y='14' width='3' height='32' rx='1.5'/%3E%3Crect x='96' y='8' width='3' height='44' rx='1.5'/%3E%3Crect x='104' y='20' width='3' height='20' rx='1.5'/%3E%3Crect x='112' y='4' width='3' height='52' rx='1.5'/%3E%3Crect x='120' y='16' width='3' height='28' rx='1.5'/%3E%3Crect x='128' y='24' width='3' height='12' rx='1.5'/%3E%3Crect x='136' y='10' width='3' height='40' rx='1.5'/%3E%3Crect x='144' y='2' width='3' height='56' rx='1.5'/%3E%3Crect x='152' y='18' width='3' height='24' rx='1.5'/%3E%3Crect x='160' y='26' width='3' height='8' rx='1.5'/%3E%3Crect x='168' y='14' width='3' height='32' rx='1.5'/%3E%3Crect x='176' y='6' width='3' height='48' rx='1.5'/%3E%3Crect x='184' y='20' width='3' height='20' rx='1.5'/%3E%3Crect x='192' y='12' width='3' height='36' rx='1.5'/%3E%3Crect x='200' y='4' width='3' height='52' rx='1.5'/%3E%3C/g%3E%3C/svg%3E") repeat-x center / 200px 100%;
  opacity: .35;
}

/* ============================================================
   Card tilt (microinteração)
   ============================================================ */

.card[data-tilt] {
  transform-style: preserve-3d;
  transition: transform var(--m-base);
  will-change: transform;
}

@media (hover: hover) {
  .card[data-tilt]:hover {
    transform: perspective(1000px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-4px);
  }
}

@media (min-width: 901px) {
  .card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-3), 0 10px 30px -10px rgba(0, 0, 0, 0.15);
  }

  .card[data-tilt]:hover {
    transform: perspective(1000px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-8px);
  }
}

/* ============================================================
   Hero "now playing" indicator
   ============================================================ */

.now-playing {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(16, 185, 129, .12);
  color: var(--c-success);
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid rgba(16, 185, 129, .25);
}

.now-playing .pulse {
  width: 8px;
  height: 8px;
  background: var(--c-success);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 0 0 var(--c-success);
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, .55); }
  70%  { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ============================================================
   DEMO: layouts desconstruídos
   ============================================================ */

.demo-section {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--s-20) var(--s-6);
  border-bottom: 1px dashed var(--c-border-strong);
}

.demo-label {
  position: absolute;
  top: var(--s-4);
  left: var(--s-6);
  padding: 4px 10px;
  background: var(--c-text);
  color: var(--c-bg);
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 5;
}

/* — Variante 1: Editorial assimétrico — */
.style-editorial {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-8);
  align-items: start;
}

.style-editorial .heading {
  text-align: left;
  max-width: 540px;
}

.style-editorial .section-number {
  font-family: var(--ff-display);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 800;
  line-height: 0.85;
  background: var(--brand-grad-text);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  opacity: 0.55;
}

.style-editorial .cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-8);
}

.style-editorial .cards .card:nth-child(2),
.style-editorial .cards .card:nth-child(4) {
  margin-top: var(--s-12);
}

.style-editorial .cards .card:nth-child(3) {
  margin-top: var(--s-6);
}

@media (max-width: 900px) {
  .style-editorial { grid-template-columns: 1fr; }
  .style-editorial .section-number { font-size: 4rem; opacity: 0.3; position: absolute; top: var(--s-8); right: var(--s-6); pointer-events: none; }
  .style-editorial .cards { grid-template-columns: 1fr; gap: var(--s-4); }
  .style-editorial .cards .card { margin-top: 0 !important; }
}

/* — Variante 2: Bento grid — */
.style-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}

.style-bento .heading {
  text-align: left;
}

.style-bento .bento-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--s-4);
}

.style-bento .bento-hero {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  padding: var(--s-8);
  background: var(--brand-grad);
  color: var(--c-on-brand-grad);
  border-radius: var(--r-2xl);
  position: relative;
  overflow: hidden;
}

.style-bento .bento-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px circle at 20% 0%, rgba(255,255,255,.3), transparent 50%),
    radial-gradient(400px circle at 100% 100%, rgba(255,255,255,.15), transparent 50%);
}

.style-bento .bento-hero > * { position: relative; }

.style-bento .bento-hero .material-symbols-outlined {
  font-size: 3.5rem;
  margin-bottom: var(--s-3);
}

.style-bento .bento-hero h3 {
  font-size: 1.8rem;
  margin-bottom: var(--s-3);
}

.style-bento .bento-hero p {
  color: var(--c-on-brand-grad-soft);
  max-width: 420px;
}

.style-bento .bento-cell {
  padding: var(--s-5);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
}

.style-bento .bento-cell .material-symbols-outlined {
  font-size: 1.8rem;
  color: var(--brand-1);
  margin-bottom: var(--s-2);
}

.style-bento .bento-cell h3 { font-size: 1.05rem; margin-bottom: var(--s-2); }
.style-bento .bento-cell p { color: var(--c-text-muted); font-size: 0.9rem; line-height: 1.5; }

.style-bento .bento-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}

@media (max-width: 900px) {
  .style-bento .bento-grid { grid-template-columns: 1fr; }
  .style-bento .bento-hero { grid-row: auto; min-height: 240px; }
  .style-bento .bento-row { grid-template-columns: 1fr; }
}

/* — Variante 3: Sticky lateral — */
.style-sticky {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: var(--s-12);
  align-items: start;
}

.style-sticky .heading {
  position: sticky;
  top: calc(var(--nav-h) + var(--s-6));
  text-align: left;
}

.style-sticky .heading h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.1;
  margin: var(--s-3) 0;
}

.style-sticky .heading p {
  color: var(--c-text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.style-sticky .heading::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: var(--s-5);
  background: var(--brand-grad);
  border-radius: 2px;
}

.style-sticky .cards-stack {
  display: grid;
  gap: var(--s-4);
}

.style-sticky .card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--s-4);
  align-items: start;
  padding: var(--s-5);
}

@media (max-width: 900px) {
  .style-sticky { grid-template-columns: 1fr; gap: var(--s-6); }
  .style-sticky .heading { position: static; }
}

/* — Variante 4: Off-center à esquerda — */
.style-offcenter .heading {
  text-align: left;
  max-width: 580px;
  margin-bottom: var(--s-10);
}

.style-offcenter .heading::before {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: var(--brand-grad);
  border-radius: 2px;
  margin-bottom: var(--s-4);
}

.style-offcenter .heading .eyebrow {
  background: transparent;
  color: var(--brand-1);
  padding: 0;
  border-radius: 0;
}

.style-offcenter .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

@media (max-width: 900px) {
  .style-offcenter .cards { grid-template-columns: 1fr; }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
  .cards            { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner     { grid-template-columns: 1fr 1fr; }
  .footer-brand     { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  :root { --nav-h: 60px; }

  .site-nav {
    padding: 0 var(--s-6);
    gap: var(--s-2);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--c-bg);
  }

  .brand-logo {
    height: 28px;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: var(--s-4);
    background: var(--c-bg);
    border-top: 1px solid var(--c-border);
    transform: translateX(100%);
    transition: transform var(--m-base);
    overflow-y: auto;
    z-index: var(--z-overlay);
    visibility: hidden;
  }

  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-links > a,
  .nav-links > form {
    padding: var(--s-3) var(--s-2);
    border-bottom: 1px solid var(--c-border);
  }

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

  .nav-toggle {
    display: inline-flex !important;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: var(--s-8);
    padding-top: var(--s-12);
    padding-bottom: var(--s-12);
  }

  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }

  .product-preview-container {
    perspective: none;
    margin-top: var(--s-6);
  }

  .product-preview {
    min-height: auto;
    transform: none !important;
    animation: none !important;
    box-shadow: var(--sh-2);
    border-radius: var(--r-md);
  }

  .product-preview::before {
    display: none;
  }

  .floating-widget {
    display: none !important;
  }

  .section { padding-top: var(--s-12); padding-bottom: var(--s-12); }

  .section.muted {
    --muted-fade: 48px;
    padding-top: calc(var(--s-12) + var(--s-4));
    padding-bottom: calc(var(--s-12) + var(--s-4));
  }

  .section-heading { margin-bottom: var(--s-8); }

  .cards            { grid-template-columns: 1fr; }

  .app-artists      { grid-template-columns: 1fr; gap: var(--s-8); }
  .footer-inner     { grid-template-columns: 1fr; }
  .footer-brand     { grid-column: 1; }

  .cta              { padding: var(--s-12) var(--s-6); margin: var(--s-8) var(--s-4); }
}

@media (max-width: 480px) {
  .site-nav { padding: 0 var(--s-4); }
  .hero { padding: var(--s-10) var(--s-4); }
  .actions .button { width: 100%; }
}
