/* =========================================================================
   MFLIX — estilos por página
   ========================================================================= */

/* ============================== LANDING ================================== */

.hero {
  position: relative;
  padding: 74px 0 86px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  top: -420px; right: -240px;
  background: radial-gradient(circle, rgba(225, 6, 0, .28), transparent 62%);
  filter: blur(30px);
}
.hero-bg::after {
  content: '';
  position: absolute;
  width: 640px; height: 640px;
  bottom: -380px; left: -220px;
  background: radial-gradient(circle, rgba(120, 0, 0, .32), transparent 65%);
  filter: blur(40px);
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 30%, transparent 78%);
}

.hero .wrap { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(40px, 6vw, 68px);
  align-items: center;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.02;
  margin: 22px 0 18px;
  font-weight: 800;
}

.hero-sub {
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--text-2);
  max-width: 46ch;
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.03em;
}
.hero-stats div span { font-size: 12.5px; color: var(--muted); }

.hero-art { position: relative; }
.hero-art svg { width: 100%; height: auto; overflow: visible; }

/* animações da arte */
@keyframes float-y { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes ring-pulse {
  0% { transform: scale(.85); opacity: .55; }
  100% { transform: scale(1.35); opacity: 0; }
}
@keyframes bar-eq {
  0%, 100% { transform: scaleY(.35); }
  50% { transform: scaleY(1); }
}

.art-float { animation: float-y 6s ease-in-out infinite; }
.art-float-slow { animation: float-y 8s ease-in-out infinite; }
.art-ring { transform-origin: center; animation: ring-pulse 3.2s ease-out infinite; }
.art-ring-2 { animation-delay: 1.1s; }
.art-ring-3 { animation-delay: 2.2s; }
.art-bar { transform-origin: bottom; animation: bar-eq 1.3s ease-in-out infinite; }
.art-bar:nth-child(2) { animation-delay: .18s; }
.art-bar:nth-child(3) { animation-delay: .36s; }
.art-bar:nth-child(4) { animation-delay: .1s; }
.art-bar:nth-child(5) { animation-delay: .44s; }

@media (prefers-reduced-motion: reduce) {
  .art-float, .art-float-slow, .art-ring, .art-bar { animation: none; }
}

/* faixa de números */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.strip-item { display: flex; align-items: center; gap: 14px; }
.strip-item .ic {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255, 45, 32, .1);
  border: 1px solid rgba(255, 45, 32, .22);
  color: var(--red-2);
  flex-shrink: 0;
}
.strip-item strong { display: block; font-family: var(--font-display); font-size: 18px; }
.strip-item span { font-size: 12.5px; color: var(--muted); }

/* seções */
.section { padding: 76px 0; }
.section-tight { padding: 46px 0; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.feature {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}
.feature:hover { border-color: rgba(255, 45, 32, .4); transform: translateY(-4px); }
.feature .ic { display: inline-flex; margin-bottom: 16px; color: var(--red-2); }
.feature h3 { font-size: 17px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 14px; }

/* passos */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  background: var(--surface);
  position: relative;
}
.step .num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--red-2);
  letter-spacing: .1em;
  display: block;
  margin-bottom: 12px;
}
.step h3 { font-size: 16px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 14px; }

/* plano */
.plan-wrap {
  display: grid;
  grid-template-columns: 1fr minmax(400px, 460px);
  gap: clamp(32px, 5vw, 52px);
  align-items: center;
}

.plan-card {
  background: linear-gradient(165deg, #1b1015, var(--surface));
  border: 1px solid rgba(255, 45, 32, .35);
  border-radius: var(--r-xl);
  padding: 34px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(225, 6, 0, .55);
}
.plan-card::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  top: -160px; right: -120px;
  background: radial-gradient(circle, rgba(255, 45, 32, .28), transparent 68%);
}
.plan-card > * { position: relative; }

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 18px 0 6px;
}
.plan-price .val {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
}
.plan-price .cur { font-size: 20px; font-weight: 700; color: var(--muted); margin-bottom: 8px; }
.plan-price .per { font-size: 14px; color: var(--muted); margin-bottom: 10px; }

