/* revr.be — landing v4 "A película" (linguagem izanami: serif, calma, névoa viva) */

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/cormorant-garamond-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/cormorant-garamond-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/space-grotesk-latin-700-normal.woff2") format("woff2");
}

:root {
  --bg: #06090f;
  --ink: #e9edf4;
  --ink-dim: #9aa7ba;
  --accent: #9fc3d8;
  --c-cyan: #22d3ee;
  --c-blue: #7dabf8;
  --c-teal: #4fd1c5;
  --c-indigo: #9d8cf5;
  --c-amber: #f5b860;
  --c-rose: #f2828f;
  --c-violet: #c9a6f0;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, "Cascadia Mono", Menlo, Consolas, monospace;
  --font-brand: "Space Grotesk", var(--font-body);
  --ease-slow: cubic-bezier(0.19, 1, 0.22, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.serif { font-family: var(--font-serif); font-weight: 600; letter-spacing: 0.005em; }

/* ---------- intro (frase digitada) ---------- */
#intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #04070d;
  display: flex;
  align-items: center;
  padding: 0 clamp(24px, 12vw, 200px);
  opacity: 1;
  transition: opacity 1.4s var(--ease-slow);
}
body.intro-done #intro { opacity: 0; pointer-events: none; }
.intro-line {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(22px, 3.2vw, 38px);
  color: #cfd8e6;
  letter-spacing: 0.01em;
}
.caret {
  display: inline-block;
  width: 1px;
  height: 1em;
  background: #9fc3d8;
  margin-left: 4px;
  vertical-align: -0.12em;
  animation: blink 1.1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.intro-count {
  position: absolute;
  left: clamp(24px, 4vw, 56px);
  bottom: 28px;
  font-size: 12px;
}
/* a marca já presente na intro, na MESMA posição do header —
   quando a intro se desfaz, o logo "fica" parado no lugar */
.intro-brand {
  position: absolute;
  top: 26px;
  left: clamp(22px, 4vw, 56px);
}
/* o conteúdo espera a intro terminar */
.hero-content, .hero-foot { opacity: 0; transition: opacity 1.8s var(--ease-slow) 0.5s; }
body.intro-done .hero-content, body.intro-done .hero-foot { opacity: 1; }

/* ---------- fundo: a película ---------- */
#scene { position: fixed; inset: 0; z-index: 0; }
#scene canvas { display: block; width: 100%; height: 100%; }
body.no-webgl #scene {
  background: var(--bg) url("/assets/braies.jpg") center/cover no-repeat;
}
.scrim {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: #04070d;
  opacity: 0;
  pointer-events: none;
}

/* ---------- header ---------- */
.top {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(22px, 4vw, 56px);
  transition: background 0.6s var(--ease-slow);
}
.top.scrolled {
  background: linear-gradient(180deg, rgba(4, 7, 13, 0.75), transparent);
}
.brand {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
}
.brand .dot { color: var(--accent); }
.btn-entrar {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 10px 22px;
  border: 1px solid rgba(233, 237, 244, 0.35);
  border-radius: 999px;
  transition: border-color 0.4s, color 0.4s, background 0.4s;
}
.btn-entrar:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- conteúdo ---------- */
main { position: relative; z-index: 10; }

/* hero contemplativo */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 0 clamp(22px, 7vw, 110px);
  position: relative;
}
.hero-phrase {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(30px, 4.6vw, 54px);
  color: var(--ink);
  text-shadow: 0 2px 40px rgba(4, 7, 13, 0.7);
  max-width: 560px;
  line-height: 1.25;
}
.hero-foot {
  position: absolute;
  left: 0; right: 0; bottom: 30px;
  display: flex;
  justify-content: space-between;
  padding: 0 clamp(22px, 4vw, 56px);
  gap: 18px;
  flex-wrap: wrap;
}

/* capítulos (seções cerimoniais) */
.chapter {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(36px, 6vw, 90px);
  padding: clamp(90px, 14vh, 160px) clamp(26px, 7vw, 110px);
  flex-wrap: wrap;
}
.vlabel {
  position: absolute;
  left: clamp(10px, 2.4vw, 34px);
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  letter-spacing: 0.34em;
  opacity: 0.55;
}
.ch-body { max-width: 520px; }
.ch-num { display: block; margin-bottom: 18px; color: var(--accent); }
.chapter h1, .chapter h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.15;
  color: var(--ink);
}
.lead { color: var(--ink-dim); margin-top: 20px; max-width: 480px; }

