@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@500;700&family=IBM+Plex+Mono:wght@400;500;600&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

:root {
  --bg: #05070a;
  --panel: #0e1218;
  --panel2: #161b22;
  --border: #232a34;
  --text: #eef1f5;
  --muted: #89909e;
  --accent: #fe2c55; /* magenta TikTok */
  --accent2: #25f4ee; /* ciano TikTok */
  --ok: #2ecc71;
  --grad: linear-gradient(120deg, #25f4ee 0%, #8b7bf0 50%, #fe2c55 100%);
  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-sans: 'IBM Plex Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', Consolas, Menlo, monospace;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background:
    radial-gradient(680px 420px at 92% 2%, rgba(37,244,238,.06), transparent 60%),
    radial-gradient(720px 520px at 4% 100%, rgba(254,44,85,.06), transparent 60%),
    var(--bg);
  background-attachment: fixed;
  color: var(--text);
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 220px;
  position: sticky;
  top: 0;
  height: 100vh;
  align-self: flex-start;
  overflow-y: auto;
  background: var(--panel);
  border-right: 1px solid var(--border);
  padding: 20px 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.brand { display: flex; align-items: center; gap: 9px; padding: 2px 20px 22px; }
.brand-mark { width: 24px; height: 24px; flex: 0 0 auto; }
.brand-word { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -.02em; color: #fff; }
.brand-word span { color: var(--accent2); }
.sidebar-main { display: flex; flex-direction: column; }
.sidebar a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  color: var(--muted);
  text-decoration: none;
  border-left: 3px solid transparent;
}
.sidebar a .nav-ico { width: 18px; height: 18px; flex: 0 0 auto; opacity: .85; }
.sidebar a:hover { color: var(--text); background: var(--panel2); }
.sidebar a:hover .nav-ico { opacity: 1; }
.sidebar a.on { color: var(--text); border-left-color: var(--accent); background: var(--panel2); }
.sidebar a.on .nav-ico { color: var(--accent); opacity: 1; }
.sidebar a.disabled { opacity: .4; pointer-events: none; }
.sidebar small { color: var(--muted); }
/* Grupo inferior (Assinar / Configurações / Sair) fixado na base da sidebar. */
.sidebar-foot { margin-top: auto; display: flex; flex-direction: column; border-top: 1px solid var(--border); padding-top: 6px; }
/* Sair agora é um <form method=post> (proteção CSRF: logout não muda estado via GET).
   O botão é resetado para parecer idêntico aos links da sidebar. */
.sidebar .sair-form { display: block; }
.sidebar .sair {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 11px 20px;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
}
.sidebar .sair .nav-ico { width: 18px; height: 18px; flex: 0 0 auto; opacity: .85; }
.sidebar .sair:hover { color: var(--accent); background: var(--panel2); }
/* Atalho de conversão para quem ainda não assinou. */
.nav-assinar {
  display: flex; align-items: center; gap: 10px;
  margin: 8px 14px 6px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #0a0d12 !important;
  background: var(--grad);
  font-weight: 600; font-size: 14px;
  text-decoration: none;
  border-left: 0 !important;
}
.nav-assinar .nav-ico { width: 17px; height: 17px; opacity: 1; }
.nav-assinar:hover { filter: brightness(1.08); background: var(--grad) !important; }

.content { flex: 1; width: min(1240px, calc(100% - 220px)); padding: 32px 40px; }
h1 { margin: 0 0 24px; font-family: var(--font-display); font-weight: 500; letter-spacing: -.01em; }
h2 { margin: 28px 0 14px; font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .14em; font-family: var(--font-mono); font-weight: 500; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(172px, 1fr)); gap: 14px; }
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  transition: border-color .15s;
}
.card:hover { border-color: var(--border); }
.card .num { font-family: var(--font-mono); font-size: 30px; font-weight: 600; letter-spacing: -.01em; line-height: 1.1; color: var(--text); }
.card .lbl { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-size: 11px; margin-top: 9px; }