.plan-list { list-style: none; padding: 0; margin: 26px 0; display: grid; gap: 13px; }
.plan-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--text-2); }
.plan-list .tick {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(34, 197, 94, .16);
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

/* dispositivos */
.devices {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(18px, 3vw, 28px);
  flex-wrap: wrap;
  margin-top: 34px;
}
.device-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text-2);
  font-size: 14px;
  font-weight: 600;
}
.device-chip svg { color: var(--red-2); }

/* CTA final */
.cta-band {
  border-radius: var(--r-xl);
  border: 1px solid var(--line-2);
  background:
    radial-gradient(600px 240px at 50% 0%, rgba(225, 6, 0, .25), transparent 70%),
    linear-gradient(180deg, var(--surface-2), var(--bg-2));
  padding: 60px 32px;
  text-align: center;
}
.cta-band h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 12px; }
.cta-band p { color: var(--muted); max-width: 46ch; margin: 0 auto 28px; }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-art { order: -1; max-width: 440px; margin: 0 auto; }
  .devices { justify-content: center; }
  .strip .wrap { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .plan-wrap { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}

/* =============================== AUTH ==================================== */

.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.auth-aside {
  position: relative;
  padding: 46px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(700px 500px at 20% 15%, rgba(225, 6, 0, .3), transparent 62%),
    linear-gradient(160deg, #14070a, #08080a 60%);
  border-right: 1px solid var(--line);
  overflow: hidden;
}
.auth-aside::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse at 30% 30%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 30%, #000, transparent 75%);
  pointer-events: none;
}
.auth-aside > * { position: relative; z-index: 1; }

.auth-aside-art { margin: 40px 0; }
.auth-aside-art svg { width: 100%; max-width: 420px; height: auto; overflow: visible; }

.auth-aside h2 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 14px; }
.auth-aside p { color: var(--text-2); max-width: 40ch; }

.auth-points { display: grid; gap: 14px; margin-top: 28px; }
.auth-point { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-2); }
.auth-point .tick {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 45, 32, .14);
  border: 1px solid rgba(255, 45, 32, .3);
  color: var(--red-2);
  flex-shrink: 0;
}

.auth-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.auth-box { width: 100%; max-width: 420px; }

.auth-box h1 { font-size: 30px; margin-bottom: 8px; }
.auth-box .sub { color: var(--muted); margin-bottom: 30px; font-size: 14.5px; }

.auth-foot { margin-top: 24px; text-align: center; font-size: 14px; color: var(--muted); }
.auth-foot a { color: var(--red-2); font-weight: 600; }
.auth-foot a:hover { text-decoration: underline; }

.auth-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 28px;
}
.auth-back:hover { color: var(--text); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.strength { display: flex; gap: 5px; margin-top: 9px; }
.strength i {
  flex: 1;
  height: 4px;
  border-radius: 3px;
  background: #26262e;
  transition: background .2s ease;
}
.strength.s1 i:nth-child(1) { background: #ff4d4d; }
.strength.s2 i:nth-child(-n+2) { background: var(--amber); }
.strength.s3 i:nth-child(-n+3) { background: #9ade5a; }
.strength.s4 i { background: var(--green); }

@media (max-width: 900px) {
  .auth-page { grid-template-columns: 1fr; }
  .auth-aside { display: none; }
  .auth-main { min-height: 100vh; }
}

/* ============================= DASHBOARD ================================= */

.page-head {
  padding: 40px 0 26px;
}
.page-head h1 { font-size: clamp(26px, 3.2vw, 36px); }
.page-head p { color: var(--muted); margin-top: 8px; }

.status-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  border-radius: var(--r-xl);
  border: 1px solid var(--line-2);
  padding: 30px;
  background:
    radial-gradient(500px 220px at 90% 0%, rgba(225, 6, 0, .22), transparent 70%),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  margin-bottom: 30px;
}
.status-card h2 { font-size: 22px; margin: 12px 0 8px; }
.status-card p { color: var(--muted); font-size: 14.5px; max-width: 52ch; }
.status-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.status-art { color: var(--red-2); }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.stat {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.stat .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255, 45, 32, .1);
  border: 1px solid rgba(255, 45, 32, .22);
  color: var(--red-2);
  flex-shrink: 0;
}
.stat strong { display: block; font-family: var(--font-display); font-size: 24px; line-height: 1.2; }
.stat span { font-size: 12.5px; color: var(--muted); }

.rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}
.rail::-webkit-scrollbar { height: 6px; }
.rail > * { flex: 0 0 300px; scroll-snap-align: start; }

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.info-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.info-row:last-child { border-bottom: 0; }
.info-row span { color: var(--muted); }
.info-row strong { font-weight: 600; text-align: right; word-break: break-word; }