.btn-serif {
  display: inline-flex;
  align-items: center;
  margin-top: 34px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 15px 28px;
  border: 1px solid rgba(159, 195, 216, 0.5);
  border-radius: 999px;
  color: var(--ink);
  transition: background 0.5s var(--ease-slow), color 0.5s, border-color 0.5s;
}
.btn-serif:hover { background: var(--accent); color: #06121c; border-color: var(--accent); }

/* painéis de foto (nossos frames do lago) */
.photo-panel {
  width: min(480px, 88vw);
  overflow: hidden;
  border-radius: 4px;
}
.photo-panel img {
  display: block;
  width: 100%;
  transform: scale(1.08);
  transition: transform 2.4s var(--ease-slow);
}
.photo-panel.on img { transform: scale(1.0); }

.split.rev { flex-direction: row-reverse; }

/* passos e recursos (respiro grande, tipografia calma) */
.steps-compact {
  list-style: none;
  counter-reset: st;
  margin-top: 30px;
  display: grid;
  gap: 20px;
}
.steps-compact li { counter-increment: st; position: relative; padding-left: 54px; }
.steps-compact li::before {
  content: "0" counter(st);
  position: absolute;
  left: 0; top: 3px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.steps-compact b { display: block; font-family: var(--font-serif); font-weight: 600; font-size: 21px; }
.steps-compact span { color: var(--ink-dim); font-size: 15px; }

.feature-list { list-style: none; margin-top: 30px; display: grid; gap: 18px; }
.feature-list li { border-left: 1px solid rgba(159, 195, 216, 0.4); padding-left: 18px; }
.feature-list b { display: block; font-family: var(--font-serif); font-weight: 600; font-size: 20px; }
.feature-list span { color: var(--ink-dim); font-size: 15px; }

/* hub (em breve) */
.glass {
  background: rgba(10, 16, 28, 0.5);
  border: 1px solid rgba(159, 195, 216, 0.18);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 22px;
}
.card-hub { width: 180px; }
.card-hub .phone {
  border: 1px solid rgba(159, 195, 216, 0.22);
  border-radius: 14px;
  padding: 16px 12px 14px;
  background: rgba(4, 7, 13, 0.45);
}
.card-hub .avatar {
  width: 34px; height: 34px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #cfe4f0, #9fc3d8 55%, #4a6b7e);
}
.card-hub .link-row {
  height: 30px;
  border-radius: 8px;
  border: 1px solid rgba(154, 167, 186, 0.25);
  background: rgba(10, 16, 28, 0.5);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
}
.card-hub .link-row i { width: 12px; height: 12px; border-radius: 3px; background: rgba(159, 195, 216, 0.5); flex: none; }
.card-hub .link-row i.round { border-radius: 50%; }
.card-hub .link-row b { height: 5px; border-radius: 3px; background: rgba(154, 167, 186, 0.35); flex: 1; }

.badge {
  display: inline-block;
  margin-top: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(159, 195, 216, 0.5);
  border-radius: 999px;
  color: var(--accent);
}

/* finale + rodapé */
.finale { flex-direction: column; text-align: center; min-height: 80vh; gap: 40px; }
.finale footer {
  position: absolute;
  bottom: 26px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(22px, 4vw, 56px);
}

/* revelação cerimonial */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1.4s var(--ease-slow), transform 1.4s var(--ease-slow);
}
.reveal.on { opacity: 1; transform: none; }

/* ================= componentes do site completo ================= */

/* hero novo */
.hero-content { max-width: 560px; }
.hero-content h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-shadow: 0 2px 30px rgba(4, 7, 13, 0.7);
}
.hero-content .sub {
  margin-top: 20px;
  max-width: 460px;
  color: var(--ink);
  opacity: 0.88;
  font-size: clamp(15px, 1.6vw, 16.5px);
  line-height: 1.65;
  text-shadow: 0 1px 20px rgba(4, 7, 13, 0.9);
}
.hero-content .support {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(159, 195, 216, 0.22);
  color: var(--accent);
  max-width: 460px;
}
.cta-row { margin-top: 28px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.cta-row.left { justify-content: flex-start; }
.finale .cta-row { justify-content: center; }
.cta-row .btn-serif { margin-top: 0; }

.btn-solid, .btn-serif {
  line-height: 1;
  box-sizing: border-box;
}
.btn-solid {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 999px;
  color: #06121c;
  background: linear-gradient(135deg, #cfe4f0, var(--accent));
  box-shadow: 0 8px 34px rgba(159, 195, 216, 0.22);
  transition: transform 0.4s var(--ease-slow), box-shadow 0.4s;
}
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 12px 44px rgba(159, 195, 216, 0.4); }

/* faixa de prova */
.strip {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3.5vw, 44px);
  padding: 26px clamp(22px, 5vw, 60px);
  border-top: 1px solid rgba(159, 195, 216, 0.12);
  border-bottom: 1px solid rgba(159, 195, 216, 0.12);
  background: rgba(4, 7, 13, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex-wrap: wrap;
  text-align: center;
}
.strip .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); opacity: 0.6; }

