/* =========================================================================
   Design system — tema escuro
   Tokens medidos do funil de referência (try-breeze.com/funnel/childhood).
   Mobile-first, coluna centralizada, alvos de toque grandes.
   ========================================================================= */

:root {
  /* fundos */
  --bg:               #0b0f1a;
  --surface:          #1b1f2e;
  --secondary:        #151a26;

  /* opções */
  --option-bg:        #252535;
  --option-hover:     #333348;
  --option-on-bg:     #ffffff;
  --option-on-text:   #1b1f2e;

  /* marca */
  --menta:            #5acfb3;
  --menta-hover:      #3cbc9d;
  --menta-off:        #02503d;
  --indigo:           #5f70da;
  --coral:            #ff522c;
  --ambar:            #e8a33d;

  /* texto */
  --txt:              #ffffff;
  --txt-2:            #a6a9b8;
  --txt-3:            #6c7086;
  --txt-inverso:      #1b1f2e;

  /* formulário */
  --input-bg:         #151a26;
  --input-borda:      #2a2f45;
  --input-foco:       #5acfb3;
  --input-ph:         #6c7086;
  --check-on:         #5acfb3;
  --check-off:        #3e3e55;

  /* stepper */
  --step-on:          #5acfb3;
  --step-linha:       #1b1f2e;
  --step-circulo:     #0b0f1a;

  --r:                14px;
  --r-lg:             20px;
  --max:              414px;
  --fonte:            'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
/* A regra do navegador para [hidden] tem especificidade zero e qualquer
   `.classe { display: … }` a vence, deixando overlay invisível bloqueando
   cliques. Precisa vir antes de tudo. */
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--txt);
  font-family: var(--fonte);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -.01em; line-height: 1.24; }
p { margin: 0 0 1em; }
a { color: var(--menta); }
img { max-width: 100%; display: block; }

.app { max-width: var(--max); margin: 0 auto; padding: 0 16px 32px; min-height: 100dvh; }

/* ------------------------------------------------------------- STEPPER */
#topbar { padding: 14px 0 10px; min-height: 56px; }
#topbar.vazio { min-height: 8px; padding: 0; }

.stepper { display: flex; align-items: center; gap: 0; position: relative; padding-top: 16px; }
.cat { display: flex; align-items: center; flex: 1; position: relative; }
.cat:last-child { flex: 0 0 auto; }
.cat .bolinha {
  width: 18px; height: 18px; border-radius: 50%; flex: none;
  background: var(--step-circulo); border: 2px solid var(--step-linha);
  display: grid; place-items: center; font-size: 10px; font-weight: 600; color: var(--txt-3);
  transition: all .3s;
}
.cat .linha { flex: 1; height: 3px; background: var(--step-linha); border-radius: 99px; overflow: hidden; }
.cat .linha i { display: block; height: 100%; width: 0; background: var(--menta); border-radius: 99px; transition: width .5s cubic-bezier(.4,0,.2,1); }
.cat.feita .bolinha, .cat.ativa .bolinha { border-color: var(--menta); color: var(--menta); }
.cat.feita .bolinha { background: var(--menta); color: var(--bg); }
.cat.ativa .bolinha { box-shadow: 0 0 0 4px rgba(90,207,179,.14); }
.cat .nome {
  position: absolute; top: -18px; left: 0; font-size: 11px; font-weight: 600;
  color: var(--menta); white-space: nowrap; opacity: 0; transition: opacity .3s;
}
.cat.ativa .nome { opacity: 1; }