@media (max-width: 820px) {
  .status-card { grid-template-columns: 1fr; }
  .status-art { display: none; }
  .info-grid { grid-template-columns: 1fr; }
}

/* ============================ ASSINATURA ================================= */

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  gap: 26px;
  align-items: start;
}

.pix-panel {
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  padding: 30px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.pix-state { display: none; flex-direction: column; align-items: center; text-align: center; gap: 16px; margin: auto 0; }
.pix-state.active { display: flex; }

.qr-frame {
  width: min(260px, 74vw);
  aspect-ratio: 1;
  padding: 12px;
  border-radius: var(--r-lg);
  background: #fff;
  display: grid;
  place-items: center;
}
.qr-frame img { width: 100%; height: 100%; object-fit: contain; }

.pix-hint { font-size: 13.5px; color: var(--muted); max-width: 34ch; }
.pix-hint strong { color: var(--text-2); font-weight: 600; }

/* O código fica inteiro à vista e selecionável — nada de ter que dar zoom. */
.pix-code {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 12px 14px;
}
.pix-code code {
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-2);
  text-align: left;
  word-break: break-all;
  user-select: all;
  -webkit-user-select: all;
  max-height: 4.7em;
  overflow-y: auto;
}

.pix-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.pix-actions .btn { flex: 1 1 150px; }

/* Saída para quem o banco recusou: reemite o código pelo outro processador. */
.pix-fallback {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  background: none;
  border: 1px dashed var(--line-2);
  border-radius: var(--r-md);
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  transition: color .15s, border-color .15s;
}
.pix-fallback:hover {
  color: var(--text-2);
  border-color: var(--red-2);
}

.pix-timer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.success-ring {
  width: 92px; height: 92px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(34, 197, 94, .12);
  border: 1px solid rgba(34, 197, 94, .4);
  color: var(--green);
  animation: pop .35s cubic-bezier(.2, .9, .3, 1.4);
}
@keyframes pop { from { transform: scale(.6); opacity: 0; } }

.summary-card { position: sticky; top: calc(var(--header-h) + 20px); }
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.summary-row:last-of-type { border-bottom: 0; }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px dashed var(--line-2);
}
.summary-total b { font-family: var(--font-display); font-size: 30px; letter-spacing: -.03em; }

@media (max-width: 900px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .summary-card { position: static; }
}

/* ============================== MOBILE ================================== */