/* capítulos de largura cheia */
.ch-full { width: min(1080px, 100%); }
.ch-full.narrow { width: min(720px, 100%); }
.ch-head { max-width: 620px; margin-bottom: clamp(36px, 6vh, 64px); }

/* pilares */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.pillar { display: block; padding: 34px 32px; transition: border-color 0.5s, transform 0.5s var(--ease-slow); }
.pillar:hover { border-color: rgba(159, 195, 216, 0.45); transform: translateY(-4px); }
.pillar .p-tag { color: var(--accent); letter-spacing: 0.24em; }
.pillar h3 { font-size: 27px; margin-top: 12px; color: var(--ink); }
.pillar p { color: var(--ink-dim); margin-top: 10px; font-size: 15.5px; }
.pillar .p-go { display: inline-block; margin-top: 18px; color: var(--accent); }
.fio { font-family: var(--font-serif); font-size: 20px; color: var(--accent); }

/* grade de features do encurtador */
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.feat { padding: 28px 28px; }
.feat.wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; align-items: center; position: relative; }
.feat.wide > h3, .feat.wide > p { grid-column: 1; }
.feat.wide .report-mock { grid-column: 2; grid-row: 1 / span 2; }
.feat h3 { font-family: var(--font-body); font-weight: 600; font-size: 17.5px; letter-spacing: 0.01em; color: var(--ink); }
.feat p { color: var(--ink-dim); font-size: 15px; margin-top: 10px; }
.selo {
  position: absolute;
  top: -11px;
  left: 28px;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #06121c;
  letter-spacing: 0.18em;
  font-size: 10.5px;
}