.barra-topo { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.btn-voltar {
  width: 32px; height: 32px; border-radius: 50%; border: 0; background: transparent;
  color: var(--txt-3); display: grid; place-items: center; padding: 0; flex: none;
}
.btn-voltar svg { width: 22px; height: 22px; }
.btn-som { width: 32px; height: 32px; border: 0; background: none; color: var(--txt-2); padding: 0; flex: none; display: grid; place-items: center; }
.btn-som svg { width: 20px; height: 20px; }

/* ---------------------------------------------------------- TRANSIÇÕES */
.step { animation: entra .32s cubic-bezier(.22,.7,.3,1) both; }
.step.de-tras { animation-name: entra-tras; }
@keyframes entra { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: none; } }
@keyframes entra-tras { from { opacity: 0; transform: translateX(-16px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }

/* ------------------------------------------------------------- CABEÇALHO */
.titulo { font-size: 24px; text-align: center; margin: 6px 0 6px; }
.subtitulo { font-size: 14px; color: var(--txt-2); text-align: center; margin: 0 0 20px; }
.porque {
  display: inline-flex; align-items: center; gap: 5px; background: none; border: 0;
  color: var(--menta); font-size: 14px; font-weight: 600; padding: 6px 0; margin: 0 auto 18px;
}
.porque svg { width: 15px; height: 15px; }
.porque-txt {
  background: var(--surface); border-radius: var(--r); padding: 14px 16px;
  font-size: 13.5px; color: var(--txt-2); margin: 0 0 18px; text-align: left;
}
.centro { display: flex; flex-direction: column; align-items: center; }

/* ----------------------------------------------------------- TILE (cards) */
.tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: 100%; }
.tile {
  background: var(--surface); border: 0; border-radius: var(--r-lg); overflow: hidden;
  padding: 0; text-align: center; transition: transform .12s, box-shadow .2s;
}
.tile:active { transform: scale(.98); }
.tile .fig { aspect-ratio: 1; display: grid; place-items: center; padding: 10px; }
.tile .fig svg, .tile .fig img { width: 100%; height: 100%; object-fit: contain; }
.tile .lbl { display: block; padding: 12px 8px; font-size: 15px; font-weight: 500; }
.tile.on { background: var(--option-on-bg); }
.tile.on .lbl { color: var(--option-on-text); font-weight: 600; }

/* ------------------------------------------------------------- OPÇÕES */
.opcoes { display: grid; gap: 10px; width: 100%; }
.opcao {
  display: flex; align-items: center; gap: 12px; width: 100%; text-align: left;
  background: var(--option-bg); border: 0; border-radius: var(--r);
  padding: 16px 18px; min-height: 56px; font-size: 15.5px; line-height: 1.35;
  transition: background .15s, transform .1s, color .15s;
}
.opcao:active { transform: scale(.99); }
.opcao.centralizada { justify-content: center; text-align: center; }
.opcao .txt { flex: 1; }
.opcao.centralizada .txt { flex: 0 1 auto; }
.opcao:hover { background: var(--option-hover); }
.opcao.on { background: var(--option-on-bg); color: var(--option-on-text); font-weight: 600; }

.opcao .box {
  flex: none; width: 22px; height: 22px; border-radius: 6px;
  border: 2px solid var(--check-off); display: grid; place-items: center;
  color: transparent; transition: all .15s;
}
.opcao .box svg { width: 13px; height: 13px; }
.opcao.on .box { background: var(--check-on); border-color: var(--check-on); color: #fff; }

/* --------------------------------------------------------- TESTE DE IMAGEM */
.teste-img {
  width: 100%; aspect-ratio: 1; border-radius: var(--r-lg); overflow: hidden;
  margin-bottom: 22px; background: var(--surface);
}
.teste-img img, .teste-img svg { width: 100%; height: 100%; object-fit: cover; }

/* ------------------------------------------------------------- BOTÕES */
.acoes { position: sticky; bottom: 0; padding: 22px 0 max(16px, env(safe-area-inset-bottom));
         background: linear-gradient(180deg, rgba(11,15,26,0), var(--bg) 26%, var(--bg)); margin-top: 20px; }
/* telas longas: espaço para o último cartão não ficar sob a ação fixa */
.resultado, .jornada { padding-bottom: 8px; }
.btn {
  position: relative; width: 100%; border: 0; border-radius: 99px; padding: 17px 22px;
  background: var(--menta); color: #fff; font-weight: 600; font-size: 16.5px;
  overflow: hidden; transition: background .18s, opacity .2s, transform .1s;
}
.btn:hover { background: var(--menta-hover); }
.btn:active { transform: scale(.99); }
.btn:disabled { background: var(--menta-off); color: var(--txt-3); }
.btn .folhas { position: absolute; inset: 0; pointer-events: none; opacity: .5; }
.btn:disabled .folhas { display: none; }
.btn-texto { background: none; border: 0; color: var(--txt-3); font-size: 14px; padding: 12px; width: 100%; text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------------- FORMS */
.campo {
  width: 100%; padding: 16px 18px; font-size: 16px; font-family: inherit;
  background: var(--input-bg); border: 1.5px solid var(--input-borda);
  border-radius: var(--r); color: var(--txt);
}
.campo::placeholder { color: var(--input-ph); }
.campo:focus { outline: none; border-color: var(--input-foco); }
.campo.erro { border-color: var(--coral); }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--txt-2); margin: 14px 0 0; text-align: left; }
.consent input { margin-top: 2px; width: 18px; height: 18px; accent-color: var(--menta); flex: none; }
.aviso-seguro { display: flex; gap: 6px; align-items: center; justify-content: center; font-size: 12px; color: var(--txt-3); margin-top: 12px; }
.aviso-seguro svg { width: 14px; height: 14px; }

/* --------------------------------------------------------------- INTRO */
.intro .marca { text-align: center; font-weight: 700; letter-spacing: .04em; font-size: 15px; color: var(--menta); padding: 18px 0 26px; }
.intro .titulo { font-size: 27px; }
.disclaimer-box {
  border: 1px solid var(--indigo); border-radius: var(--r); padding: 13px 15px;
  font-size: 12px; line-height: 1.45; color: var(--txt-2); text-align: center; margin-top: 26px;
}
.prova-linha { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 13px; color: var(--txt-2); margin-top: 20px; }
.estrelas { display: inline-flex; gap: 1px; color: var(--ambar); }
.estrelas svg { width: 14px; height: 14px; }

/* -------------------------------------------------------------- GRÁFICO */
.grafico-tela { text-align: center; padding-top: 30px; }
.grafico-tela .titulo { font-size: 26px; margin-bottom: 22px; }
.legenda { display: flex; gap: 18px; justify-content: center; margin-bottom: 24px; }
.legenda div { display: flex; gap: 7px; align-items: flex-start; font-size: 12.5px; color: var(--txt-2); text-align: left; max-width: 150px; }
.legenda i { width: 7px; height: 7px; border-radius: 50%; margin-top: 6px; flex: none; }
.barras { display: flex; align-items: flex-end; justify-content: space-around; gap: 8px; height: 190px; border-bottom: 1px solid var(--surface); padding: 0 4px; }
.grupo { display: flex; align-items: flex-end; gap: 5px; height: 100%; }
.barra { width: 15px; border-radius: 99px 99px 0 0; animation: sobeBarra .9s cubic-bezier(.2,.8,.3,1) both; }
.barra.antes { background: #c25a3c; }
.barra.depois { background: var(--indigo); }
@keyframes sobeBarra { from { height: 0 !important; } }
.eixo-x { display: flex; justify-content: space-around; gap: 8px; margin-top: 10px; }
.eixo-x span { font-size: 11px; color: var(--txt-2); flex: 1; text-align: center; }
.nota-grafico { font-size: 12px; color: var(--txt-3); margin-top: 20px; }

/* -------------------------------------------------------------- JORNADA */
.jornada { text-align: center; padding-top: 20px; }
.jornada .curva { width: 100%; margin: 20px 0; }
.marcos { display: grid; gap: 12px; text-align: left; margin-top: 6px; }
.marco { display: flex; gap: 13px; background: var(--surface); border-radius: var(--r); padding: 14px 16px; }
.marco b { color: var(--menta); font-size: 13px; flex: none; width: 62px; }
.marco span { font-size: 14px; color: var(--txt-2); }

/* -------------------------------------------------------------- ANÁLISE */
.analise { text-align: center; padding-top: 50px; }
.anel { position: relative; width: 150px; height: 150px; margin: 0 auto 28px; }
.anel svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.anel circle { fill: none; stroke-width: 8; stroke-linecap: round; }
.anel .trilha { stroke: var(--surface); }
.anel .corrida { stroke: var(--menta); transition: stroke-dashoffset .1s linear; }
.anel .pct { position: absolute; inset: 0; display: grid; place-items: center; font-size: 30px; font-weight: 700; }
.etapas { list-style: none; padding: 0; margin: 26px auto 0; display: grid; gap: 13px; max-width: 320px; text-align: left; }
.etapas li { display: flex; gap: 11px; align-items: center; font-size: 14.5px; color: var(--txt-3); transition: color .3s; }
.etapas li .mk { flex: none; width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--check-off); display: grid; place-items: center; color: transparent; }
.etapas li .mk svg { width: 12px; height: 12px; }
.etapas li.ativo { color: var(--txt); font-weight: 600; }
.etapas li.ok .mk { background: var(--menta); border-color: var(--menta); color: var(--bg); }

/* --------------------------------------------------------------- MODAIS */
.modal { position: fixed; inset: 0; z-index: 60; background: rgba(5,8,14,.72); display: grid; place-items: end center; opacity: 0; transition: opacity .25s; backdrop-filter: blur(4px); }
.modal.abre { opacity: 1; }
.modal .cx {
  width: 100%; max-width: var(--max); background: var(--surface); color: var(--txt);
  border-radius: 22px 22px 0 0; padding: 26px 18px max(24px, env(safe-area-inset-bottom));
  transform: translateY(20px); transition: transform .3s cubic-bezier(.22,.7,.3,1); text-align: center;
}
.modal.abre .cx { transform: none; }
.modal h3 { font-size: 20px; margin-bottom: 10px; }
.modal p { font-size: 14.5px; color: var(--txt-2); }
.c-pergunta { font-size: 18px; font-weight: 600; margin-bottom: 18px; text-align: left; }
.c-opcoes { display: grid; gap: 9px; }
.c-opcoes button { padding: 15px 17px; border-radius: var(--r); border: 0; background: var(--option-bg); color: var(--txt); text-align: left; font-size: 15px; }
.c-opcoes button:hover { background: var(--option-hover); }
.c-resposta { font-size: 15px; color: var(--txt-2); margin-bottom: 18px; text-align: left; }

/* ------------------------------------------------------------ RESULTADO */
.resultado { padding-top: 8px; }
.selo-res { display: inline-block; background: rgba(90,207,179,.12); color: var(--menta); font-size: 11px; font-weight: 700; letter-spacing: .1em; padding: 6px 12px; border-radius: 99px; margin-bottom: 14px; }
.perfil-nome { font-size: 28px; margin-bottom: 8px; }
.perfil-lema { color: var(--txt-2); font-size: 16px; margin-bottom: 22px; }
.cartao { background: var(--surface); border-radius: var(--r-lg); padding: 20px 18px; margin-bottom: 12px; }
.cartao h3 { font-size: 17px; margin-bottom: 11px; }
.cartao p { font-size: 15px; color: var(--txt-2); }
.medidor-topo { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.medidor-topo span { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--txt-3); }
.medidor-topo strong { font-size: 32px; }
.medidor-topo strong small { font-size: 14px; color: var(--txt-3); }
.nivel-alto { color: var(--coral); } .nivel-moderado { color: var(--ambar); } .nivel-leve { color: var(--menta); }
.barra-med { height: 10px; border-radius: 99px; background: var(--secondary); position: relative; }
.barra-med i { position: absolute; inset: 0 auto 0 0; border-radius: 99px; background: linear-gradient(90deg, var(--menta), var(--ambar) 58%, var(--coral)); animation: cresce 1s cubic-bezier(.2,.8,.3,1) both; }
.barra-med i::after { content: ''; position: absolute; right: 0; top: 50%; transform: translate(50%,-50%); width: 16px; height: 16px; border-radius: 50%; background: var(--bg); border: 3px solid var(--coral); }
@keyframes cresce { from { width: 0 !important; } }
.leg-med { display: flex; justify-content: space-between; font-size: 11px; color: var(--txt-3); margin-top: 8px; }
.lista-custos { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.lista-custos li { position: relative; padding-left: 22px; font-size: 14.5px; color: var(--txt-2); }
.lista-custos li::before { content: ''; position: absolute; left: 4px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
.padrao { border-left: 2px solid var(--menta); padding-left: 12px; margin-bottom: 12px; }
.padrao strong { display: block; font-size: 14.5px; margin-bottom: 2px; }
.padrao span { font-size: 13.5px; color: var(--txt-2); }
.raiz { display: flex; gap: 10px; background: var(--secondary); border-radius: 10px; padding: 12px; font-size: 13.5px; color: var(--txt-2); margin-top: 4px; }
.raiz svg { width: 18px; height: 18px; color: var(--menta); flex: none; }

/* --------------------------------------------------------------- OFERTA */
.oferta { padding-bottom: 96px; }
.timer-bar { display: flex; align-items: center; justify-content: center; gap: 8px; background: rgba(255,82,44,.12); color: #ff8b6e; border-radius: 99px; padding: 10px 14px; font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.timer-bar strong { font-variant-numeric: tabular-nums; }
.timer-bar .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); animation: pisca 1.4s infinite; }
@keyframes pisca { 0%,100% { opacity: 1 } 50% { opacity: .25 } }
.timer-bar.expirado { background: var(--surface); color: var(--txt-2); }
.timer-bar button { background: none; border: 0; color: var(--menta); font-weight: 700; text-decoration: underline; padding: 0; }

.oferta h1 { font-size: 25px; text-align: center; margin-bottom: 12px; }
.oferta .lead { text-align: center; color: var(--txt-2); font-size: 15px; }
.oferta .lead strong { color: var(--menta); }
.sec { margin: 30px 0; }
.sec-titulo { font-size: 19px; margin-bottom: 14px; text-align: center; }

.fases { display: grid; gap: 9px; margin: 24px 0; }
.fase { display: flex; gap: 13px; background: var(--surface); border-radius: var(--r); padding: 15px; }
.fase .n { font-size: 17px; font-weight: 700; color: var(--menta); flex: none; }
.fase strong { display: block; font-size: 14.5px; margin-bottom: 3px; }
.fase p { margin: 0; font-size: 13.5px; color: var(--txt-2); }

.planos { display: grid; gap: 10px; margin-bottom: 16px; }
.plano { position: relative; display: flex; align-items: center; gap: 12px; width: 100%; text-align: left;
         background: var(--surface); border: 2px solid transparent; border-radius: var(--r-lg); padding: 17px 15px; transition: all .18s; }
.plano.on { border-color: var(--menta); background: rgba(90,207,179,.08); }
.plano .selo { position: absolute; top: -9px; left: 14px; font-size: 9.5px; font-weight: 800; letter-spacing: .08em; background: var(--menta); color: var(--bg); padding: 3px 9px; border-radius: 99px; }
.plano .radio { flex: none; width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--check-off); }
.plano.on .radio { border-color: var(--menta); box-shadow: inset 0 0 0 3px var(--surface), inset 0 0 0 11px var(--menta); }
.plano .p-info { flex: 1; display: flex; flex-direction: column; }
.plano .p-info strong { font-size: 16px; }
.plano .p-de { font-size: 12.5px; color: var(--txt-3); text-decoration: line-through; }
.plano .p-por { font-size: 14px; font-weight: 700; color: var(--menta); }
.plano .p-dia { text-align: right; flex: none; }
.plano .p-dia b { display: block; font-size: 19px; }
.plano .p-dia small { font-size: 10.5px; color: var(--txt-3); }

.microcopy { text-align: center; font-size: 12px; color: var(--txt-3); margin: 10px 0 0; }
.pagamentos { display: flex; flex-wrap: wrap; gap: 5px; justify-content: center; margin-top: 12px; }
.pg { font-size: 10.5px; font-weight: 600; color: var(--txt-3); border: 1px solid var(--input-borda); border-radius: 5px; padding: 4px 8px; }
.pg.pix { color: var(--menta); border-color: rgba(90,207,179,.35); }

.stack { list-style: none; padding: 0; margin: 0; }
.stack li { display: flex; align-items: flex-start; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--surface); font-size: 14.5px; }
.stack li:last-child { border-bottom: 0; }
.stack li svg { width: 18px; height: 18px; color: var(--menta); flex: none; margin-top: 2px; }
.stack li span { flex: 1; }
.stack li em { font-style: normal; font-size: 9.5px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--ambar); background: rgba(232,163,61,.14); padding: 2px 6px; border-radius: 99px; margin-left: 6px; }
.stack li b { color: var(--txt-3); font-size: 13px; text-decoration: line-through; font-weight: 500; }
.stack-total { text-align: center; margin-top: 12px; font-size: 14.5px; color: var(--txt-2); }
.stack-total strong { color: var(--menta); font-size: 18px; }