@media (max-width: 560px) {
  .hero { padding: 40px 0 60px; }
  .hero h1 { font-size: 35px; margin: 16px 0 14px; }
  .hero-art { max-width: 320px; }
  .hero-sub { font-size: 15.5px; }
  .hero-cta { margin-top: 24px; }
  .hero-cta .btn { flex: 1 1 100%; }
  .hero-stats { gap: 20px 26px; margin-top: 32px; padding-top: 22px; }
  .hero-stats div strong { font-size: 21px; }

  .strip .wrap { grid-template-columns: 1fr; gap: 16px; padding: 22px 18px; }
  .section { padding: 48px 0; }
  .section-tight { padding: 36px 0; }

  .feature { padding: 20px; }
  .step { padding: 20px; }

  .plan-card { padding: 24px; border-radius: var(--r-lg); }
  .plan-price .val { font-size: 44px; }
  .devices { gap: 10px; margin-top: 24px; }
  .device-chip { padding: 10px 14px; font-size: 13px; }

  .cta-band { padding: 40px 20px; border-radius: var(--r-lg); }

  .auth-main { padding: 28px 18px 44px; }
  .auth-box h1 { font-size: 26px; }
  .auth-box .sub { margin-bottom: 22px; }
  .field-row { grid-template-columns: 1fr; }

  .page-head { padding: 26px 0 18px; }
  .status-card { padding: 20px; border-radius: var(--r-lg); gap: 18px; }
  .status-card h2 { font-size: 19px; }
  .status-actions .btn { flex: 1 1 100%; }

  .stat { padding: 16px; }
  .stat strong { font-size: 20px; }
  .stat-grid { gap: 10px; margin-bottom: 30px; }

  .rail > * { flex: 0 0 84%; }

  .pix-panel { padding: 18px 16px; min-height: 0; border-radius: var(--r-lg); }
  .pix-state { gap: 14px; }
  .qr-frame { width: min(300px, 78vw); padding: 10px; }
  .pix-code code { font-size: 12.5px; max-height: 9em; }
  .pix-actions .btn { flex: 1 1 100%; }
  .summary-total b { font-size: 26px; }
}

/* ========================================================================== */
/* Card de Conversão + Notificações de Prova Social                           */
/* ========================================================================== */

/* BACKDROP */
.welcome-backdrop {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: rgba(2, 2, 6, .86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity .26s ease;
  overflow-y: auto;
}
.welcome-backdrop.show { opacity: 1; }

/* CARD */
.welcome-card {
  position: relative;
  width: 100%;
  max-width: 430px;
  max-height: min(96vh, 740px);
  overflow-y: auto;
  padding: 28px 24px 22px;
  background: #0e0e16;
  border: 1px solid rgba(255, 45, 32, .3);
  border-radius: 24px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.05),
    0 24px 60px rgba(0,0,0,.85),
    0 0 60px rgba(225,6,0,.15);
  transform: translateY(18px) scale(.96);
  transition: transform .3s cubic-bezier(.16,1,.3,1);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.12) transparent;
}
.welcome-card::-webkit-scrollbar { width: 4px; }
.welcome-card::-webkit-scrollbar-thumb { background: rgba(255,255,255,.14); border-radius: 4px; }
.welcome-backdrop.show .welcome-card { transform: none; }

/* BOTÃO FECHAR */
.welcome-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  color: #6b6b7d;
  cursor: pointer;
  transition: all .15s;
  z-index: 2;
}
.welcome-close:hover { color: #fff; background: rgba(255,255,255,.15); transform: scale(1.08); }

/* EYEBROW */
.welcome-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(225,6,0,.12);
  border: 1px solid rgba(225,6,0,.3);
  color: #ff6b6b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.welcome-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ff3a2b;
  box-shadow: 0 0 6px #ff3a2b;
  animation: wdot 1.4s infinite ease-in-out;
}
@keyframes wdot {
  0%,100% { transform:scale(1); opacity:1; }
  50% { transform:scale(1.5); opacity:.5; }
}

/* TÍTULO */
.welcome-title {
  font-family: var(--font-display);
  font-size: clamp(20px,5vw,24px);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -.03em;
}

/* SUBTÍTULO */
.welcome-sub {
  font-size: 13px;
  color: #9494a8;
  line-height: 1.5;
  margin-bottom: 14px;
}

/* PERKS */
.welcome-perks {
  list-style: none;
  display: grid;
  gap: 6px;
  padding: 10px 12px;
  margin-bottom: 14px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
}
.welcome-perks li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: #c0c0d0;
}
.welcome-perks .wperk-ico {
  flex: 0 0 auto;
  color: #22c55e;
  display: grid;
  place-items: center;
  line-height: 0;
}

