/* Design system compartilhado entre index.html, privacy.html e terms.html.
   Extraído do <style> inline original do index.html — zero deps, CSS puro. */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,500;0,600;0,700;1,500&family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');
:root {
  --bg: #0d1017;
  --bg-2: #0a0d13;
  --bg-card: #151a24;
  --glass: rgba(21, 26, 36, .72);
  --bg-input: #1c2230;
  --border: #2a3245;
  --border-soft: rgba(122, 138, 168, .16);
  --text: #e8ecf4;
  --text-dim: #97a1b5;
  --text-faint: #6b7488;
  --silver: #c9d4e8;
  --amber: #f0b429;
  --amber-dark: #d29a12;
  --emerald: #3fca6b;
  --emerald-dim: #2ea85a;
  --red: #e5534b;
  --radius: 14px;
  --radius-lg: 20px;
  --maxw: 1120px;
  /* Tipografia com propósito (skill frontend-design): um display com caráter
     de carimbo/ledger (Fraunces), um corpo mais vivo que o system-ui padrão
     (IBM Plex Sans) e um mono tabular pra todo número que representa prata
     real — preço, margem, lucro — reforçando a precisão de um livro-caixa. */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* Fundo com brilho âmbar→esmeralda + textura sutil de papel/ledger (SVG
   inline, zero deps) — o grão fica quase imperceptível, só tira o "plano
   demais" do glassmorphism padrão */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60rem 40rem at 78% -8%, rgba(240, 180, 41, .13), transparent 60%),
    radial-gradient(52rem 38rem at 8% 12%, rgba(63, 202, 107, .10), transparent 58%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
}
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
a { color: inherit; }

/* ---------- Header ---------- */
header.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  background: rgba(13, 16, 23, .68);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; }
.logo { font-family: var(--font-display); font-size: 1.28rem; font-weight: 600; letter-spacing: -.01em; display: flex; align-items: center; gap: 8px; }
.logo .mark {
  width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--amber), var(--emerald)); color: #14100a; font-size: 15px;
}
.logo span { color: var(--amber); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-toggle {
  background: var(--bg-card); border: 1px solid var(--border); color: var(--text-dim);
  border-radius: 999px; padding: 7px 30px 7px 14px; font-size: .85rem; cursor: pointer; transition: .15s;
  -webkit-appearance: none; appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-dim) 50%), linear-gradient(135deg, var(--text-dim) 50%, transparent 50%);
  background-position: right 14px center, right 9px center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat;
}
.lang-toggle:hover { color: var(--text); border-color: var(--text-dim); }
.lang-toggle option { background: var(--bg-card); color: var(--text); }
.nav-cta {
  background: var(--amber); color: #1a1405; font-weight: 700; font-size: .88rem;
  padding: 8px 16px; border-radius: 999px; text-decoration: none; transition: transform .1s, background .15s;
}
.nav-cta:hover { background: var(--amber-dark); }
.nav-cta:active { transform: scale(.97); }
.nav-login {
  color: var(--text-dim); font-size: .88rem; font-weight: 600; text-decoration: none;
  padding: 8px 6px; transition: color .15s;
}
.nav-login:hover { color: var(--text); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Hero ---------- */
.hero { display: grid; grid-template-columns: 1fr; gap: 34px; padding: 56px 0 30px; align-items: center; }
@media (min-width: 900px) { .hero { grid-template-columns: 1.05fr .95fr; gap: 48px; padding: 74px 0 44px; } }
.pill {
  display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--text-dim);
  background: var(--glass); border: 1px solid var(--border-soft); border-radius: 999px; padding: 6px 13px;
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 0 rgba(63,202,107,.55); animation: pulse 2.2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(63,202,107,.5);} 70% { box-shadow: 0 0 0 8px rgba(63,202,107,0);} 100% { box-shadow: 0 0 0 0 rgba(63,202,107,0);} }
.hero h1 { font-family: var(--font-display); font-size: clamp(2.15rem, 5.4vw, 3.5rem); font-weight: 600; letter-spacing: -.02em; line-height: 1.1; margin-top: 18px; }
.hero h1 em { font-style: normal; background: linear-gradient(120deg, var(--amber), var(--emerald)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.sub { color: var(--text-dim); font-size: 1.08rem; margin-top: 18px; max-width: 33rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 8px; background: var(--amber); color: #1a1405;
  font-weight: 700; font-size: 1rem; padding: 14px 26px; border-radius: 999px; border: none; cursor: pointer;
  text-decoration: none; transition: transform .1s, background .15s, box-shadow .15s;
  box-shadow: 0 8px 26px -10px rgba(240,180,41,.5);
}
.cta-btn:hover { background: var(--amber-dark); transform: translateY(-1px); }
.cta-btn:active { transform: scale(.97); }
.cta-btn.ghost {
  background: transparent; color: var(--text); border: 1px solid var(--border); box-shadow: none;
}
.cta-btn.ghost:hover { border-color: var(--text-dim); background: rgba(255,255,255,.03); }
.hero-trust { margin-top: 20px; font-size: .82rem; color: var(--text-faint); display: flex; align-items: center; gap: 7px; }

/* Hero number card */
.hero-num {
  background: var(--glass); border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 16px 18px; margin-top: 26px; display: inline-flex; flex-direction: column; gap: 2px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hero-num { position: relative; }
.hero-num .lbl { font-size: .74rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: .08em; }
.hero-num .big { font-family: var(--font-mono); font-size: 2rem; font-weight: 600; color: var(--emerald); letter-spacing: -.01em; }
.hero-num .big small { font-family: var(--font-body); font-size: .9rem; color: var(--text-dim); font-weight: 600; }
/* Selo-assinatura: o mesmo losango da marca, carimbado como um selo de
   autenticação de livro-caixa — reforça "número real", não decoração solta */
.hero-num .stamp {
  position: absolute; top: -14px; right: -12px; width: 34px; height: 34px;
  border-radius: 50%; display: grid; place-items: center; font-size: 15px;
  background: var(--bg-card); border: 1.5px dashed rgba(240,180,41,.55); color: var(--amber);
  transform: rotate(-12deg);
}

/* ---------- Glass card (radar) ---------- */
.glass {
  background: var(--glass); border: 1px solid var(--border-soft); border-radius: var(--radius-lg);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px -40px rgba(0,0,0,.75);
}
.radar-card { overflow: hidden; }
/* Âncora #radar: sem isso o header sticky cobre o topo do card ao rolar */
#radar { scroll-margin-top: 90px; }
.radar-card .bar {
  display: flex; align-items: center; gap: 8px; padding: 13px 18px;
  border-bottom: 1px solid var(--border-soft); font-size: .82rem; color: var(--text-dim);
}
.radar-card .bar .live { width: 9px; height: 9px; border-radius: 50%; background: var(--emerald); animation: pulse 2.2s infinite; }
.radar-card .bar .server { margin-left: auto; color: var(--text-faint); }
.flip-row {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  border-bottom: 1px solid var(--border-soft); font-size: .92rem;
  transition: background .3s; animation: rowin .45s ease both;
}
@keyframes rowin { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: none;} }
.flip-row.flash { animation: rowin .45s ease both, flash .9s ease; }
@keyframes flash {
  0% { background: rgba(63,202,107,.16); }
  100% { background: transparent; }
}
.flip-row:last-child { border-bottom: none; }
.flip-row .badge { flex-shrink: 0; font-size: 1rem; }
.flip-row .item { flex: 1; min-width: 0; }
.flip-row .item .name { font-weight: 650; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.flip-row .item .route { color: var(--text-faint); font-size: .8rem; font-family: var(--font-mono); }
.flip-row .profit { text-align: right; flex-shrink: 0; font-family: var(--font-mono); }
.flip-row .profit .val { color: var(--emerald); font-weight: 600; }
.flip-row .profit .pct { color: var(--text-dim); font-size: .8rem; }
.radar-note { text-align: center; color: var(--text-faint); font-size: .76rem; padding: 11px 16px 14px; }

/* ---------- Trust bar ---------- */
.trust { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 30px 0 8px; }
@media (min-width: 720px) { .trust { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; padding: 18px 12px; }
.stat .n { font-family: var(--font-mono); font-size: 1.75rem; font-weight: 600; letter-spacing: -.01em; }
.stat .n.amber { color: var(--amber); }
.stat .n.emerald { color: var(--emerald); }
.stat .c { color: var(--text-dim); font-size: .84rem; margin-top: 3px; }

/* ---------- Section scaffolding ---------- */
section.block { padding: 54px 0; }
.eyebrow { color: var(--amber); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
h2.title { font-family: var(--font-display); font-size: clamp(1.6rem, 3.6vw, 2.35rem); font-weight: 600; letter-spacing: -.01em; margin-top: 10px; }
p.lead { color: var(--text-dim); font-size: 1.02rem; margin-top: 12px; max-width: 40rem; }

/* ---------- Problem → Solution ---------- */
.ps { display: grid; gap: 16px; margin-top: 30px; }
@media (min-width: 760px) { .ps { grid-template-columns: 1fr 1fr; } }
.ps-col { padding: 24px; border-radius: var(--radius); }
.ps-col.before { background: rgba(229,83,75,.06); border: 1px solid rgba(229,83,75,.22); }
.ps-col.after { background: rgba(63,202,107,.06); border: 1px solid rgba(63,202,107,.24); }
.ps-col h3 { font-size: 1.05rem; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.ps-col ul { list-style: none; display: grid; gap: 10px; }
.ps-col li { display: flex; gap: 10px; font-size: .94rem; color: var(--text-dim); }
.ps-col li b { color: var(--text); font-weight: 600; }
.ps-col .ic { flex-shrink: 0; }

/* ---------- Features ---------- */
.features { display: grid; gap: 16px; margin-top: 30px; }
@media (min-width: 640px) { .features { grid-template-columns: 1fr 1fr; } }
.feature { padding: 22px; border-radius: var(--radius); transition: border-color .2s, transform .2s, box-shadow .2s; }
.feature:hover { border-color: rgba(240,180,41,.4); transform: translateY(-2px); box-shadow: 0 18px 46px -30px rgba(240,180,41,.5); }
.feature .ico { font-size: 1.5rem; }
.feature h3 { font-size: 1.02rem; margin: 12px 0 6px; }
.feature p { color: var(--text-dim); font-size: .9rem; }

/* ---------- Differentiators table ---------- */
.diff-wrap { margin-top: 28px; overflow-x: auto; border-radius: var(--radius); }
table.diff { width: 100%; border-collapse: collapse; min-width: 460px; font-size: .9rem; }
table.diff th, table.diff td { padding: 13px 14px; text-align: left; border-bottom: 1px solid var(--border-soft); }
table.diff thead th { color: var(--text-faint); font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
table.diff th.us { color: var(--amber); }
table.diff td.us { color: var(--emerald); font-weight: 700; }
table.diff td:first-child { color: var(--text); }
table.diff .no { color: var(--text-faint); }

/* ---------- Plans ---------- */
.plans { display: grid; gap: 18px; margin-top: 30px; }
@media (min-width: 760px) { .plans { grid-template-columns: 1fr 1fr; } }
.plan { padding: 26px; border-radius: var(--radius-lg); position: relative; transition: transform .2s, box-shadow .2s; }
.plan:hover { transform: translateY(-2px); }
.plan.free:hover { box-shadow: 0 18px 46px -30px rgba(63,202,107,.45); }
.plan.pro { border-color: rgba(240,180,41,.45); box-shadow: 0 24px 60px -36px rgba(240,180,41,.5); }
.plan.pro:hover { box-shadow: 0 26px 64px -32px rgba(240,180,41,.65); }
.plan .tag { position: absolute; top: -11px; right: 22px; background: var(--amber); color: #1a1405; font-size: .72rem; font-weight: 800; padding: 4px 11px; border-radius: 999px; text-transform: uppercase; letter-spacing: .05em; }
.plan .pname { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; }
.plan .price { font-family: var(--font-mono); font-size: 1.9rem; font-weight: 600; margin: 8px 0 2px; letter-spacing: -.01em; }
.plan .price small { font-size: .9rem; color: var(--text-dim); font-weight: 600; }
.plan .pnote { color: var(--text-faint); font-size: .78rem; }
.plan ul { list-style: none; display: grid; gap: 11px; margin: 18px 0 22px; }
.plan li { display: flex; gap: 10px; font-size: .92rem; color: var(--text-dim); }
.plan li b { color: var(--text); font-weight: 600; }
.plan li .ck { color: var(--emerald); flex-shrink: 0; }
.plan .plan-cta { display: block; text-align: center; padding: 13px; border-radius: 999px; font-weight: 700; text-decoration: none; cursor: pointer; transition: transform .1s, background .15s; }
.plan .plan-cta:active { transform: scale(.97); }
.plan.free .plan-cta { background: var(--bg-input); color: var(--text); border: 1px solid var(--border); }
.plan.pro .plan-cta { background: var(--amber); color: #1a1405; }

/* ---------- FAQ ---------- */
.faq { margin-top: 28px; display: grid; gap: 12px; }
details.qa { border-radius: var(--radius); overflow: hidden; }
details.qa summary { cursor: pointer; list-style: none; padding: 17px 20px; font-weight: 650; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary .plus { color: var(--amber); font-size: 1.3rem; transition: transform .2s; flex-shrink: 0; }
details.qa[open] summary .plus { transform: rotate(45deg); }
details.qa .a { padding: 0 20px 18px; color: var(--text-dim); font-size: .92rem; }

/* ---------- Waitlist form ---------- */
.form-card { border-color: rgba(240,180,41,.4); padding: 30px 24px; margin-top: 30px; scroll-margin-top: 80px; }
.form-card h2 { font-size: 1.5rem; letter-spacing: -.02em; }
.form-card p.formsub { color: var(--text-dim); font-size: .94rem; margin: 8px 0 20px; }
.form-card label { display: block; font-size: .85rem; color: var(--text-dim); margin: 14px 0 5px; }
.form-card input, .form-card select {
  width: 100%; background: var(--bg-input); border: 1px solid var(--border);
  color: var(--text); border-radius: 10px; padding: 13px 14px; font-size: 1rem;
}
.form-card input:focus, .form-card select:focus { outline: 2px solid var(--amber); border-color: transparent; }
.form-grid { display: grid; gap: 0; }
@media (min-width: 620px) { .form-grid { grid-template-columns: 1fr 1fr; gap: 0 16px; } }
.form-card button.submit {
  width: 100%; margin-top: 22px; background: var(--amber); color: #1a1405;
  font-weight: 700; font-size: 1.05rem; padding: 15px; border: none; border-radius: 10px; cursor: pointer; transition: .15s;
}
.form-card button.submit:hover { background: var(--amber-dark); }
.form-card button.submit:disabled { opacity: .6; cursor: wait; }
.form-msg { margin-top: 14px; font-size: .92rem; display: none; }
.form-msg.ok { display: block; color: var(--emerald); }
.form-msg.err { display: block; color: var(--red); }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--border-soft); padding: 34px 0 46px; color: var(--text-faint); font-size: .78rem; text-align: center; margin-top: 30px; }
footer a { color: var(--silver); }
footer .fl { margin-top: 6px; }

/* Launch badge (pill em modo pré-lançamento) */
.pill.launch { color: var(--amber); border-color: rgba(240,180,41,.35); background: rgba(240,180,41,.08); font-weight: 600; }
.pill.launch .dot { background: var(--amber); animation: pulse-amber 2.2s infinite; }
@keyframes pulse-amber { 0% { box-shadow: 0 0 0 0 rgba(240,180,41,.5);} 70% { box-shadow: 0 0 0 8px rgba(240,180,41,0);} 100% { box-shadow: 0 0 0 0 rgba(240,180,41,0);} }

/* Selo "disponível no lançamento" (CTA não-clicável) */
.plan-cta.soon {
  background: var(--bg-input); color: var(--text-dim); border: 1px dashed var(--border);
  cursor: default; font-weight: 600;
}

/* Seção Criadores / Afiliados */
.cr-card { display: grid; gap: 22px; padding: 26px; border-radius: var(--radius-lg); align-items: center; margin-top: 30px; }
@media (min-width: 720px) { .cr-card { grid-template-columns: auto 1fr; gap: 34px; } }
.cr-num { text-align: center; padding: 8px 20px; border-right: none; }
@media (min-width: 720px) { .cr-num { border-right: 1px solid var(--border-soft); padding-right: 34px; } }
.cr-big { display: block; font-family: var(--font-mono); font-size: 3rem; font-weight: 600; letter-spacing: -.01em; background: linear-gradient(120deg, var(--amber), var(--emerald)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cr-sub { display: block; color: var(--text-dim); font-size: .84rem; margin-top: 2px; }
.cr-list { list-style: none; display: grid; gap: 11px; margin-bottom: 18px; }
.cr-list li { display: flex; gap: 10px; font-size: .94rem; color: var(--text-dim); }
.cr-list li .ck { color: var(--emerald); flex-shrink: 0; }
.cr-cta { display: inline-block; padding: 10px 18px; border-radius: 999px; font-size: .85rem; }

/* Link de report + modal */
.report-line a { color: var(--text-dim); text-decoration: underline; text-underline-offset: 3px; }
.report-line a:hover { color: var(--amber); }
.modal-overlay {
  position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px;
  background: rgba(5,7,11,.72); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.modal-overlay[hidden] { display: none; }
.modal-box { position: relative; width: 100%; max-width: 440px; padding: 26px 24px; border-radius: var(--radius-lg); }
.modal-box h3 { font-size: 1.2rem; margin-bottom: 6px; padding-right: 24px; }
.modal-box label { display: block; font-size: .82rem; color: var(--text-dim); margin: 14px 0 5px; }
.modal-box input, .modal-box textarea {
  width: 100%; background: var(--bg-input); border: 1px solid var(--border);
  color: var(--text); border-radius: 10px; padding: 11px 13px; font-size: .95rem; font-family: inherit; resize: vertical;
}
.modal-box input:focus, .modal-box textarea:focus { outline: 2px solid var(--amber); border-color: transparent; }
.modal-box input[readonly] { color: var(--text-dim); cursor: default; }
.modal-close { position: absolute; top: 12px; right: 14px; background: none; border: none; color: var(--text-dim); font-size: 1.5rem; line-height: 1; cursor: pointer; }
.modal-close:hover { color: var(--text); }
.modal-actions { display: flex; gap: 10px; margin-top: 20px; }
.btn-ghost, .btn-amber { flex: 1; padding: 12px; border-radius: 10px; font-weight: 700; font-size: .95rem; cursor: pointer; border: none; }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--text-dim); }
.btn-amber { background: var(--amber); color: #1a1405; }
.btn-amber:hover { background: var(--amber-dark); }
.btn-amber:disabled { opacity: .6; cursor: wait; }

/* ---------- Páginas legais (privacy.html / terms.html) ---------- */
.legal { padding: 48px 0 30px; }
.legal h1 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 600; letter-spacing: -.01em; }
.legal .updated { color: var(--text-faint); font-size: .85rem; margin-top: 8px; }
.legal .lang-toggle { margin-top: 18px; }
.legal-body { margin-top: 30px; display: grid; gap: 26px; }
.legal-body section h2 { font-size: 1.15rem; font-weight: 750; margin-bottom: 10px; }
.legal-body section p, .legal-body section li { color: var(--text-dim); font-size: .95rem; }
.legal-body section ul { padding-left: 22px; margin-top: 8px; display: grid; gap: 6px; }
.legal-body section a { color: var(--amber); text-decoration: underline; text-underline-offset: 2px; }
.legal-note { background: rgba(240,180,41,.06); border: 1px solid rgba(240,180,41,.2); border-radius: var(--radius); padding: 14px 16px; font-size: .85rem; color: var(--text-dim); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