.tabela { border-radius: var(--r); overflow: hidden; background: var(--surface); }
.tabela .linha { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 13px 15px; font-size: 14px; border-bottom: 1px solid var(--bg); }
.tabela .linha:last-child { border-bottom: 0; }
.tabela .linha b { white-space: nowrap; flex: none; }
.tabela .linha.destaque { background: rgba(90,207,179,.1); color: var(--menta); font-weight: 700; }
.nota { font-size: 12.5px; color: var(--txt-3); margin-top: 9px; }

.depos { display: grid; gap: 10px; }
.depo-card { margin: 0; background: var(--surface); border-radius: var(--r); padding: 16px; }
.depo-card blockquote { margin: 8px 0 10px; font-size: 14.5px; line-height: 1.5; }
.depo-card figcaption { font-size: 12.5px; font-weight: 600; }
.depo-card figcaption span { display: block; font-weight: 400; color: var(--txt-3); }

.garantia { background: var(--surface); border-radius: var(--r-lg); padding: 24px 18px; text-align: center; }
.garantia .g-icone { width: 52px; height: 52px; margin: 0 auto 12px; border-radius: 50%; background: rgba(90,207,179,.12); color: var(--menta); display: grid; place-items: center; }
.garantia .g-icone svg { width: 28px; height: 28px; }
.garantia h2 { font-size: 19px; margin-bottom: 9px; }
.garantia p { font-size: 14px; color: var(--txt-2); margin: 0; }