/* PREÇO */
.welcome-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(225,6,0,.14) 0%, rgba(225,6,0,.05) 100%);
  border: 1px solid rgba(225,6,0,.25);
  border-radius: 14px;
  margin-bottom: 14px;
}
.welcome-price-badge {
  display: flex;
  align-items: baseline;
  gap: 3px;
  line-height: 1;
}
.wpr-cur { font-size: 13px; color: #ff8c8c; font-weight: 700; margin-top: 3px; }
.wpr-val { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: #fff; letter-spacing: -.04em; }
.wpr-per { font-size: 12.5px; color: #9494a8; margin-left: 2px; }
.welcome-pix-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  color: #34d399;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.25);
  padding: 5px 10px;
  border-radius: 8px;
}

/* DIVISOR */
.welcome-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 12px;
  color: #555568;
}
.welcome-divider::before,
.welcome-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.08);
}

/* FORMULÁRIO */
.welcome-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.w-field {
  position: relative;
  display: flex;
  align-items: center;
}
.w-field-ico {
  position: absolute;
  left: 12px;
  color: #555568;
  display: grid;
  place-items: center;
  line-height: 0;
  pointer-events: none;
  z-index: 1;
}
.w-input {
  width: 100%;
  height: 44px;
  padding: 0 14px 0 40px;
  font-size: 13.5px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  color: #f0f0f8;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.w-input::placeholder { color: #4a4a5e; }
.w-input:focus {
  outline: none;
  background: rgba(255,255,255,.06);
  border-color: rgba(225,6,0,.6);
  box-shadow: 0 0 0 3px rgba(225,6,0,.18);
}

/* ERRO */
.w-error {
  display: none;
  padding: 9px 12px;
  border-radius: 10px;
  background: rgba(225,6,0,.14);
  border: 1px solid rgba(225,6,0,.3);
  color: #ffaaaa;
  font-size: 12.5px;
  line-height: 1.45;
  text-align: center;
}
.w-error.show { display: block; }

/* CTA */
.welcome-cta {
  width: 100%;
  margin-top: 4px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: .15px;
  border-radius: 13px;
  transition: transform .12s, box-shadow .12s, background .15s;
}
.welcome-cta:not(:disabled):hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(225,6,0,.45); }
.welcome-cta:not(:disabled):active { transform: translateY(0); }