/* mock do relatório (quem clicou, nome a nome) */
.report-mock {
  border: 1px solid rgba(159, 195, 216, 0.22);
  border-radius: 12px;
  background: rgba(4, 7, 13, 0.5);
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.rm-row { display: grid; grid-template-columns: 1.4fr 1fr 0.5fr; padding: 8px 4px; color: var(--ink); border-top: 1px solid rgba(159, 195, 216, 0.08); }
.rm-row:first-child { border-top: 0; }
.rm-head { color: var(--ink-dim); text-transform: uppercase; font-size: 10px; letter-spacing: 0.16em; }
.rm-row b { color: var(--accent); font-weight: 400; }
.rm-row.dim { opacity: 0.35; }

/* fecho do encurtador */
.fecho {
  margin-top: clamp(36px, 6vh, 60px);
  padding: 34px 36px;
  border-left: 2px solid var(--accent);
  background: linear-gradient(90deg, rgba(159, 195, 216, 0.07), transparent);
}
.fecho p { font-size: clamp(19px, 2.4vw, 24px); line-height: 1.4; color: var(--ink); max-width: 640px; }
.fecho .btn-serif { margin-top: 24px; }

/* landing-in-bio: demo no celular + lista */
.phone-demo { text-align: center; }
.phone-frame {
  width: min(280px, 70vw);
  border: 1px solid rgba(159, 195, 216, 0.3);
  border-radius: 30px;
  padding: 10px;
  background: rgba(4, 7, 13, 0.55);
  box-shadow: 0 30px 80px rgba(2, 5, 12, 0.6), 0 0 60px rgba(159, 195, 216, 0.08);
  margin: 0 auto;
}
.phone-frame img { display: block; width: 100%; border-radius: 22px; }
.phone-demo figcaption { margin-top: 16px; color: var(--accent); }
.lb-list { list-style: none; margin-top: 30px; display: grid; gap: 24px; }
.lb-list b { display: block; font-size: 21px; font-weight: 600; color: var(--ink); }
.lb-list span { display: block; color: var(--ink-dim); font-size: 15.5px; margin-top: 6px; }

/* comparativo */
.tbl-wrap { overflow-x: auto; }
.cmp { width: 100%; border-collapse: collapse; min-width: 640px; }
.cmp th, .cmp td { text-align: left; padding: 15px 18px; font-size: 14.5px; }
.cmp thead th { color: var(--ink-dim); font-size: 10.5px; border-bottom: 1px solid rgba(159, 195, 216, 0.25); }
.cmp tbody td { border-bottom: 1px solid rgba(159, 195, 216, 0.09); color: var(--ink-dim); }
.cmp tbody td:first-child { color: var(--ink); }
.cmp .hl { color: var(--accent); }
.cmp tbody td.hl { background: rgba(159, 195, 216, 0.05); }

/* três passos */
.steps-line { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.steps-line li { border-top: 1px solid rgba(159, 195, 216, 0.25); padding-top: 18px; }
.steps-line .mono { color: var(--accent); }
.steps-line b { display: block; font-size: 24px; color: var(--ink); margin-top: 8px; }
.steps-line p { color: var(--ink-dim); font-size: 15px; margin-top: 6px; }
.steps-line.compact { margin: 26px 0 6px; }
.steps-line.compact b { display: none; }
.steps-line.compact p { color: var(--ink); }

/* públicos */
.aud-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.aud { border-left: 1px solid rgba(159, 195, 216, 0.35); padding-left: 20px; }
.aud b { display: block; font-size: 21px; color: var(--ink); }
.aud p { color: var(--ink-dim); font-size: 15px; margin-top: 6px; }

/* acesso + lista de espera (subordinada de propósito) */
.waitlist {
  margin-top: 44px;
  padding: 22px 24px;
  border: 1px dashed rgba(154, 167, 186, 0.3);
  border-radius: 12px;
  max-width: 460px;
}
.waitlist b { color: var(--ink-dim); letter-spacing: 0.18em; }
.waitlist p { color: var(--ink-dim); font-size: 14px; margin-top: 8px; }
.wl-form { display: flex; gap: 10px; margin-top: 14px; }
.wl-form input {
  flex: 1;
  background: rgba(4, 7, 13, 0.5);
  border: 1px solid rgba(154, 167, 186, 0.3);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--ink);
  font-size: 14px;
}
.wl-form input:focus { outline: none; border-color: var(--accent); }
.wl-form button {
  background: none;
  border: 1px solid rgba(154, 167, 186, 0.4);
  border-radius: 8px;
  padding: 10px 16px;
  color: var(--ink-dim);
  cursor: pointer;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.wl-form button:hover { border-color: var(--accent); color: var(--accent); }
.wl-link { opacity: 0.75; display: inline-block; margin-top: 18px; }
.wl-link:hover { opacity: 1; color: var(--accent); }
.lead.center { margin-left: auto; margin-right: auto; }

/* FAQ */
.faq-list { display: grid; gap: 4px; }
.faq-list details { border-bottom: 1px solid rgba(159, 195, 216, 0.12); padding: 4px 0 14px; }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 16.5px;
  color: var(--ink);
  padding: 12px 30px 4px 0;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  color: var(--accent);
  font-family: var(--font-mono);
  transition: transform 0.3s;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { color: var(--ink-dim); font-size: 15px; margin-top: 8px; max-width: 620px; }
.faq-list details a { color: var(--accent); }

/* ================= cor e vida por seção ================= */

/* classe de acento: aplicada no card/item, alimenta ícone + brilho por herança de variável */
.acc-cyan   { --c: var(--c-cyan);   --glow: 34,211,238; }
.acc-blue   { --c: var(--c-blue);   --glow: 125,171,248; }
.acc-teal   { --c: var(--c-teal);   --glow: 79,209,197; }
.acc-indigo { --c: var(--c-indigo); --glow: 157,140,245; }
.acc-amber  { --c: var(--c-amber);  --glow: 245,184,96; }
.acc-rose   { --c: var(--c-rose);   --glow: 242,130,143; }
.acc-violet { --c: var(--c-violet); --glow: 201,166,240; }

/* brilho de canto sutil — dá profundidade sem virar poluição visual */
.pillar, .feat { position: relative; }
.pillar::before, .feat::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 190px; height: 150px;
  background: radial-gradient(circle at 0% 0%, rgba(var(--glow, 159,195,216), 0.16), transparent 72%);
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
}

/* selo do ícone: círculo colorido com o traço fino */
.ico-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: color-mix(in srgb, var(--c, var(--accent)) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--c, var(--accent)) 42%, transparent);
  margin-bottom: 16px;
}
.ico-badge svg {
  width: 22px; height: 22px;
  stroke: var(--c, var(--accent));
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feat.wide .ico-badge, .feat.wide > h3, .feat.wide > p { grid-column: 1; }

/* pilares: acento no topo do card */
.pillar { border-top: 2px solid color-mix(in srgb, var(--c, var(--accent)) 55%, transparent); }
.pillar .ico-badge svg { width: 24px; height: 24px; }

/* selo "o diferencial" — mais vívido */
.selo { background: var(--c-cyan); color: #04121c; }

/* pulso ao vivo no relatório de cliques */
.rm-live {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-cyan);
  margin-right: 7px;
  vertical-align: 1px;
  animation: rmpulse 1.7s ease-in-out infinite;
}
@keyframes rmpulse {
  0%, 100% { opacity: 0.4; transform: scale(0.75); box-shadow: 0 0 0 0 rgba(34,211,238,0); }
  50% { opacity: 1; transform: scale(1); box-shadow: 0 0 6px 1px rgba(34,211,238,0.5); }
}

/* fecho: acento cyan */
.fecho { border-left-color: var(--c-cyan); }

/* landing-in-bio: numeração em círculos violeta */
.lb-list li { position: relative; padding-left: 46px; }
.lb-num {
  position: absolute;
  left: 0; top: 1px;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201, 166, 240, 0.14);
  border: 1px solid rgba(201, 166, 240, 0.4);
  color: var(--c-violet);
  font-size: 11px;
}