.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 24px;
}
.form-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: end; }
.form-row label { display: flex; flex-direction: column; font-size: 13px; color: var(--muted); gap: 6px; }
input, select {
  background: var(--panel2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  padding: 9px 11px;
  font-size: 14px;
  min-width: 140px;
}
button {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
button:hover { filter: brightness(1.1); }

table { width: 100%; border-collapse: collapse; margin-top: 8px; }
th, td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--border); font-size: 14px; }
th { color: var(--muted); font-weight: 500; font-size: 11px; text-transform: uppercase; font-family: var(--font-mono); letter-spacing: .1em; }
tbody tr { transition: background .12s; }
tbody tr:hover { background: rgba(255,255,255,.02); }
tr.on { background: rgba(37,244,238,.06); }
tr.on td:first-child { box-shadow: inset 3px 0 0 var(--accent2); }
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  border-radius: 20px; padding: 3px 10px; font-size: 11px;
  font-family: var(--font-mono); letter-spacing: .03em; color: var(--muted);
}
.badge.ok { color: #34d399; border-color: rgba(52,211,153,.4); background: rgba(52,211,153,.10); }
.badge.warn { color: #f5b23a; border-color: rgba(245,178,58,.4); background: rgba(245,178,58,.10); }
.badge.err, .badge.danger { color: #ff6084; border-color: rgba(254,44,85,.45); background: rgba(254,44,85,.12); }
.badge.info { color: var(--accent2); border-color: rgba(37,244,238,.4); background: rgba(37,244,238,.10); }
.empty { color: var(--muted); padding: 20px 0; }

.hint { color: var(--muted); font-size: 13px; margin: 10px 0 0; }
.hint code, .mono, .tf { font-family: var(--font-mono); font-size: 12px; }
.video-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.video-head .meta { color: var(--muted); font-size: 13px; margin-top: 4px; }
.video-head code { color: var(--accent2); }
form.inline { display: flex; gap: 8px; align-items: center; }
form.inline input[type=number] { min-width: 64px; width: 64px; }
.tf { color: var(--muted); }
input[type=file] { padding: 7px; }

.notice { background: rgba(37,244,238,.08); border: 1px solid var(--accent2); color: var(--text); border-radius: 10px; padding: 14px 18px; margin-bottom: 20px; font-size: 14px; }
.notice.ok-notice { background: rgba(46,204,113,.10); border-color: var(--ok); }
.notice.err-notice { background: rgba(254,44,85,.10); border-color: var(--accent); }
.session-cell { display: flex; align-items: center; gap: 10px; }

.import-box { margin-top: 6px; }
.import-box summary { cursor: pointer; color: var(--accent2); font-size: 12px; user-select: none; }
.import-box summary:hover { text-decoration: underline; }
.import-box form { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.import-box textarea {
  background: var(--panel2); border: 1px solid var(--border); border-radius: 8px;
  color: var(--text); padding: 8px 10px; font-family: Consolas, Menlo, monospace;
  font-size: 11px; width: 260px; resize: vertical;
}
.import-box button { align-self: flex-start; }

.steps { color: var(--muted); font-size: 14px; line-height: 1.8; margin: 0 0 10px; padding-left: 20px; }
.steps strong { color: var(--text); }
.steps code { color: var(--accent2); font-family: Consolas, Menlo, monospace; font-size: 13px; }
.toolbar { display: flex; justify-content: flex-end; margin-bottom: 12px; }
.status-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 16px; }

/* formularios empilhados (legenda, edicao de canal) */
.form-stack { display: flex; flex-direction: column; gap: 12px; margin-top: 10px; }
.form-stack label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--muted); }
.form-stack textarea {
  background: var(--panel2); border: 1px solid var(--border); border-radius: 8px;
  color: var(--text); padding: 9px 11px; font-size: 14px; resize: vertical;
  font-family: inherit; width: 100%; max-width: 520px;
}
.form-stack input[type=text], .form-stack input[type=number], .form-stack select { max-width: 520px; }
.form-stack button { align-self: flex-start; }
.time-pair { display: flex; gap: 8px; align-items: center; }
.time-pair input { min-width: 110px; }

/* blocos expansiveis (legenda do video, editar canal) */
.caption-box, .edit-box { margin-top: 10px; }
.caption-box summary, .edit-box summary {
  cursor: pointer; color: var(--accent2); font-size: 12px; user-select: none;
}
.caption-box summary:hover, .edit-box summary:hover { text-decoration: underline; }
.cap-preview { color: var(--muted); font-style: italic; margin-left: 6px; }
/* ---------- Editor didático de legenda (blocos + prévia) ---------- */
.cap-ui { display: grid; gap: 12px; margin-top: 4px; }
.cap-blocks-head { font-size: 13px; color: var(--text); }
.cap-blocks-head small { display: block; color: var(--muted); font-weight: 400; margin-top: 2px; }
.cap-rows { display: grid; gap: 8px; margin: 8px 0; }
.cap-row { display: flex; align-items: center; gap: 8px; }
.cap-row-input { flex: 1 1 auto; }
.cap-row-del {
  flex: 0 0 auto; width: 30px; height: 30px; padding: 0; line-height: 1;
  border: 1px solid var(--border); border-radius: 8px; background: transparent;
  color: var(--muted); cursor: pointer; font-size: 13px;
}
.cap-row-del:hover { color: #ffb3c1; border-color: rgba(254,44,85,.7); }
.cap-add {
  justify-self: start; padding: 6px 12px; font-size: 13px; border-radius: 8px;
  border: 1px dashed var(--border); background: transparent; color: var(--accent2); cursor: pointer;
}
.cap-add:hover { border-color: var(--accent2); background: rgba(255,255,255,.02); }
.cap-blocks-head b { color: var(--text); }
.cap-help { margin-top: 4px; }
.cap-help > summary {
  cursor: pointer; font-size: 13px; color: var(--accent2); user-select: none; list-style: none;
}
.cap-help > summary:hover { text-decoration: underline; }
.cap-help-body {
  margin-top: 8px; padding: 12px 13px; border: 1px solid var(--border); border-radius: 10px;
  background: rgba(255,255,255,.02); font-size: 13px; color: var(--muted); line-height: 1.55;
}
.cap-help-body p { margin: 0 0 9px; }
.cap-help-body b { color: var(--text); }
.cap-help-body u { text-decoration: underline; color: var(--text); }
.cap-help-body code {
  background: rgba(255,255,255,.08); padding: 1px 5px; border-radius: 4px;
  font-size: 12px; color: var(--text);
}
.cap-ex-head { margin: 10px 0 6px; color: var(--text); font-weight: 600; }
.cap-ex-head span { color: var(--muted); font-weight: 400; }
.cap-ex { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.cap-ex li {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 10px;
  padding: 7px 9px; border: 1px solid var(--border); border-radius: 8px;
  background: rgba(0,0,0,.12);
}
.cap-ex li > code { flex: 0 0 auto; }
.cap-ex li > span { color: var(--muted); }
.cap-help-warn {
  margin-top: 10px !important; padding-top: 9px; border-top: 1px solid var(--border);
  color: var(--muted);
}
.cap-preview-box {
  border: 1px solid var(--border); border-radius: 10px; padding: 11px 13px;
  background: rgba(46,204,113,.05);
}
.cap-preview-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.cap-preview-head span { font-size: 12px; color: var(--muted); font-weight: 600; }
.cap-reroll {
  padding: 4px 10px; font-size: 12px; border-radius: 7px; cursor: pointer;
  border: 1px solid var(--border); background: transparent; color: var(--accent2);
}
.cap-reroll:hover { border-color: var(--accent2); }
.cap-preview-text { margin-top: 7px; color: var(--text); font-size: 14px; line-height: 1.5; white-space: pre-wrap; }
.row-actions { display: flex; gap: 6px; }

/* grade da agenda semanal */
.week-grid { width: auto; margin-top: 10px; }
.week-grid th { font-size: 11px; padding: 5px 8px; }
.week-grid td { padding: 4px 8px; font-size: 13px; border-bottom: 1px solid var(--border); }
.week-grid input[type=time] { min-width: 105px; padding: 5px 7px; font-size: 12px; }
.week-grid input[type=number] { min-width: 62px; width: 62px; padding: 5px 7px; font-size: 12px; }
.week-grid input[type=checkbox] { width: 15px; height: 15px; accent-color: var(--accent); }

/* zona de remoção */
.edit-box.danger summary { color: var(--accent); }
.btn-danger { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-danger:hover { filter: brightness(1.12); }

/* ---------- Calendário ---------- */
.cal-nav { display: flex; align-items: center; gap: 16px; margin: 22px 0 14px; }
.cal-title { margin: 0; font-size: 18px; color: var(--text); text-transform: none; letter-spacing: 0; }

.calendar { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: var(--panel); }
.cal-head { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); background: var(--panel2); }
.cal-head div { padding: 9px 8px; font-size: 12px; color: var(--muted); text-transform: uppercase; text-align: center; font-weight: 600; }
.cal-week { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); }
.cal-day {
  min-height: 108px; border-top: 1px solid var(--border); border-right: 1px solid var(--border);
  padding: 6px; position: relative; display: flex; flex-direction: column; gap: 3px;
}
.cal-week .cal-day:last-child { border-right: none; }
.cal-day.outro-mes { opacity: .35; }
.cal-day.hoje { background: rgba(37,244,238,.06); }
.cal-day.hoje .cal-daynum { color: var(--accent2); font-weight: 700; }
.cal-daynum {
  font-size: 12px; color: var(--muted); margin-bottom: 2px;
  display: flex; align-items: center; justify-content: space-between; gap: 4px;
}
/* ✕ do dia: discreto ate o mouse passar na celula, para nao poluir o calendario */
.cal-del-dia { opacity: 0; transition: opacity .15s; }
.cal-day:hover .cal-del-dia { opacity: 1; }
.cal-del-dia:focus-within { opacity: 1; }

.cal-post {
  font-size: 11px; border-radius: 5px; padding: 3px 6px; background: var(--panel2);
  border-left: 3px solid var(--muted); overflow: hidden; min-width: 0;
  display: flex; flex-direction: column; gap: 1px;
}
.cal-post-l1 { display: flex; gap: 5px; align-items: center; white-space: nowrap; }
.cal-post .hora { color: var(--muted); flex-shrink: 0; }
.cal-post .canal { color: var(--text); overflow: hidden; text-overflow: ellipsis; }
.cal-post-video {
  color: var(--muted); font-size: 10px; overflow: hidden;
  text-overflow: ellipsis; white-space: nowrap;
}
.cal-captcha-action {
  margin-top: 4px; padding-top: 4px; border-top: 1px solid rgba(254,44,85,.35);
  color: #ffb4c1;
}
.cal-captcha-action summary { cursor: pointer; font-weight: 700; font-size: 10px; }
.cal-captcha-action p { margin: 5px 0; color: var(--muted); line-height: 1.25; }
.cal-captcha-buttons { display: grid; gap: 4px; }
.cal-captcha-buttons form { margin: 0; }
.btn-mini {
  width: 100%; padding: 4px 5px; border-radius: 5px; cursor: pointer;
  border: 1px solid var(--border); background: var(--panel); color: var(--text);
  font-size: 10px; line-height: 1.2;
}
.btn-mini:hover { border-color: var(--accent); }
.btn-mini.ok:hover { border-color: var(--ok); }
.captcha-alerta { align-items: flex-start; }
.cal-post.pendente { border-left-color: var(--accent2); cursor: grab; }
.cal-post.pendente:active { cursor: grabbing; }
.cal-post.dragging { opacity: .4; }
.cal-day.drop-target { background: rgba(37,244,238,.14); outline: 2px dashed var(--accent2); outline-offset: -2px; }
.cal-toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--panel); border: 1px solid var(--accent); color: var(--text);
  padding: 12px 20px; border-radius: 10px; font-size: 14px; opacity: 0;
  pointer-events: none; transition: all .25s; z-index: 100; max-width: 90%;
}
.cal-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.cal-post.postado { border-left-color: var(--ok); }
.cal-post.testado { border-left-color: var(--accent2); }
.cal-post.falhou { border-left-color: var(--accent); }
.cal-post.processando { border-left-color: #f5a623; }
/* Post vencido e ainda pendente: alerta laranja para bater o olho. Vem depois
   de .pendente para vencer na especificidade (mesma) por ordem de cascata. */
.cal-post.atrasado { border-left-color: #ff9500; background: rgba(255,149,0,.14); }
.cal-post.atrasado .hora { color: #ff9500; font-weight: 700; }
.cal-dryrun-note { color: var(--accent2); font-size: 10px; margin-top: 3px; }
.cal-dryrun-retry { margin: 3px 0 0; }

/* Ações do post (✎ editar, ✕ desagendar): aparecem ao passar o mouse,
   ancoradas no canto superior direito. O post tem 2 linhas. */
.cal-post { position: relative; }
.cal-post .canal { flex: 1; }
.cal-post-acoes {
  display: none; position: absolute; top: 2px; right: 3px; gap: 2px;
}
.cal-post-acoes .cal-del { display: inline; }
.cal-post:hover .cal-post-acoes { display: flex; }
.cal-post:hover .cal-post-l1 { padding-right: 26px; }  /* espaco pros botoes */

/* Modal de edição */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 200;
  display: flex; align-items: center; justify-content: center;
}
.modal-overlay[hidden] { display: none; }
.modal {
  background: var(--panel); border: 1px solid var(--border); border-radius: 12px;
  padding: 22px; width: min(420px, 92vw); box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.modal h3 { margin: 0 0 14px; }
.modal .form-row { gap: 12px; }
.modal-acoes { display: flex; justify-content: flex-end; gap: 10px; margin-top: 16px; }
.btn-x {
  background: none; border: none; color: var(--muted); cursor: pointer;
  font-size: 11px; line-height: 1; padding: 1px 3px; border-radius: 3px;
}
.btn-x:hover { color: #fff; background: var(--accent); }

/* Dia passado nao aceita novo agendamento nem receber posts arrastados. */
.cal-day.passado .cal-daynum { opacity: .5; }
.cal-day.passado .cal-add { display: none; }

.cal-add { margin-top: auto; }
.cal-add summary {
  cursor: pointer; color: var(--muted); font-size: 15px; line-height: 1;
  text-align: center; border: 1px dashed var(--border); border-radius: 5px; padding: 2px;
  user-select: none;
}
.cal-add summary:hover { color: var(--accent); border-color: var(--accent); }
.cal-add[open] summary { color: var(--accent); }
.cal-add form { background: var(--panel2); border: 1px solid var(--border); border-radius: 8px; padding: 10px; margin-top: 6px; }
.cal-add label { font-size: 11px; }
.cal-add select, .cal-add input { min-width: 0; width: 100%; font-size: 12px; padding: 6px 8px; }

@media (max-width: 900px) {
  .cal-day { min-height: 78px; }
  .cal-post .canal { display: none; }
}
.btn-sm { padding: 6px 12px; font-size: 13px; background: var(--panel2); border: 1px solid var(--border); color: var(--text); }
.btn-sm:hover { background: var(--accent); border-color: var(--accent); }
.cal-nav-right { margin-left: auto; }

/* --- Dashboard: alertas acionaveis --- */
.alerta {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 11px 14px; border-radius: 8px; margin-bottom: 8px; font-size: 14px;
  background: var(--panel); border: 1px solid var(--border); border-left-width: 3px;
}
.alerta.warn { border-left-color: #f5a623; }
.alerta.err { border-left-color: var(--accent); }
.alerta.info { border-left-color: var(--accent2); }
.alerta .btn-sm { flex-shrink: 0; text-decoration: none; }
.card-sub { display: block; font-size: 11px; color: var(--muted); margin-top: 3px; }
.card.interno { opacity: .75; border-style: dashed; }
.split { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; align-items: start; }
.split h2 { margin-top: 22px; }
.trunc { max-width: 200px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* --- Canais em cards --- */
.canais-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 16px; }
.canal-card { background: var(--panel); border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.canal-card.off { opacity: .7; }
.canal-topo { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.canal-nome { font-size: 16px; }
.conexao {
  margin: 12px 0; padding: 10px 12px; border-radius: 8px; font-size: 13px;
  background: var(--panel2); border-left: 3px solid var(--border);
}
.conexao.ok { border-left-color: var(--ok); }
.conexao.falta { border-left-color: #f5a623; }
.conexao summary { cursor: pointer; margin-top: 8px; color: var(--accent2); }
.conexao textarea { width: 100%; margin: 8px 0; font-size: 12px; }
.conexao .steps { margin: 8px 0 8px 18px; font-size: 12px; color: var(--muted); }
.conexao .steps li { margin-bottom: 4px; }
.reconectar summary { color: var(--muted); font-size: 12px; }
.canal-acoes { display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: 13px; }
.canal-acoes .edit-box { flex: 1 1 100%; }
.canal-acoes summary { cursor: pointer; color: var(--muted); }
.canal-acoes summary:hover { color: var(--accent2); }
.canal-acoes .danger summary:hover { color: var(--accent); }

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

/* Barra de uso de espaco da biblioteca de videos */
.storage-bar { margin-bottom: 18px; }
.storage-head { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; }
.storage-num { color: var(--muted); }
.storage-track { height: 8px; background: var(--panel2); border-radius: 99px; overflow: hidden; }
.storage-fill { height: 100%; background: var(--accent2); transition: width .3s; }
.storage-fill.quase { background: #f5a623; }
.storage-fill.cheio { background: var(--accent); }
.storage-bar .hint { margin-top: 6px; }

/* Bloco de dados tecnicos — so aparece no modo interno */
.interno-box { margin-top: 12px; border-top: 1px dashed var(--border); padding-top: 10px; }
.interno-box > summary { cursor: pointer; color: var(--muted); font-size: 12px; }
.interno-box > summary:hover { color: var(--accent2); }
.table-scroll { overflow-x: auto; }
.nav-sep {
  margin: 18px 0 4px; padding: 0 16px; font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); opacity: .7;
}

/* Selecao de videos no preenchimento automatico */
.video-pick { width: 100%; margin-top: 8px; }
.video-pick > summary { cursor: pointer; font-size: 13px; color: var(--muted); }
.video-pick > summary:hover { color: var(--accent2); }
.video-pick-list {
  display: flex; flex-wrap: wrap; gap: 6px 16px; margin-top: 8px;
  max-height: 190px; overflow-y: auto; padding: 10px;
  background: var(--panel2); border: 1px solid var(--border); border-radius: 8px;
}
.check { display: flex; align-items: center; gap: 6px; font-size: 13px; cursor: pointer; }
.check input { width: auto; margin: 0; }
.btn-danger { border-color: var(--accent); color: var(--accent); }
.btn-danger:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.danger-zone { border-color: rgba(254,44,85,.45); }
.danger-zone h2 { color: var(--accent); }
td .meta { color: var(--muted); font-size: 13px; }

/* ---------- Conta / seguranca ---------- */
.account-security { display: grid; grid-template-columns: minmax(210px,.65fr) 1.35fr; gap: 28px; align-items: start; }
.account-security h2 { margin-top: 0; }
.security-form { display: grid; grid-template-columns: repeat(3,minmax(150px,1fr)); gap: 12px; align-items: end; }
.security-form label { margin: 0; }
.security-form .password-rule { grid-column: 1 / -1; margin: 0; }
.security-form button { min-height: 42px; }
.page-intro { margin-top: -12px; margin-bottom: 22px; }
/* ---------- Cabeçalho de página com ícone (Configurações etc.) ---------- */
.page-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.page-head-icon {
  width: 46px; height: 46px; flex: 0 0 auto; border-radius: 12px;
  display: grid; place-items: center;
  color: var(--accent); background: rgba(254,44,85,.10); border: 1px solid rgba(254,44,85,.28);
}
.page-head h1 { margin: 0; }
.page-head .hint { margin: 3px 0 0; }

/* ---------- Banner de desbloqueio / upsell ---------- */
.unlock-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 16px 20px; margin-bottom: 20px; border-radius: 12px;
  border: 1px solid rgba(254,44,85,.35);
  background: linear-gradient(120deg, rgba(254,44,85,.10), rgba(139,123,240,.08));
}
.unlock-copy { display: flex; flex-direction: column; gap: 3px; }
.unlock-copy strong { font-size: 15px; }
.unlock-copy span { color: var(--muted); font-size: 13px; }
.unlock-cta {
  flex: 0 0 auto; text-decoration: none; white-space: nowrap;
  padding: 10px 18px; border-radius: 999px; font-weight: 600;
  color: #0a0d12; background: var(--grad);
}
.unlock-cta:hover { filter: brightness(1.08); }

/* ---------- Cartão único de Conta (Configurações) ---------- */
.account-card { display: flex; flex-direction: column; gap: 18px; max-width: 640px; }
.account-card-head h2 { margin: 0 0 4px; }
.account-card-head .hint { margin: 0; }
.account-row { margin: 0; }
.account-sep { height: 1px; background: var(--border); }
.account-form { display: grid; gap: 13px; }
.account-form label { margin: 0; }
.account-form button { justify-self: start; }
.account-profile { display: flex; }
.avatar-picker { display: flex; align-items: center; gap: 16px; }
.avatar-thumb {
  position: relative; overflow: hidden; cursor: pointer; flex: 0 0 auto;
  width: 72px; height: 72px; border-radius: 50%;
  display: grid; place-items: center; object-fit: cover;
  border: 1px solid var(--border); background: var(--panel2);
  color: var(--accent2); font-family: var(--font-display); font-size: 26px;
}
.avatar-thumb img { width: 100%; height: 100%; object-fit: cover; }
.avatar-thumb input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.avatar-actions { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.avatar-actions .hint { margin: 0; }
.account-field { display: flex; flex-direction: column; gap: 12px; }
.account-field-head { display: flex; flex-direction: column; gap: 3px; }
.account-field-title { font-weight: 600; }
.account-inline { display: flex; gap: 9px; flex-wrap: wrap; }
.account-inline input { max-width: 190px; letter-spacing: .18em; font-family: var(--font-mono); }
.account-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; max-width: 640px;
}
.account-foot-info { color: var(--muted); font-size: 13px; }
.account-foot form { margin: 0; }
.notification-card { margin-top: 16px; }
.notification-form { display: grid; gap: 12px; }
.notification-option {
  display: flex; align-items: flex-start; gap: 11px; margin: 0;
  padding: 12px; border: 1px solid var(--border); border-radius: 10px;
  background: rgba(255,255,255,.018); cursor: pointer;
}
.notification-option input[type="checkbox"] {
  flex: 0 0 auto; width: 17px; height: 17px; margin-top: 2px;
  accent-color: var(--accent);
}
.notification-option span { display: grid; gap: 3px; }
.notification-option strong { color: var(--text); font-size: 14px; }
.notification-option small { color: var(--muted); line-height: 1.45; }
.notification-option.is-required { cursor: default; border-color: rgba(46,204,113,.35); }
.notification-required-icon {
  flex: 0 0 auto; display: grid !important; place-items: center;
  width: 18px; height: 18px; margin-top: 1px; border-radius: 50%;
  color: #07110c; background: var(--ok); font-size: 12px; font-weight: 800;
}
.notification-whatsapp-note { margin: 1px 0 0; }
.notification-form button { justify-self: start; margin-top: 3px; }
/* ---------- Catálogo de planos ---------- */
.plan-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.plan-card {
  position: relative; display: flex; flex-direction: column; gap: 14px;
  padding: 22px 20px; border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(155deg, rgba(255,255,255,.035), transparent 46%), var(--panel);
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.plan-card::after { content: ""; position: absolute; width: 120px; height: 120px; right: -70px; bottom: -75px; border: 1px solid rgba(37,244,238,.13); border-radius: 50%; pointer-events: none; }
.plan-card:hover { transform: translateY(-3px); border-color: rgba(37,244,238,.45); box-shadow: 0 18px 45px rgba(0,0,0,.22); }
.plan-card.is-current { border-color: var(--ok); box-shadow: 0 0 0 1px rgba(46,204,113,.35) inset; }
.plan-card.is-featured { border-color: rgba(139,123,240,.55); }
.plan-card.is-trial { border-color: rgba(37,244,238,.42); }
.plan-tag {
  position: absolute; top: 14px; right: 14px;
  font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 999px;
  background: rgba(139,123,240,.16); color: #b9aef7; border: 1px solid rgba(139,123,240,.4);
}
.plan-tag.ok { background: rgba(46,204,113,.14); color: var(--ok); border-color: rgba(46,204,113,.45); }
.plan-card h2 { margin: 0; font-size: 19px; }
.plan-price { display: grid; grid-template-columns: max-content 1fr; align-items: baseline; column-gap: 5px; row-gap: 7px; }
.plan-price-num { font-family: var(--font-display); font-size: 25px; color: #fff; }
.plan-price-per { color: var(--muted); font-size: 13px; }
.plan-daily { grid-column: 1 / -1; justify-self: start; padding: 4px 7px; border: 1px solid rgba(37,244,238,.24); border-radius: 999px; color: var(--accent2); background: rgba(37,244,238,.07); font-family: var(--font-mono); font-size: 10px; font-weight: 700; white-space: nowrap; }
.plan-feats { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 13px; color: var(--muted); }
.plan-feats li { display: flex; gap: 6px; }
.plan-feats li::before { content: "✓"; color: var(--accent2); font-weight: 700; }
.plan-feats strong { color: var(--text); }
.plan-renewal-copy { margin: 0; padding: 10px 11px; border-left: 2px solid var(--accent2); border-radius: 0 8px 8px 0; color: #aab2bf; background: rgba(37,244,238,.055); font-size: 11px; line-height: 1.5; }
.plan-renewal-copy strong { color: var(--accent2); }
.plan-action { margin-top: auto; }
.plan-btn {
  display: block; text-align: center; text-decoration: none;
  padding: 10px 14px; border-radius: 9px; font-weight: 600;
  color: #0a0d12; background: var(--grad);
}
.plan-btn:hover { filter: brightness(1.08); }
.plan-current-lbl { display: block; text-align: center; padding: 10px 14px; color: var(--ok); font-weight: 600; border: 1px dashed rgba(46,204,113,.45); border-radius: 9px; }
.plan-note { margin-top: 20px; }
.trial-renewal-banner { display: flex; align-items: center; gap: 10px 18px; flex-wrap: wrap; margin: 0 0 20px; padding: 14px 17px; border: 1px solid rgba(37,244,238,.38); border-radius: 12px; background: linear-gradient(110deg, rgba(37,244,238,.09), rgba(139,123,240,.07)); }
.trial-renewal-banner strong { color: #fff; }
.trial-renewal-banner span { color: #aab2bf; font-size: 13px; }
.purchase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.purchase-grid .panel { margin: 0; }
.purchase-options { display: grid; gap: 9px; }
.purchase-option { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px; background: var(--panel2); border: 1px solid var(--border); border-radius: 9px; }
.purchase-option strong, .purchase-option span { display: block; }
.purchase-option span { margin-top: 3px; color: var(--muted); font-size: 12px; }
.buy-button { display: inline-block; white-space: nowrap; text-decoration: none; border-color: var(--accent2); }

/* ---------- CTA panels da Conta ---------- */
.account-cta { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.account-cta h2 { margin: 0 0 3px; font-size: 16px; }
.account-cta .hint { margin: 0; }

/* ---------- Créditos (página /creditos) ---------- */
.credit-balance { display: flex; align-items: baseline; gap: 8px; margin: 0 0 20px; padding: 14px 18px; border: 1px solid var(--border); border-radius: 12px; background: var(--panel2); }
.credit-balance .num { font-family: var(--font-display); font-size: 30px; color: #fff; line-height: 1; }
.credit-balance .bonus { color: var(--accent2); font-size: 13px; font-weight: 600; }
.credit-balance .lbl { color: var(--muted); font-size: 13px; }
.credit-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.credit-card {
  position: relative; display: flex; flex-direction: column; gap: 12px;
  padding: 22px 20px; border-radius: 14px; border: 1px solid var(--border);
  background: linear-gradient(155deg, rgba(255,255,255,.035), transparent 46%), var(--panel);
}
.credit-card.is-featured { border-color: rgba(37,244,238,.42); }
.credit-amount { display: flex; align-items: baseline; gap: 6px; }
.credit-amount strong { font-family: var(--font-display); font-size: 26px; color: #fff; }
.credit-amount span { color: var(--muted); font-size: 13px; }
.credit-price { font-size: 20px; font-weight: 700; color: #fff; }
.credit-unit { color: var(--accent2); font-family: var(--font-mono); font-size: 11px; font-weight: 700; }
.credit-feats { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; font-size: 12.5px; color: var(--muted); }
.credit-feats li { display: flex; gap: 6px; }
.credit-feats li::before { content: "✓"; color: var(--accent2); font-weight: 700; }
.credit-card .plan-btn, .credit-card .plan-current-lbl { margin-top: auto; }

/* ---------- Slots de canal (/channels) ---------- */
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; margin-top: 6px; }
.slot-card {
  position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 3px;
  padding: 14px; min-height: 108px; border-radius: 12px; text-decoration: none;
  border: 1px solid var(--border); background: var(--panel2); color: var(--text);
  transition: transform .16s ease, border-color .16s ease;
}
a.slot-card:hover { transform: translateY(-2px); }
.slot-plus { font-size: 22px; line-height: 1; font-weight: 700; color: var(--muted); }
.slot-nome { font-size: 14px; }
.slot-sub { font-size: 11px; color: var(--muted); }
.slot-bonus { font-size: 10px; color: var(--accent2); font-family: var(--font-mono); }
.slot-badge { position: absolute; top: 10px; right: 10px; font-size: 10px; padding: 2px 7px; border-radius: 999px; text-transform: capitalize; }
.slot-badge.ok { color: var(--ok); background: rgba(46,204,113,.14); border: 1px solid rgba(46,204,113,.4); }
.slot-badge.warn { color: #e0a53c; background: rgba(224,165,60,.12); border: 1px solid rgba(224,165,60,.4); }
.slot-card.cheio { border-color: rgba(46,204,113,.4); }
.slot-card.cheio .slot-plus.filled { color: var(--accent2); font-size: 15px; }
.slot-card.vazio { border-style: dashed; }
a.slot-card.vazio:hover { border-color: rgba(37,244,238,.5); }
.slot-card.comprar { border-color: rgba(37,244,238,.5); background: linear-gradient(150deg, rgba(37,244,238,.08), transparent 60%), var(--panel2); }
.slot-card.comprar .slot-plus { color: var(--accent2); }
.slot-card.comprar.off { opacity: .6; }
.slot-card.cadeado { opacity: .55; border-style: dashed; }
.slot-card.cadeado .slot-plus.lock { color: var(--muted); }
button.slot-card { font: inherit; text-align: left; cursor: pointer; width: 100%; }
.slot-card.cooldown { border-color: rgba(224,165,60,.4); border-style: dashed; background: linear-gradient(150deg, rgba(224,165,60,.08), transparent 60%), var(--panel2); }
.slot-card.cooldown .slot-plus.lock { color: #e0a53c; }
.slot-card.cooldown .slot-sub time { color: #e0a53c; font-family: var(--font-mono); font-weight: 700; }

@media (max-width: 950px) {
  .account-security, .security-form, .settings-grid, .purchase-grid { grid-template-columns: 1fr; }
  .settings-wide { grid-column: auto; }
}

/* ---------- Autenticacao / apresentacao ---------- */
.auth-body {
  min-height: 100vh; display: grid; place-items: center; padding: 24px;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    radial-gradient(900px 580px at 8% 105%, rgba(254,44,85,.15), transparent 64%),
    radial-gradient(760px 520px at 95% -8%, rgba(37,244,238,.14), transparent 66%),
    #06070a;
  background-size: 36px 36px, 36px 36px, auto, auto, auto;
}
.auth-shell {
  width: min(1120px,100%); min-height: 690px; display: grid;
  grid-template-columns: minmax(420px,1.08fr) minmax(420px,.92fr);
  border: 1px solid rgba(255,255,255,.11); border-radius: 28px; overflow: hidden;
  background: rgba(10,12,17,.94); box-shadow: 0 32px 100px rgba(0,0,0,.48);
}
.auth-brand-panel {
  position: relative; isolation: isolate; overflow: hidden;
  padding: 48px; display: flex; flex-direction: column;
  border-right: 1px solid rgba(255,255,255,.09);
  background: linear-gradient(145deg, rgba(37,244,238,.055), transparent 42%), #090b10;
}
.auth-brand-panel::before {
  content: ""; position: absolute; width: 460px; height: 460px; z-index: -1;
  right: -230px; bottom: -200px; border: 1px solid rgba(37,244,238,.22);
  border-radius: 50%; box-shadow: 0 0 0 58px rgba(37,244,238,.025), 0 0 0 116px rgba(254,44,85,.025);
}
.auth-brand-top { display: flex; align-items: center; gap: 14px; }
.auth-word {
  font-family: var(--font-display); font-weight: 700; font-size: 26px;
  letter-spacing: -.04em; color: #fff;
}
.auth-copy { margin: 105px 0 42px; max-width: 480px; }
.auth-eyebrow, .auth-kicker {
  display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--accent2);
}
.auth-copy h2 {
  margin: 16px 0; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(30px,4vw,46px); line-height: 1.08; letter-spacing: -.045em;
  color: #f5f7fa; text-transform: none;
}
.auth-copy p { margin: 0; color: #9ca4b3; font-size: 16px; line-height: 1.7; max-width: 430px; }
.auth-feats { list-style: none; padding: 0; margin: auto 0 34px; display: grid; gap: 16px; }
.auth-feats li { display: flex; align-items: center; gap: 14px; }
.auth-step {
  width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto;
  border: 1px solid rgba(37,244,238,.3); border-radius: 9px; color: var(--accent2);
  font-family: var(--font-mono); font-size: 10px;
}
.auth-feats .tx { color: #e5e8ee; font-size: 14px; }
.auth-feats .tx span { display: block; color: #687181; font-size: 11px; margin-top: 2px; }
.auth-signal { display: flex; align-items: center; gap: 6px; color: #596271; font-family: var(--font-mono); font-size: 9px; letter-spacing: .18em; }
.auth-signal i { width: 5px; height: 5px; border-radius: 50%; background: var(--accent2); opacity: .28; }
.auth-signal i:nth-child(2) { opacity: .58; }
.auth-signal i:nth-child(3) { opacity: 1; box-shadow: 0 0 12px var(--accent2); }
.auth-signal span { margin-left: 5px; }

.auth-form-panel { min-width: 0; display: flex; flex-direction: column; padding: 26px 46px 24px; background: rgba(255,255,255,.012); }
.canal-pick-list { display: flex; flex-direction: column; gap: 8px; margin: 4px 0 6px; }
.canal-pick {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 13px; border-radius: 9px;
  border: 1px solid var(--border); background: var(--panel2); cursor: pointer;
}
.canal-pick:hover { border-color: var(--accent2); }
.canal-pick input { width: 17px; height: 17px; flex: 0 0 auto; }
.canal-pick-name { font-weight: 600; }
.canal-pick-status { margin-left: auto; font-size: 12px; color: var(--muted); text-transform: lowercase; }

.auth-back {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--text);
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--panel2);
}
.auth-back:hover { color: var(--accent2); border-color: var(--accent2); }
.auth-tabs { display: flex; justify-content: flex-end; gap: 8px; }
.auth-tabs a {
  padding: 9px 14px; border: 1px solid transparent; border-radius: 9px;
  color: #717a89; font-size: 12px; text-decoration: none;
}
.auth-tabs a.on { color: #fff; border-color: var(--border); background: rgba(255,255,255,.035); }
.auth-form-inner { width: 100%; max-width: 440px; margin: auto; }
.auth-mobile-brand { display: none; margin-bottom: 34px; font-family: var(--font-display); font-weight: 600; }
.auth-mobile-brand span { color: var(--accent2); letter-spacing: -.18em; margin-right: 9px; }
.auth-heading { margin-bottom: 28px; }
.auth-heading h1 { margin: 10px 0 7px; font-family: var(--font-display); font-size: 29px; font-weight: 500; letter-spacing: -.035em; }
.auth-sub { color: #7f8897; font-size: 14px; margin: 0; line-height: 1.5; }
.auth-form { display: flex; flex-direction: column; gap: 15px; }
.auth-field-hint { margin: -7px 0 0; color: #8d96a5; font-size: 12px; line-height: 1.45; }
.auth-link-button { border: 0; background: transparent; color: var(--muted); padding: 0; font: inherit; cursor: pointer; text-decoration: underline; }
.auth-link-button:hover { color: #fff; }
.auth-form label {
  display: flex; flex-direction: column; gap: 7px; color: #8e97a6;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
}
.auth-form input:not([type="hidden"]):not([type="checkbox"]) {
  width: 100%; height: 48px; padding: 0 14px; color: var(--text); font-size: 14px;
  font-family: var(--font-sans); background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.11); border-radius: 10px;
  transition: border-color .16s, box-shadow .16s, background .16s;
}
.auth-form input::placeholder { color: #4e5663; }
.auth-form input:focus { outline: none; border-color: var(--accent2); box-shadow: 0 0 0 3px rgba(37,244,238,.11); background: rgba(255,255,255,.055); }
.password-input-wrap { position: relative; display: block; }
.password-input-wrap input { padding-right: 46px !important; }
.password-toggle {
  position: absolute; z-index: 2; top: 50%; right: 9px; transform: translateY(-50%);
  width: 32px; height: 32px; padding: 0; display: grid; place-items: center;
  color: #ff5474; background: transparent; border: 0; border-radius: 8px;
}
.password-toggle:hover { color: #fff; background: rgba(254,44,85,.15); }
.password-toggle svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.auth-fields-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.auth-check { flex-direction: row !important; align-items: flex-start; gap: 10px !important; color: #7e8796 !important; font-family: var(--font-sans) !important; font-size: 12px !important; letter-spacing: 0 !important; line-height: 1.5; text-transform: none !important; cursor: pointer; }
.auth-check input { width: 16px; min-width: 16px; height: 16px; padding: 0; margin: 1px 0 0; flex: 0 0 16px; accent-color: var(--accent2); }
.auth-check span { white-space: nowrap; }
.auth-check a, .auth-form-meta a { color: #cdd2db; }
.auth-form-meta { margin-top: -5px; text-align: right; font-size: 12px; }
.auth-form-meta a { text-decoration: none; }
.auth-form-meta a:hover, .auth-check a:hover { color: var(--accent2); }
.auth-cta {
  min-height: 50px; margin-top: 5px; display: flex; align-items: center; justify-content: center; gap: 12px;
  border: none; border-radius: 10px; cursor: pointer; color: #05070a;
  background: linear-gradient(100deg, var(--accent2), #a8fff9 52%, var(--accent));
  background-size: 180% 100%; font-family: var(--font-display); font-size: 13px; font-weight: 600;
  transition: background-position .25s, transform .12s, box-shadow .2s;
}
.auth-cta span { font-size: 18px; }
.auth-cta:hover { background-position: 100% 0; transform: translateY(-1px); box-shadow: 0 10px 28px rgba(37,244,238,.12); }
.auth-cta:active { transform: none; }
.auth-erro, .auth-ok { border-radius: 10px; padding: 11px 13px; font-size: 13px; margin-bottom: 18px; }
.auth-erro { background: rgba(254,44,85,.09); border: 1px solid rgba(254,44,85,.7); color: #ffb3c1; }
.auth-ok { background: rgba(46,204,113,.09); border: 1px solid rgba(46,204,113,.55); color: #9ce9bb; }
.auth-alt { text-align: center; margin: 22px 0 0; font-size: 12.5px; color: #687181; }
.auth-alt a { color: #dce1e8; text-decoration: none; border-bottom: 1px solid rgba(37,244,238,.5); }
.auth-resend { margin: 14px 0 0; text-align: center; }
.link-button { border: 0; background: transparent; color: #cdd2db; cursor: pointer; font: inherit; font-size: 12px; text-decoration: underline; }
.link-button:hover { color: var(--accent2); }
.muted-link { color: #687181; }
.verification-code { text-align: center; letter-spacing: .35em; font-family: var(--font-mono) !important; font-size: 22px !important; }
.auth-legal { margin: 22px 0 0; display: flex; justify-content: center; gap: 9px; font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.auth-legal, .auth-legal a { color: #474f5c; text-decoration: none; }
.auth-legal a:hover { color: #8e97a6; }

.rise { opacity: 0; transform: translateY(12px); animation: rise .55s cubic-bezier(.2,.7,.2,1) forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .rise { animation: none; opacity: 1; transform: none; } }
@media (max-width: 880px) {
  .auth-body { padding: 0; display: block; }
  .auth-shell { min-height: 100vh; grid-template-columns: 1fr; border: 0; border-radius: 0; }
  .auth-brand-panel { display: none; }
  .auth-form-panel { min-height: 100vh; padding: 24px; }
  .auth-mobile-brand { display: block; }
  .auth-tabs { margin-bottom: 36px; }
}
@media (max-width: 520px) {
  .auth-fields-2 { grid-template-columns: 1fr; }
  .auth-form-panel { padding: 20px; }
  .auth-heading h1 { font-size: 25px; }
  .auth-check { font-size: 10.5px !important; }
}

/* ---------- Oferta de 24 horas e conversão sem plano ---------- */
.offer-clock-bar {
  display: flex; align-items: center; gap: 18px; margin: 0 0 24px; padding: 13px 16px;
  border: 1px solid rgba(254,44,85,.42); border-radius: 13px;
  background: linear-gradient(110deg, rgba(254,44,85,.12), rgba(139,123,240,.08), rgba(37,244,238,.05));
  box-shadow: 0 10px 34px rgba(0,0,0,.16);
}
.offer-clock-bar > div { min-width: 0; flex: 1; }
.offer-clock-kicker { display: block; margin-bottom: 3px; color: #ff7891; font-family: var(--font-mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.offer-clock-bar strong { font-size: 14px; }
.offer-clock-bar a { color: #05070a; background: var(--grad); border-radius: 999px; padding: 9px 14px; text-decoration: none; font-size: 12px; font-weight: 700; white-space: nowrap; }
.offer-countdown, .offer-modal-timer { font-family: var(--font-mono); font-weight: 700; letter-spacing: .08em; color: #fff; }
.offer-countdown { padding: 8px 11px; border: 1px solid rgba(254,44,85,.45); border-radius: 9px; background: rgba(0,0,0,.28); font-size: 14px; }
.offer-modal-backdrop { position: fixed; z-index: 500; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(0,0,0,.78); backdrop-filter: blur(7px); }
.offer-modal { position: relative; width: min(760px, 96vw); max-height: 92vh; overflow-y: auto; padding: 34px; text-align: center; border: 1px solid rgba(254,44,85,.58); border-radius: 22px; background: radial-gradient(circle at 50% 0, rgba(254,44,85,.15), transparent 42%), #0b0d12; box-shadow: 0 0 0 1px rgba(37,244,238,.08) inset, 0 28px 100px rgba(0,0,0,.65), 0 0 50px rgba(254,44,85,.12); }
.offer-modal-close { position: absolute; top: 12px; right: 14px; padding: 4px 8px; color: var(--muted); background: transparent; font-size: 24px; }
.offer-modal-icon { width: 54px; height: 54px; margin: 0 auto 14px; display: grid; place-items: center; border-radius: 15px; color: #05070a; background: var(--grad); font-size: 24px; }
.offer-modal-icon.expired { color: #fff; background: rgba(254,44,85,.18); border: 1px solid rgba(254,44,85,.5); }
.offer-modal-eyebrow { color: #ff7891; font-family: var(--font-mono); font-size: 9px; letter-spacing: .17em; text-transform: uppercase; }
.offer-modal h2 { margin: 10px auto 8px; color: #fff; font-family: var(--font-display); font-size: clamp(21px, 3vw, 30px); line-height: 1.24; letter-spacing: -.035em; text-transform: none; }
.offer-modal > p { max-width: 590px; margin: 0 auto 18px; color: #9ba3b0; line-height: 1.6; }
.offer-modal-timer { display: block; width: max-content; margin: 0 auto 19px; padding: 11px 16px; border: 1px solid rgba(254,44,85,.55); border-radius: 10px; background: #05070a; color: #ff7891; font-size: 24px; }
.offer-modal-primary { display: block; width: min(420px, 100%); margin: 0 auto; padding: 13px 18px; border-radius: 10px; color: #05070a; background: var(--grad); text-decoration: none; font-weight: 700; }
.offer-modal-later { margin-top: 9px; color: #747d8b; background: transparent; font-size: 12px; }
.coupon-pill {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  width: min(420px, 100%); margin: 4px auto 14px; padding: 13px 16px;
  border: 1px dashed rgba(37,244,238,.55); border-radius: 12px;
  background: linear-gradient(120deg, rgba(37,244,238,.09), rgba(139,123,240,.08));
}
.coupon-off { color: #cfe9ff; font-size: 13px; }
.coupon-off strong { color: var(--accent2); }
.coupon-code {
  font-family: var(--font-mono); font-weight: 700; font-size: 20px; letter-spacing: .12em;
  color: #fff; padding: 4px 14px; border-radius: 8px;
  border: 1px solid rgba(37,244,238,.5); background: rgba(37,244,238,.1);
}
.coupon-pill small { color: var(--muted); font-size: 11px; }
.offer-modal-plans { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin: 20px 0; text-align: left; }
.offer-modal-plans a { min-width: 0; padding: 13px 11px; border: 1px solid var(--border); border-radius: 11px; color: var(--text); background: rgba(255,255,255,.025); text-decoration: none; }
.offer-modal-plans a:hover { border-color: var(--accent2); }
.offer-modal-plans strong, .offer-modal-plans span, .offer-modal-plans b, .offer-modal-plans em { display: block; }
.offer-modal-plans span { min-height: 33px; margin: 5px 0 9px; color: var(--muted); font-size: 10px; line-height: 1.45; }
.offer-modal-plans b { color: var(--accent2); font-family: var(--font-mono); font-size: 13px; }
.offer-modal-plans em { margin-top: 4px; color: #d8fefd; font-family: var(--font-mono); font-size: 10px; font-style: normal; font-weight: 700; }
.offer-daily-note { margin: -10px 0 17px; color: var(--muted); font-family: var(--font-mono); font-size: 9px; letter-spacing: .04em; }

/* ---------- Bloqueios visuais e relatório de créditos ---------- */
.locked-action { display: grid; place-items: center; min-height: 170px; padding: 24px; text-align: center; border: 1px dashed rgba(254,44,85,.45); border-radius: 11px; background: rgba(254,44,85,.04); }
.locked-action svg { width: 28px; height: 28px; margin-bottom: 8px; color: #ff6e8b; }
.locked-action strong { display: block; margin-bottom: 5px; }
.locked-action p { max-width: 520px; margin: 0 0 14px; color: var(--muted); font-size: 13px; }
.locked-action a { padding: 9px 16px; border-radius: 999px; color: #05070a; background: var(--grad); text-decoration: none; font-weight: 700; font-size: 13px; }
.report-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 14px; }
.report-head h2 { margin: 0 0 5px; }
.report-filters { display: flex; gap: 5px; padding: 4px; border: 1px solid var(--border); border-radius: 10px; background: var(--panel2); }
.report-filters a { padding: 6px 9px; border-radius: 7px; color: var(--muted); font-family: var(--font-mono); font-size: 10px; text-decoration: none; white-space: nowrap; }
.report-filters a.on { color: #05070a; background: var(--accent2); font-weight: 700; }
/* Extrato: no máx ~10 linhas visíveis, o resto rola dentro da tabela */
.extrato-scroll { max-height: 430px; overflow-y: auto; }
.extrato-scroll thead th { position: sticky; top: 0; z-index: 1; background: var(--panel); }
.credit-positive { color: var(--ok); }
.credit-negative { color: #ff6a86; }
.account-plan-section { padding: 26px; }
.account-plan-section > h2 { margin-top: 0; }

@media (max-width: 820px) {
  body:not(.auth-body):not(.landing-body) { display: block; }
  .sidebar { position: relative; width: 100%; height: auto; min-height: 0; overflow: visible; }
  .sidebar-main { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sidebar-foot { margin-top: 8px; }
  .content { width: 100%; padding: 24px 18px; }
  .offer-clock-bar { align-items: flex-start; flex-wrap: wrap; }
  .offer-clock-bar > div { flex-basis: 100%; }
  .offer-modal-plans { grid-template-columns: repeat(2, 1fr); }
  .report-head { flex-direction: column; }
}

/* ---------- Apresentacao publica ---------- */
.landing-body { display: block; margin: 0; color: #f5f7fa; background: #050609; overflow-x: hidden; }
.landing-body::selection { color: #050609; background: var(--accent2); }
.landing-nav-wrap { position: fixed; z-index: 20; top: 0; left: 0; right: 0; padding: 18px 24px; pointer-events: none; }
.landing-nav {
  width: min(1120px,100%); height: 58px; margin: 0 auto; padding: 0 12px 0 18px;
  display: flex; align-items: center; justify-content: space-between; pointer-events: auto;
  border: 1px solid rgba(255,255,255,.11); border-radius: 18px;
  background: rgba(8,10,14,.82); backdrop-filter: blur(18px); box-shadow: 0 12px 44px rgba(0,0,0,.28);
}
.landing-brand { display: flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; font-family: var(--font-display); font-weight: 650; letter-spacing: -.035em; }
.landing-brand svg { width: 31px; height: 31px; }
.landing-links, .landing-actions { display: flex; align-items: center; gap: 24px; }
.landing-links a, .landing-login { color: #8d96a5; text-decoration: none; font-size: 12px; }
.landing-links a:hover, .landing-login:hover { color: #fff; }
.landing-login { color: #fff; font-weight: 600; }
.landing-button {
  min-height: 50px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; gap: 13px;
  border: 0; border-radius: 11px; cursor: pointer; color: #030507; text-decoration: none; font-weight: 700; font-size: 13px;
  background: linear-gradient(100deg, var(--accent2), #b9fffb 54%, var(--accent)); background-size: 180% 100%;
  box-shadow: 0 10px 30px rgba(37,244,238,.11); transition: .2s ease; user-select: none; -webkit-user-select: none; -webkit-user-drag: none;
}
.landing-button:hover { transform: translateY(-2px); background-position: 100% 0; box-shadow: 0 15px 36px rgba(37,244,238,.17); }
.landing-button.small { min-height: 36px; padding: 0 14px; border-radius: 9px; font-size: 11px; }
.landing-hero {
  position: relative; width: min(1160px,calc(100% - 48px)); min-height: 780px; margin: 0 auto; overflow: hidden;
  padding: 164px 8px 90px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 65px;
}
.landing-hero::before {
  content: ""; position: absolute; z-index: -2; inset: 0 42% 0 -30vw;
  background: radial-gradient(closest-side, rgba(37,244,238,.095), transparent);
}
.landing-orbit { position: absolute; z-index: -1; border: 1px solid rgba(255,255,255,.05); border-radius: 50%; }
.orbit-a { width: 520px; height: 520px; right: -260px; top: 80px; }
.orbit-b { width: 680px; height: 680px; right: -340px; top: 0; border-color: rgba(254,44,85,.055); }
.landing-pill { width: max-content; padding: 7px 11px; display: flex; align-items: center; gap: 8px; border: 1px solid rgba(37,244,238,.27); border-radius: 999px; color: #a8b0bd; font-family: var(--font-mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.landing-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent2); box-shadow: 0 0 12px var(--accent2); }
.landing-hero h1 { margin: 24px 0; font-family: var(--font-display); font-size: clamp(48px,6vw,74px); font-weight: 550; line-height: .98; letter-spacing: -.065em; }
.landing-hero h1 em, .landing-section h2 em, .landing-final h2 em { color: transparent; font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; }
.landing-hero-copy > p { max-width: 585px; margin: 0; color: #9098a7; font-size: 17px; line-height: 1.72; }
.landing-hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 32px; }
.landing-ghost { cursor: pointer; color: #e8ebf0; text-decoration: none; font-size: 13px; font-weight: 600; border-bottom: 1px solid rgba(254,44,85,.6); padding: 8px 0 5px; user-select: none; -webkit-user-select: none; -webkit-user-drag: none; }
.landing-ghost:hover { color: var(--accent2); border-color: var(--accent2); }
.landing-proof { margin-top: 42px; display: flex; gap: 24px; color: #626b79; font-family: var(--font-mono); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.landing-proof b { display: block; margin-bottom: 4px; color: #d6dae1; font-size: 12px; letter-spacing: 0; }
.flux-demo { position: relative; padding: 22px; border: 1px solid rgba(255,255,255,.11); border-radius: 22px; background: linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.012)); box-shadow: 0 38px 100px rgba(0,0,0,.44); transform: perspective(1000px) rotateY(-4deg) rotateX(2deg); }
.flux-demo::before { content: ""; position: absolute; z-index: -1; inset: 14% -12%; background: radial-gradient(closest-side,rgba(37,244,238,.13),transparent); filter: blur(28px); }
.flux-demo-top { display: flex; align-items: center; gap: 5px; color: #687181; font-family: var(--font-mono); font-size: 8px; letter-spacing: .17em; }
.flux-demo-top span { margin-right: auto; }.flux-demo-top i { width: 5px; height: 5px; border-radius: 50%; background: #3b424d; }.flux-demo-top i:last-child { background: var(--accent2); box-shadow: 0 0 8px var(--accent2); }
.flux-time { display: flex; align-items: baseline; gap: 12px; margin: 30px 0 22px; }.flux-time strong { font-family: var(--font-display); font-size: 32px; font-weight: 500; }.flux-time span { color: #6d7582; font-size: 10px; }
.flux-line { height: 1px; margin-bottom: 8px; background: linear-gradient(90deg,var(--accent2),rgba(255,255,255,.08),transparent); }
.flux-row { position: relative; display: grid; grid-template-columns: 28px 1fr auto; gap: 11px; align-items: center; padding: 15px 5px; border-bottom: 1px solid rgba(255,255,255,.055); }
.flux-index { color: #4d5562; font-family: var(--font-mono); font-size: 9px; }.flux-row b { display: block; font-size: 12px; }.flux-row small { color: #646c79; font-size: 9px; }.flux-row time { color: #9aa2af; font-family: var(--font-mono); font-size: 9px; }.flux-row mark { grid-column: 2; width: max-content; padding: 4px 7px; border-radius: 5px; color: #838b98; background: rgba(255,255,255,.04); font-family: var(--font-mono); font-size: 7px; letter-spacing: .08em; text-transform: uppercase; }.flux-row.done mark { color: var(--ok); }.flux-row.live mark { color: var(--accent2); background: rgba(37,244,238,.07); }.flux-row.live::before { content: ""; position: absolute; left: -23px; width: 2px; height: 50%; background: var(--accent2); box-shadow: 0 0 13px var(--accent2); }
.flux-next { margin-top: 18px; padding: 12px 14px; display: flex; align-items: center; justify-content: space-between; border: 1px solid rgba(254,44,85,.17); border-radius: 9px; background: rgba(254,44,85,.035); }.flux-next span { color: #727a87; font-family: var(--font-mono); font-size: 8px; letter-spacing: .14em; }.flux-next b { color: #ff7993; font-family: var(--font-mono); font-size: 11px; }
.landing-strip { width: 100%; min-width: 0; padding: 18px 5vw; display: flex; align-items: center; justify-content: center; gap: 38px; overflow: hidden; border-block: 1px solid rgba(255,255,255,.07); color: #66707d; background: #07080b; font-family: var(--font-mono); font-size: 9px; letter-spacing: .16em; }.landing-strip i { color: var(--accent2); font-style: normal; letter-spacing: -.2em; }
.landing-section { width: min(1120px,calc(100% - 48px)); margin: 0 auto; padding: 120px 0; }
.landing-section-head { max-width: 690px; }.landing-section-head.centered { margin-inline: auto; text-align: center; }
.landing-overline { color: var(--accent2); font-family: var(--font-mono); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
.landing-section h2, .landing-final h2 { margin: 15px 0; font-family: var(--font-display); font-size: clamp(34px,5vw,55px); font-weight: 500; line-height: 1.08; letter-spacing: -.05em; color: #f5f7fa; text-transform: none; }
.landing-section-head p, .feature-copy > p { color: #858e9c; font-size: 15px; line-height: 1.7; }
.process-flow { position: relative; margin-top: 58px; }
.process-progress { position: absolute; z-index: 2; top: 93px; left: 7%; right: 7%; height: 1px; overflow: hidden; background: rgba(255,255,255,.08); }
.process-progress i { display: block; width: 28%; height: 100%; background: linear-gradient(90deg,transparent,var(--accent2),var(--accent)); box-shadow: 0 0 12px rgba(37,244,238,.55); animation: process-line 8s ease-in-out infinite; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.process-grid article { position: relative; min-height: 280px; padding: 26px; border: 1px solid rgba(255,255,255,.085); border-radius: 16px; background: linear-gradient(145deg,rgba(255,255,255,.025),transparent); overflow: hidden; animation: process-card 8s ease-in-out infinite; }.process-grid article:nth-child(2){animation-delay:2s}.process-grid article:nth-child(3){animation-delay:4s}.process-grid article:nth-child(4){animation-delay:6s}.process-grid article::after { content: ""; position: absolute; width: 150px; height: 150px; right: -75px; top: -75px; border: 1px solid rgba(37,244,238,.09); border-radius: 50%; }.process-grid article > span { color: #535b68; font-family: var(--font-mono); font-size: 9px; }.process-icon { position: relative; z-index: 3; width: 48px; height: 48px; margin: 38px 0 26px; display: grid; place-items: center; border: 1px solid rgba(37,244,238,.2); border-radius: 12px; color: var(--accent2); background: #090b0f; font-family: var(--font-display); }.process-grid h3 { margin: 0 0 10px; font-size: 16px; }.process-grid p { margin: 0; color: #717a88; font-size: 12px; line-height: 1.6; }
@keyframes process-line { 0%{transform:translateX(-110%)} 45%,55%{transform:translateX(130%)} 100%{transform:translateX(370%)} }
@keyframes process-card { 0%,18%,100%{border-color:rgba(255,255,255,.085);box-shadow:none} 8%{border-color:rgba(37,244,238,.42);box-shadow:inset 0 0 40px rgba(37,244,238,.035),0 0 24px rgba(37,244,238,.05)} }
.differentials { border-top: 1px solid rgba(255,255,255,.06); }
.differential-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 52px; }
.differential-grid article { position: relative; min-height: 250px; padding: 28px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); border-radius: 17px; background: linear-gradient(145deg,rgba(255,255,255,.026),rgba(255,255,255,.009)); }
.differential-grid article > span { color: var(--accent2); font-family: var(--font-mono); font-size: 8px; letter-spacing: .16em; }
.differential-grid h3 { max-width: 600px; margin: 28px 0 12px; font-family: var(--font-display); font-size: 20px; line-height: 1.25; letter-spacing: -.025em; }
.differential-grid p { margin: 0; color: #7d8694; font-size: 12px; line-height: 1.7; }
.differential-main { grid-column: 1 / -1; min-height: 390px!important; padding: 42px!important; background: radial-gradient(640px 330px at 100% 100%,rgba(37,244,238,.11),transparent),radial-gradient(480px 300px at 0 0,rgba(254,44,85,.07),transparent),rgba(255,255,255,.018)!important; border-color: rgba(37,244,238,.22)!important; }
.differential-main::after { content: "∞"; position: absolute; right: 45px; top: -75px; color: rgba(255,255,255,.025); font-family: var(--font-display); font-size: 330px; line-height: 1; }
.differential-main h3 { max-width: 690px; margin-top: 32px; font-size: clamp(31px,4vw,48px); }
.differential-main p { max-width: 700px; font-size: 14px; }
.differential-main small { display: block; max-width: 680px; margin-top: 18px; color: #565f6c; font-size: 10px; line-height: 1.55; }
.variation-visual { position: absolute; right: 38px; bottom: 34px; display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 8px; }
.variation-visual b { padding: 9px 11px; border: 1px solid rgba(255,255,255,.09); border-radius: 7px; color: #858e9b; background: rgba(0,0,0,.25); font-weight: 400; }
.variation-visual b:last-child { color: var(--accent2); border-color: rgba(37,244,238,.28); box-shadow: 0 0 18px rgba(37,244,238,.07); }
.variation-visual i { color: var(--accent); font-style: normal; }
.features { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }
.feature-console { padding: 22px; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; background: #090b0f; box-shadow: 0 28px 80px rgba(0,0,0,.35); }.console-head { display: flex; justify-content: space-between; color: #69717e; font-family: var(--font-mono); font-size: 8px; letter-spacing: .13em; }.console-head b { color: var(--accent2); font-weight: 400; }.console-chart { height: 190px; margin: 35px 0 24px; display: flex; align-items: end; gap: 8px; border-bottom: 1px solid rgba(255,255,255,.08); background: repeating-linear-gradient(to top,rgba(255,255,255,.035) 0 1px,transparent 1px 47px); }.console-chart i { flex: 1; height: 30%; border-radius: 3px 3px 0 0; background: linear-gradient(to top,rgba(37,244,238,.12),var(--accent2)); opacity: .4; }.console-chart i:nth-child(2),.console-chart i:nth-child(7){height:52%}.console-chart i:nth-child(3),.console-chart i:nth-child(9){height:72%}.console-chart i:nth-child(4){height:45%}.console-chart i:nth-child(5),.console-chart i:nth-child(10){height:88%;opacity:.8}.console-chart i:nth-child(6){height:62%}.console-chart i:nth-child(8){height:38%}.console-chart i:nth-child(11){height:67%}.console-chart i:nth-child(12){height:96%;opacity:1;box-shadow:0 0 18px rgba(37,244,238,.25)}.console-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }.console-stats div { padding: 13px; border: 1px solid rgba(255,255,255,.06); border-radius: 8px; }.console-stats small { display: block; color: #59616e; font-family: var(--font-mono); font-size: 7px; letter-spacing: .1em; }.console-stats strong { display: block; margin-top: 7px; font-family: var(--font-display); font-size: 22px; }.feature-copy ul { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 13px; color: #bdc3cd; font-size: 13px; }.feature-copy li { display: flex; align-items: center; gap: 10px; }.feature-copy li i { width: 7px; height: 7px; transform: rotate(45deg); border: 1px solid var(--accent); }
.arsenal { border-top: 1px solid rgba(255,255,255,.06); }
.arsenal-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 11px; margin-top: 50px; }
.arsenal-grid article { position: relative; min-height: 220px; padding: 23px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); border-radius: 14px; background: rgba(255,255,255,.018); transition: .2s ease; }.arsenal-grid article:hover { transform: translateY(-3px); border-color: rgba(37,244,238,.28); background: rgba(37,244,238,.025); }.arsenal-grid article > span { position: absolute; top: 20px; right: 20px; color: rgba(255,255,255,.1); font-family: var(--font-mono); font-size: 9px; }.arsenal-grid article > div { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(254,44,85,.25); border-radius: 10px; color: var(--accent); font-family: var(--font-display); }.arsenal-grid h3 { margin: 32px 0 9px; font-size: 15px; }.arsenal-grid p { margin: 0; color: #707986; font-size: 12px; line-height: 1.6; }
.impact-preview { width: 100%; max-width: none; padding-inline: 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.06); }
.impact-preview .landing-section-head { padding-inline: 24px; }
.impact-marquee { position: relative; margin-top: 52px; overflow: hidden; }
.impact-marquee::before, .impact-marquee::after { content: ""; position: absolute; z-index: 2; top: 0; bottom: 0; width: 10vw; pointer-events: none; }
.impact-marquee::before { left: 0; background: linear-gradient(90deg,#050609,transparent); }
.impact-marquee::after { right: 0; background: linear-gradient(-90deg,#050609,transparent); }
.impact-track { width: max-content; display: flex; gap: 14px; animation: impact-scroll 42s linear infinite; }
.impact-marquee:hover .impact-track { animation-play-state: paused; }
.impact-track article { position: relative; width: 330px; min-height: 210px; padding: 27px; flex: 0 0 auto; overflow: hidden; border: 1px solid rgba(255,255,255,.09); border-radius: 16px; background: linear-gradient(145deg,rgba(255,255,255,.035),rgba(255,255,255,.012)); }
.impact-track article::before { content: ""; position: absolute; width: 130px; height: 130px; right: -70px; bottom: -75px; border: 1px solid rgba(37,244,238,.12); border-radius: 50%; }
.impact-track article > span { color: var(--accent2); font-family: var(--font-mono); font-size: 8px; letter-spacing: .17em; }
.impact-track h3 { margin: 34px 0 12px; font-family: var(--font-display); font-size: 17px; line-height: 1.35; letter-spacing: -.025em; }
.impact-track p { margin: 0; max-width: 245px; color: #747d8b; font-size: 12px; line-height: 1.6; }
.impact-track b { position: absolute; top: 22px; right: 24px; color: rgba(255,255,255,.11); font-family: var(--font-mono); font-size: 11px; }
.impact-note { display: flex; align-items: center; justify-content: center; gap: 9px; margin: 28px 20px 0; color: #596270; font-size: 11px; text-align: center; }
.impact-note i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent2); box-shadow: 0 0 10px rgba(37,244,238,.6); }
@keyframes impact-scroll { to { transform: translateX(calc(-50% - 7px)); } }
@media (prefers-reduced-motion: reduce) { .impact-track,.process-progress i,.process-grid article { animation: none; }.impact-marquee { overflow-x: auto; } }
.offer-section { width: min(930px,calc(100% - 48px)); text-align: center; }
.offer-card { position: relative; padding: 68px 64px 36px; overflow: hidden; border: 1px solid rgba(37,244,238,.2); border-radius: 24px; background: radial-gradient(620px 310px at 50% 100%,rgba(37,244,238,.1),transparent),linear-gradient(145deg,rgba(255,255,255,.035),rgba(255,255,255,.01)); box-shadow: 0 28px 90px rgba(0,0,0,.32); }
.offer-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(110deg,transparent 15%,rgba(255,255,255,.025) 50%,transparent 85%); }
.offer-badge { display: inline-flex; padding: 8px 15px; border: 1px solid rgba(254,44,85,.26); border-radius: 999px; color: #ff7993; background: rgba(254,44,85,.07); font-family: var(--font-mono); font-size: 8px; letter-spacing: .18em; }
.offer-card h2 { position: relative; margin-top: 24px; font-size: clamp(36px,5vw,54px); }
.offer-card > p { position: relative; margin: 0 auto; max-width: 570px; color: #858e9c; font-size: 14px; line-height: 1.7; }
.offer-card > strong { position: relative; display: block; margin: 13px 0 27px; color: #c6ccd5; font-size: 12px; font-weight: 550; }
.offer-card > .landing-button { position: relative; }
.guarantee-card { position: relative; max-width: 650px; margin: 34px auto 0; padding: 18px 22px; display: flex; align-items: center; gap: 16px; text-align: left; border: 1px solid rgba(37,244,238,.23); border-radius: 14px; background: rgba(0,0,0,.2); box-shadow: 0 0 28px rgba(37,244,238,.045); }
.guarantee-card i { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(37,244,238,.3); border-radius: 50%; color: var(--accent2); background: rgba(37,244,238,.07); font-style: normal; }
.guarantee-card b,.guarantee-card span { display: block; }.guarantee-card b { color: #e2e6ec; font-size: 13px; }.guarantee-card span { margin-top: 4px; color: #777f8c; font-size: 10px; line-height: 1.5; }
.payment-trust { position: relative; margin-top: 24px; padding-top: 21px; display: flex; align-items: center; justify-content: center; gap: 28px; border-top: 1px solid rgba(255,255,255,.07); color: #767e8a; font-size: 10px; }.payment-trust span { white-space: nowrap; }
.faq { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; border-top: 1px solid rgba(255,255,255,.06); }.faq-list { border-top: 1px solid rgba(255,255,255,.09); }.faq details { border-bottom: 1px solid rgba(255,255,255,.09); }.faq summary { padding: 20px 2px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #d6dbe3; cursor: pointer; list-style: none; font-size: 14px; }.faq summary::-webkit-details-marker { display: none; }.faq summary span { color: var(--accent2); font-family: var(--font-mono); font-size: 16px; transition: transform .2s; }.faq details[open] summary span { transform: rotate(45deg); }.faq details p { margin: -4px 42px 20px 2px; color: #78818e; font-size: 12px; line-height: 1.7; }
.landing-final { position: relative; padding: 120px 24px 130px; text-align: center; overflow: hidden; border-top: 1px solid rgba(255,255,255,.07); background: radial-gradient(600px 300px at 50% 100%,rgba(254,44,85,.11),transparent),radial-gradient(500px 240px at 50% 0,rgba(37,244,238,.08),transparent); }.landing-final > *:not(.final-chevrons) { position: relative; z-index: 1; }.landing-final h2 { font-size: clamp(42px,6vw,68px); }.landing-final p { color: #7f8896; }.landing-final > div:last-child { display: flex; justify-content: center; align-items: center; gap: 24px; margin-top: 30px; }.final-chevrons { position: absolute; inset: auto 0 -80px; pointer-events: none; color: rgba(255,255,255,.018); font-family: var(--font-display); font-size: 320px; font-weight: 800; letter-spacing: -.23em; line-height: .5; user-select: none; -webkit-user-select: none; }
.landing-footer { padding: 30px max(24px,calc((100% - 1120px)/2)); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; border-top: 1px solid rgba(255,255,255,.07); color: #4f5763; font-size: 10px; }.landing-footer p { margin: 0; }.landing-footer > div { display: flex; justify-content: flex-end; gap: 18px; }.landing-footer a { color: #6d7582; text-decoration: none; }
.scroll-cta { position: fixed; z-index: 25; left: 50%; bottom: 16px; padding: 7px; transform: translateX(-50%); border: 1px solid rgba(255,255,255,.09); border-radius: 15px; background: rgba(5,6,9,.84); box-shadow: 0 12px 42px rgba(0,0,0,.5); backdrop-filter: blur(15px); }
.scroll-cta .landing-button { min-height: 43px; padding-inline: 22px; border-radius: 10px; font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; white-space: nowrap; }
@media (max-width: 960px) {
  .landing-links { display: none; }.landing-hero { min-height: auto; padding-top: 140px; grid-template-columns: 1fr; }.landing-hero-copy { max-width: 720px; }.flux-demo { max-width: 620px; transform: none; }.features { grid-template-columns: 1fr; gap: 55px; }.process-grid,.arsenal-grid { grid-template-columns: repeat(2,1fr); }.process-progress { display: none; }.differential-grid { grid-template-columns: 1fr; }.differential-main { grid-column: auto; }.variation-visual { position: static; margin-top: 30px; flex-wrap: wrap; }.faq { grid-template-columns: 1fr; gap: 45px; }.landing-proof { flex-wrap: wrap; }
}
@media (max-width: 680px) {
  .landing-nav-wrap { padding: 10px; }.landing-nav { height: 52px; padding-left: 12px; }.landing-actions { gap: 12px; }.landing-actions .landing-button { display: none; }.landing-hero { width: calc(100% - 32px); padding: 120px 0 70px; }.landing-hero h1 { font-size: 47px; }.landing-hero-copy > p { font-size: 15px; }.landing-hero-actions { align-items: flex-start; flex-direction: column; }.landing-proof { gap: 16px 24px; }.flux-demo { padding: 16px; }.landing-strip { justify-content: flex-start; overflow: hidden; }.landing-section { width: calc(100% - 32px); padding: 85px 0; }.impact-preview { width: 100%; }.impact-track article { width: 290px; }.process-grid,.arsenal-grid { grid-template-columns: 1fr; }.process-grid article { min-height: 230px; animation: none; }.differential-main { min-height: auto!important; padding: 28px 20px!important; }.differential-main::after { display: none; }.differential-grid article { min-height: 220px; padding: 24px 20px; }.variation-visual { gap: 6px; }.offer-section { width: calc(100% - 32px); }.offer-card { padding: 45px 18px 24px; }.guarantee-card { padding: 16px; }.payment-trust { align-items: flex-start; flex-direction: column; gap: 12px; text-align: left; }.faq { gap: 30px; }.landing-final { padding-inline: 16px; }.landing-footer { padding-bottom: 100px; grid-template-columns: 1fr; text-align: center; }.landing-footer .landing-brand,.landing-footer > div { justify-content: center; }.console-stats strong { font-size: 17px; }.scroll-cta { width: calc(100% - 24px); bottom: 10px; }.scroll-cta .landing-button { width: 100%; justify-content: center; }
}