/* GARANTIA */
.welcome-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 11px;
  color: #555568;
  margin-top: 10px;
}
.welcome-secure svg { color: #22c55e; }

/* RODAPÉ DO CARD */
.welcome-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  font-size: 12px;
  color: #555568;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.welcome-foot a { color: #d4d4e8; font-weight: 600; }
.welcome-foot a:hover { color: #fff; }
.welcome-sep { color: #3a3a50; }
.welcome-skip {
  background: none;
  border: 0;
  color: #555568;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
  padding: 0;
}
.welcome-skip:hover { color: #8888a0; }

/* ========================================================================== */
/* NOTIFICAÇÕES DE PROVA SOCIAL                                               */
/* ========================================================================== */

.proof {
  position: fixed;
  z-index: 140;
  left: 20px;
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  width: min(360px, calc(100vw - 28px));
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 36px 11px 11px;
  background: rgba(14,14,22,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  box-shadow:
    0 2px 0 rgba(255,255,255,.05) inset,
    0 20px 40px rgba(0,0,0,.7),
    0 0 0 1px rgba(0,0,0,.4);
  opacity: 0;
  transform: translateX(-12px) scale(.95);
  transition: opacity .3s ease, transform .3s cubic-bezier(.16,1,.3,1);
  pointer-events: auto;
}
.proof.show {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* AVATAR */
.proof-ava {
  position: relative;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
}
.proof-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid rgba(255,255,255,.16);
  background: #1e1e2c;
}
.proof-ava-fb {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  display: none;
  place-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,.16);
}
.proof-green-dot {
  position: absolute;
  bottom: 0; right: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #0e0e16;
  box-shadow: 0 0 8px rgba(34,197,94,.8);
  animation: gdot 2.2s infinite ease-in-out;
}
@keyframes gdot {
  0%,100% { box-shadow: 0 0 8px rgba(34,197,94,.8); }
  50% { box-shadow: 0 0 14px rgba(34,197,94,1); }
}

/* CORPO DA NOTIFICAÇÃO */
.proof-cnt {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.proof-row1 {
  display: flex;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
}
.proof-nm {
  font-size: 13px;
  font-weight: 700;
  color: #f0f0f8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 1 auto;
  min-width: 0;
}
.proof-ci {
  font-size: 10.5px;
  color: #555568;
  white-space: nowrap;
  flex: 0 0 auto;
}
.proof-row2 {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}
.proof-check {
  flex: 0 0 auto;
  color: #22c55e;
  display: grid;
  place-items: center;
  line-height: 0;
}
.proof-txt {
  font-size: 12px;
  font-weight: 600;
  color: #60a5fa;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 1 auto;
  min-width: 0;
}
.proof-ago {
  font-size: 10.5px;
  color: #444456;
  white-space: nowrap;
  flex: 0 0 auto;
}

/* FECHAR NOTIFICAÇÃO */
.proof-x {
  position: absolute;
  top: 9px; right: 9px;
  width: 22px; height: 22px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.06);
  border: 0;
  border-radius: 50%;
  color: #555568;
  cursor: pointer;
  transition: color .15s, background .15s;
}
.proof-x:hover { color: #f0f0f8; background: rgba(255,255,255,.14); }

/* RESPONSIVO MOBILE */
@media (max-width: 560px) {
  .welcome-card {
    padding: 22px 16px 20px;
    border-radius: 20px;
    max-height: 96svh;
  }
  .welcome-title { font-size: 19px; }
  .wpr-val { font-size: 28px; }
  .welcome-perks li { font-size: 12px; }

  .proof {
    left: 10px;
    right: 10px;
    width: auto;
    max-width: none;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    padding: 10px 32px 10px 10px;
    border-radius: 15px;
  }
  .proof-ava { flex: 0 0 40px; width: 40px; height: 40px; }
  .proof-nm { font-size: 12.5px; }
  .proof-txt { font-size: 11.5px; }
}

@media (prefers-reduced-motion: reduce) {
  .welcome-backdrop, .welcome-card, .proof { transition: none; }
  .welcome-dot, .proof-green-dot { animation: none; }
}

.welcome-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(4, 4, 8, .82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .24s ease;
  overflow-y: auto;
}
.welcome-backdrop.show { opacity: 1; }

.welcome-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: min(92vh, 720px);
  overflow-y: auto;
  padding: 30px 26px 24px;
  background: linear-gradient(168deg, #181822 0%, #0f0f15 100%);
  border: 1px solid rgba(225, 6, 0, 0.28);
  border-radius: var(--r-xl);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(225, 6, 0, 0.18);
  text-align: center;
  transform: translateY(16px) scale(.96);
  transition: transform .28s cubic-bezier(.16, 1, .3, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}
.welcome-card::-webkit-scrollbar { width: 4px; }
.welcome-card::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.2); border-radius: 4px; }
.welcome-backdrop.show .welcome-card { transform: none; }

.welcome-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: var(--muted);
  cursor: pointer;
  transition: color .15s, background .15s, transform .15s;
  z-index: 2;
}
.welcome-close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.14);
  transform: scale(1.05);
}

.welcome-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(225, 6, 0, 0.14);
  border: 1px solid rgba(225, 6, 0, 0.35);
  color: #ff5252;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.welcome-tag .pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ff3a2b;
  box-shadow: 0 0 8px #ff3a2b;
  animation: pulseTag 1.5s infinite ease-in-out;
}
@keyframes pulseTag {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: .6; }
}

.welcome-card h2 {
  font-family: var(--font-display);
  font-size: clamp(21px, 5vw, 25px);
  line-height: 1.25;
  margin-bottom: 8px;
  color: #fff;
}
.welcome-card > p {
  color: var(--text-2);
  font-size: 13.5px;
  line-height: 1.45;
  margin-bottom: 14px;
}