/* comparativo: check/x + spinha cyan na coluna revr.be */
.chk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  font-size: 10.5px;
  margin-right: 7px;
  vertical-align: -2px;
}
.chk.yes { background: rgba(34, 211, 238, 0.18); color: var(--c-cyan); }
.chk.no { background: rgba(154, 167, 186, 0.12); color: #64738a; }
.cmp .hl { color: var(--c-cyan); }
.cmp thead th.hl, .cmp tbody td.hl {
  border-left: 2px solid rgba(34, 211, 238, 0.5);
  padding-left: 16px;
  background: rgba(34, 211, 238, 0.05);
}

/* como funciona: timeline conectada com nós coloridos */
.steps-line.timeline { position: relative; padding-top: 8px; }
.steps-line.timeline::before {
  content: "";
  position: absolute;
  top: 34px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: linear-gradient(90deg, var(--c-cyan), var(--c-violet), var(--c-teal));
  opacity: 0.35;
  z-index: 0;
}
.timeline li { position: relative; z-index: 1; border-top: none; padding-top: 0; }
.tnode {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--c) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--c) 45%, transparent);
  margin-bottom: 16px;
}
.tnode svg { width: 24px; height: 24px; stroke: var(--c); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.timeline .tnum { color: var(--c); display: block; margin-bottom: 2px; }

/* para quem: ícones coloridos por público */
.aud { display: flex; gap: 16px; align-items: flex-start; border-left: none; padding-left: 0; }
.aud .ico-badge { flex: none; margin-bottom: 0; }
.aud .aud-txt b { display: block; font-size: 21px; color: var(--ink); }
.aud .aud-txt p { color: var(--ink-dim); font-size: 15px; margin-top: 6px; }

/* faixa de prova: pontos coloridos */
.strip .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: 1px;
}

/* FAQ: destaque cyan ao abrir */
.faq-list details[open] summary { color: var(--c-cyan); }
.faq-list details[open] summary::after { color: var(--c-cyan); }

/* responsivo */
@media (max-width: 900px) {
  .vlabel { display: none; }
  .split, .split.rev { flex-direction: column; }
  .hero-foot .mono:nth-child(3) { display: none; }
  .pillars, .feat-grid, .aud-grid { grid-template-columns: 1fr; }
  .feat.wide { grid-template-columns: 1fr; }
  .feat.wide .report-mock { grid-column: 1; grid-row: auto; margin-top: 18px; }
  .steps-line { grid-template-columns: 1fr; gap: 18px; }
}