.faq details { border-bottom: 1px solid var(--surface); }
.faq summary { list-style: none; cursor: pointer; padding: 15px 28px 15px 0; font-weight: 600; font-size: 14.5px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 2px; top: 12px; font-size: 20px; font-weight: 400; color: var(--menta); }
.faq details[open] summary::after { content: '−'; }
.faq details div { padding: 0 0 16px; font-size: 14px; color: var(--txt-2); }

.rodape-legal { margin-top: 30px; padding-top: 18px; border-top: 1px solid var(--surface); font-size: 11px; line-height: 1.5; color: var(--txt-3); }

.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50; display: flex; align-items: center; gap: 10px;
  max-width: var(--max); margin: 0 auto; padding: 11px 16px max(11px, env(safe-area-inset-bottom));
  background: rgba(11,15,26,.92); backdrop-filter: blur(10px); border-top: 1px solid var(--surface);
  animation: sobe .3s cubic-bezier(.22,.7,.3,1) both;
}
@keyframes sobe { from { transform: translateY(100%) } }
.sticky-cta .s-info b { display: block; font-size: 17px; line-height: 1.1; }
.sticky-cta .s-info small { font-size: 11px; color: var(--txt-3); }
.sticky-cta .btn { flex: 1; padding: 14px 16px; font-size: 15.5px; }

/* -------------------------------------------------------------- DESKTOP */
@media (min-width: 760px) {
  .app { max-width: 460px; }
}