.welcome-list {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  text-align: left;
  list-style: none;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-md);
}
.welcome-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--text-2);
}
.welcome-list li .tick {
  flex: 0 0 auto;
  color: #22c55e;
  display: grid;
  place-items: center;
}

.welcome-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(225, 6, 0, 0.12) 0%, rgba(225, 6, 0, 0.04) 100%);
  border: 1px solid rgba(225, 6, 0, 0.28);
  border-radius: var(--r-md);
}
.welcome-price b {
  font-family: var(--font-display);
  font-size: 26px;
  color: #fff;
  letter-spacing: -.5px;
}
.welcome-price span {
  color: var(--text-2);
  font-size: 13px;
}
.welcome-price .pix-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #22c55e;
  font-weight: 600;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(34, 197, 94, 0.14);
}

/* Formulário de cadastro direto dentro do card */
.welcome-form {
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-align: left;
  margin-top: 4px;
}
.welcome-form-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.welcome-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.welcome-input-wrap svg {
  position: absolute;
  left: 13px;
  color: var(--muted);
  pointer-events: none;
}
.welcome-input-wrap .input {
  padding-left: 40px;
  height: 42px;
  font-size: 13.5px;
  background: rgba(10, 10, 14, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-md);
  transition: border-color .15s, box-shadow .15s;
}
.welcome-input-wrap .input:focus {
  border-color: #ff3a2b;
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.22);
}

.welcome-error {
  display: none;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  background: rgba(225, 6, 0, 0.16);
  border: 1px solid rgba(225, 6, 0, 0.35);
  color: #ff9b9b;
  font-size: 12.5px;
  line-height: 1.4;
  text-align: center;
}
.welcome-error.show { display: block; }
.welcome-error a { color: #fff; text-decoration: underline; font-weight: 600; }

.welcome-submit {
  width: 100%;
  margin-top: 5px;
  padding: 13px 18px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.welcome-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 8px;
}
.welcome-guarantee svg { color: #22c55e; }

.welcome-login-link {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 10px;
}
.welcome-login-link a {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
}

.welcome-later {
  width: 100%;
  margin-top: 6px;
  padding: 8px;
  background: none;
  border: 0;
  color: var(--muted);
  font: inherit;
  font-size: 12.5px;
  cursor: pointer;
  transition: color .15s;
}
.welcome-later:hover { color: var(--text); }

/* --------------------------- Notificações de Prova Social ----------------- */

.proof {
  position: fixed;
  z-index: 110;
  left: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  width: min(360px, calc(100vw - 32px));
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 38px 10px 10px;
  background: rgba(18, 18, 25, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateY(18px) scale(.96);
  transition: opacity .28s ease, transform .28s cubic-bezier(.16, 1, .3, 1);
  pointer-events: auto;
}
.proof.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.proof-avatar-wrap {
  position: relative;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
}
.proof-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: #252532;
}
.proof-avatar-fallback {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.15);
}
.proof-badge-dot {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #22c55e;
  border: 2.5px solid #121219;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.7);
}

.proof-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1 1 auto;
}
.proof-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
}
.proof-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.proof-city {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  flex: 0 0 auto;
}
.proof-line {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  line-height: 1.25;
  color: #38bdf8;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.proof-line svg {
  flex: 0 0 auto;
  color: #22c55e;
}
.proof-time {
  font-size: 11px;
  color: var(--muted);
  font-weight: normal;
  margin-left: 2px;
}

.proof-close {
  position: absolute;
  top: 8px; right: 8px;
  width: 26px; height: 26px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  cursor: pointer;
  transition: color .15s, background .15s;
}
.proof-close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 560px) {
  .welcome-card {
    padding: 24px 18px 20px;
    border-radius: var(--r-lg);
    max-height: 94vh;
  }
  .welcome-card h2 { font-size: 20px; }
  .welcome-price b { font-size: 24px; }
  .welcome-list { padding: 8px 10px; gap: 6px; }
  .welcome-list li { font-size: 12px; }

  /* Mobile-friendly: na parte inferior com margem segura */
  .proof {
    left: 12px;
    right: 12px;
    width: auto;
    max-width: 380px;
    margin: 0 auto;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    padding: 9px 34px 9px 9px;
  }
  .proof-avatar-wrap {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }
  .proof-name { font-size: 12.5px; }
  .proof-line { font-size: 11.5px; }
}

@media (prefers-reduced-motion: reduce) {
  .welcome-backdrop, .welcome-card, .proof { transition: none; }
  .welcome-tag .pulse-dot { animation: none; }
}

/* ========== Melhorias na Prova Social — Notificações + Card ========== */

/* Notificação flutuante: melhor espaçamento e visual */
.proof {
  position: fixed;
  bottom: clamp(20px, 5vh, 40px);
  left: clamp(12px, 3vw, 24px);
  z-index: 110;
  max-width: min(340px, calc(100vw - 32px));
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px -25px rgba(0, 0, 0, .9), 0 0 0 1px rgba(255, 45, 32, .1);
  opacity: 0;
  transform: translateY(20px) scale(.95);
  transition: opacity 280ms cubic-bezier(.2, .8, .3, 1), transform 280ms cubic-bezier(.2, .8, .3, 1);
  backdrop-filter: blur(8px);
}
.proof.show { opacity: 1; transform: none; }

.proof-avatar {
  flex: 0 0 auto;
  width: 56px;
  height: 100%;
  min-height: 60px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .2px;
  background: linear-gradient(135deg, rgba(255, 45, 32, .9), rgba(239, 68, 68, .8));
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.proof-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 11px 14px;
  flex: 1 1 auto;
  min-width: 0;
}
.proof-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.proof-action {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.proof-action svg {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  color: var(--green);
}

.proof-close {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .04);
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  cursor: pointer;
  opacity: 0;
  transition: opacity 150ms, background 150ms, color 150ms;
}
.proof:hover .proof-close { opacity: 1; }
.proof-close:hover { color: var(--text-2); background: rgba(255, 255, 255, .12); }

/* Card de acesso — melhor visual */
.welcome-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vh, 40px);
  background: rgba(4, 4, 6, .82);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 300ms ease;
}
.welcome-backdrop.show { opacity: 1; }

.welcome-card {
  width: 100%;
  max-width: 460px;
  padding: clamp(28px, 6vw, 40px);
  background: linear-gradient(165deg, var(--surface-2) 0%, var(--surface) 62%);
  border: 1px solid rgba(255, 45, 32, .2);
  border-radius: clamp(16px, 3vw, 28px);
  box-shadow: 0 40px 100px -30px rgba(225, 6, 0, .4);
  text-align: center;
  transform: translateY(16px) scale(.96);
  transition: transform 300ms cubic-bezier(.2, .8, .3, 1);
}
.welcome-backdrop.show .welcome-card { transform: none; }

.welcome-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .06);
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  cursor: pointer;
  transition: color 150ms, background 150ms;
}
.welcome-close:hover { color: var(--text); background: rgba(255, 255, 255, .12); }

.welcome-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  color: var(--red-2);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.welcome-dot {
  width: 6px;
  height: 6px;
  background: var(--red-2);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

.welcome-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 5vw, 28px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.welcome-sub {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.welcome-perks {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  display: grid;
  gap: 10px;
  text-align: left;
}
.welcome-perks li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.4;
}
.wperk-ico {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(34, 197, 94, .16);
  color: var(--green);
  margin-top: 1px;
}

.welcome-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 20px;
}
.welcome-price-row b {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.welcome-price-row span {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 560px) {
  .proof { max-width: calc(100vw - 16px); }
  .proof-content { padding: 9px 11px; }
  .welcome-card { padding: 24px 18px; }
  .welcome-eyebrow { font-size: 10px; }
  .welcome-title { font-size: 20px; }
}
