/* MedEscola — production landing page
 * Pure CSS, no framework. Mobile-first, scales to desktop.
 */
:root {
  --ink: #1a2b29;
  --ink-2: #3d4f4c;
  --ink-3: #7a8c89;
  --line: #d8dfdd;
  --line-2: #e7ecea;
  --bg: #ffffff;
  --bg-2: #fafbf9;
  --bg-3: #f1f4f1;

  /* Brand palette — derived from logo */
  --teal: #6dbab6;          /* heart light */
  --teal-soft: #b6dfdd;     /* heart highlight */
  --teal-deep: #1d8c85;     /* primary action */
  --teal-darker: #146b66;   /* hover */
  --teal-shadow: #0e3530;   /* dark sections */

  --amber: #f0b94b;         /* book */
  --amber-soft: #fbe1a3;    /* book highlight */
  --amber-deep: #b07a14;

  --leaf: #9ec98c;          /* hand green */
  --leaf-soft: #d3e8c4;

  --coral: #e85c5c;         /* warning / urgent — softer than Apple red */
  --green: #6ab048;         /* success */

  /* Semantic aliases (kept so existing CSS keeps working) */
  --blue: var(--teal-deep);
  --blue-dark: var(--teal-darker);
  --blue-light: var(--teal);
  --red: var(--coral);
  --teal-dark: var(--teal-shadow);
  --warm: var(--amber-soft);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-feature-settings: 'kern', 'liga';
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
  color: var(--ink);
  background: var(--bg);
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

/* Editorial serif for big headlines — adds warmth to balance Inter */
.hero h1,
.tile h2,
.spotlight h2,
.compare h2,
.roles h2,
.pricing h2,
.closing h2,
.modal h3 {
  font-family: 'Fraunces', 'Inter', Georgia, serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 50, 'WONK' 0;
  font-weight: 500;
  letter-spacing: -0.025em;
}

/* Skip link for keyboard nav */
.skip-link {
  position: absolute; top: -40px; left: 12px;
  background: var(--ink); color: #fff;
  padding: 8px 14px; border-radius: 6px;
  text-decoration: none; font-size: 14px; z-index: 200;
}
.skip-link:focus { top: 12px; }

/* Focus rings */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--teal-deep);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ─── Top nav ─────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(251, 251, 253, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  height: 48px;
  display: flex; align-items: center; justify-content: center;
}
.nav-inner {
  width: 100%; max-width: 1100px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 22px;
  font-size: 13px;
}
.nav-brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 18px; letter-spacing: -0.018em;
  text-decoration: none; color: var(--ink);
}
.nav-brand img {
  height: 28px; width: 28px; border-radius: 6px; object-fit: cover; object-position: center;
  display: block;
}
.nav-brand span { color: var(--teal-deep); }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: var(--ink); text-decoration: none; opacity: 0.85;
  letter-spacing: -0.005em;
}
.nav-links a:hover { opacity: 1; color: var(--blue); }
.nav-right { display: flex; gap: 14px; align-items: center; }
.nav-right a { color: var(--ink); text-decoration: none; }
.nav-login {
  padding: 6px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px; font-weight: 500;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
  background: rgba(255,255,255,0.6);
}
.nav-login:hover {
  border-color: var(--teal-deep);
  color: var(--teal-deep);
  background: #fff;
}
.nav-login::after { content: '›'; opacity: 0.7; }
.nav-right .nav-cta {
  color: var(--blue); text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-right .nav-cta::after { content: '›'; }
.nav-burger { display: none; background: none; border: 0; padding: 0; color: var(--ink); }

/* ─── Layout primitives ───────────────────────────────────────────────── */
.section { padding: 80px 22px; }
.section-narrow { max-width: 980px; margin: 0 auto; }
.section-wide { max-width: 1100px; margin: 0 auto; }

.link-blue {
  color: var(--blue-dark); text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px;
  letter-spacing: -0.01em;
}
.link-blue::after { content: '›'; transform: translateY(-1px); font-weight: 400; }
.link-blue:hover { text-decoration: underline; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue); color: #fff;
  border-radius: 980px;
  padding: 10px 18px;
  font-size: 14px; font-weight: 500;
  text-decoration: none; border: none;
  letter-spacing: -0.005em;
  transition: background 0.15s;
}
.btn:hover { background: var(--teal-darker); }
.btn-lg { font-size: 17px; padding: 13px 24px; }
.btn-dark { background: var(--teal-shadow); }
.btn-dark:hover { background: #061f1c; }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--bg-3); }

.kicker {
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 10px;
}

/* ─── Hero ────────────────────────────────────────────────────────────── */
.hero {
  padding: 80px 22px 24px;
  text-align: center;
  background: var(--bg);
}
.hero .eyebrow {
  font-size: 21px; font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.hero h1 {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
}
.hero .sub {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.015em;
  max-width: 760px;
  margin: 0 auto 24px;
  color: var(--ink);
}
.hero .hero-links {
  display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
  font-size: 19px;
  margin-bottom: 20px;
}
.hero-shot {
  margin: 32px auto 0;
  max-width: 1100px;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  background:
    radial-gradient(60% 50% at 85% 90%, rgba(240,185,75,0.18) 0%, transparent 60%),
    radial-gradient(60% 50% at 15% 90%, rgba(109,186,182,0.32) 0%, transparent 60%),
    radial-gradient(80% 60% at 50% 0%, #f6f5f7 0%, #ebeae8 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.shot-frame {
  width: 92%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.18), 0 8px 24px -8px rgba(0,0,0,0.12);
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 60%;
  overflow: hidden;
}
.shot-sidebar {
  background: var(--teal-shadow); color: var(--teal-soft); padding: 18px 14px;
  font-size: 13px;
}
.shot-sidebar .side-brand { font-weight: 600; font-size: 15px; margin-bottom: 16px; }
.shot-sidebar .side-section { color: var(--ink-3); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; margin: 14px 0 6px; }
.shot-sidebar .side-link { padding: 4px 0; color: #d2d2d7; }
.shot-sidebar .side-link.on { color: #fff; font-weight: 500; }
.shot-sidebar .side-link.urgent { color: var(--red); }
.shot-main { padding: 18px; }
.shot-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 12px;
}
.shot-mini {
  background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 10px;
  padding: 10px 12px;
}
.shot-mini .lbl { font-size: 10px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.04em; }
.shot-mini .val { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-top: 2px; }
.shot-mini .trend { font-size: 11px; color: var(--green); margin-top: 2px; }
.shot-mini.alert { background: #fff5f5; border-color: #ffd1d1; }
.shot-mini.alert .val { color: var(--red); }
.shot-chart {
  height: 140px;
  background:
    linear-gradient(180deg, rgba(0,113,227,0.18), rgba(0,113,227,0) 70%),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(0,0,0,0.04) 24px 25px);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.shot-chart svg { width: 100%; height: 100%; display: block; }

/* ─── Tile grid ───────────────────────────────────────────────────────── */
.tiles {
  padding: 24px 11px;
  background: var(--bg);
}
.tile-row {
  display: grid; gap: 12px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 12px;
}
.tile-row.three { grid-template-columns: repeat(3, 1fr); }

.tile {
  border-radius: 18px;
  min-height: 580px;
  padding: 56px 40px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.tile.short { min-height: 460px; padding: 44px 32px; }
.tile.light { background: var(--bg-2); color: var(--ink); }
.tile.dark  { background: var(--teal-shadow); color: var(--teal-soft); }
.tile.gray  { background: #ebebed; color: var(--ink); }
.tile.warm  { background: var(--warm); color: var(--ink); }
.tile.teal  { background: linear-gradient(160deg, var(--teal-shadow) 0%, #155a52 100%); color: var(--teal-soft); }

.tile-eyebrow {
  font-size: 14px; font-weight: 600;
  opacity: 0.88; margin-bottom: 8px;
}
.tile h2 {
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin: 0 0 12px;
  max-width: 18ch;
}
.tile.short h2 { font-size: clamp(24px, 2.6vw, 36px); }
.tile-sub {
  font-size: 17px; line-height: 1.4;
  max-width: 38ch;
  opacity: 0.92;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.tile-actions {
  margin-top: 18px;
  display: flex; gap: 18px; flex-wrap: wrap;
}
.tile.dark .link-blue, .tile.teal .link-blue { color: var(--blue-light); }

.tile-art {
  flex: 1;
  margin-top: 28px;
  display: flex; align-items: flex-end; justify-content: center;
}

.art-radar {
  width: 80%; max-width: 480px;
  aspect-ratio: 4 / 3;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 16px;
}
.art-pill {
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffe7b3 0%, #f5b942 60%, #c98a13 100%);
  box-shadow: 0 30px 60px -20px rgba(201,138,19,0.45);
}
.art-sos {
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffe0e0 0%, var(--coral) 55%, #b03a3a 100%);
  box-shadow: 0 30px 60px -20px rgba(176,58,58,0.4);
  display: flex; align-items: center; justify-content: center;
}
.art-attendance {
  background: #fff; border-radius: 14px; padding: 16px; width: 85%;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.12);
}
.art-attendance .row {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
}
.art-attendance .row:not(:last-child) { border-bottom: 1px solid #f0f0f2; }
.art-attendance .row.ok { color: var(--ink); }
.art-attendance .row.ok::after { content: '✓'; color: var(--green); font-weight: 700; }
.art-attendance .row.no::after { content: '✕'; color: var(--red); font-weight: 700; }
.art-qr {
  background: #fff; border-radius: 10px; padding: 12px;
}

/* Stacked notification cards for "Mural & Agenda" tile */
.art-mural {
  display: flex; flex-direction: column; gap: 6px;
  width: 80%; max-width: 280px;
  position: relative;
}
.art-mural .mural-card {
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  box-shadow: 0 12px 24px -10px rgba(0,0,0,0.14), 0 2px 6px -2px rgba(0,0,0,0.06);
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 12px;
  border: 1px solid var(--line-2);
}
.art-mural .mural-card:nth-child(1) { transform: rotate(-1.5deg); }
.art-mural .mural-card:nth-child(2) { transform: rotate(0.5deg); margin-top: -2px; }
.art-mural .mural-card:nth-child(3) { transform: rotate(-0.5deg); margin-top: -2px; }
.art-mural .mural-card .badge {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--teal-soft); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-darker); font-weight: 700; font-size: 11px;
}
.art-mural .mural-card .badge.amber { background: var(--amber-soft); color: var(--amber-deep); }
.art-mural .mural-card .badge.leaf { background: var(--leaf-soft); color: #4d6b3d; }
.art-mural .mural-card strong { font-size: 12.5px; font-weight: 600; color: var(--ink); display: block; margin-bottom: 1px; }
.art-mural .mural-card span { color: var(--ink-3); font-size: 11.5px; line-height: 1.3; }

/* Stacked enrollment/payment cards for "Matrículas & Cobranças" tile */
.art-matr {
  display: flex; flex-direction: column; gap: 8px;
  width: 85%; max-width: 280px;
}
.art-matr .mc {
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  box-shadow: 0 10px 24px -12px rgba(0,0,0,0.16);
  font-size: 12px;
}
.art-matr .mc-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 6px;
}
.art-matr .mc-top .label { font-size: 10px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.05em; }
.art-matr .mc-top .status { font-size: 10.5px; padding: 1px 7px; border-radius: 999px; }
.art-matr .mc-top .status.ok { background: rgba(106,176,72,0.18); color: #436b29; }
.art-matr .mc-top .status.pix { background: rgba(29,140,133,0.14); color: var(--teal-darker); }
.art-matr .mc h5 { margin: 0; font-size: 13px; font-weight: 600; color: var(--ink); }
.art-matr .mc-line { display: flex; justify-content: space-between; margin-top: 6px; color: var(--ink-2); font-size: 11.5px; }
.art-matr .mc-line strong { color: var(--ink); font-weight: 600; }
.art-matr .mc-line .pix-icon {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--teal-darker); font-weight: 600;
}

/* Enhanced QR card with student name underneath */
.art-qr-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.art-qr-name {
  background: #fff;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 11.5px;
  color: var(--ink);
  box-shadow: 0 10px 20px -10px rgba(0,0,0,0.2);
  display: flex; gap: 8px; align-items: center;
}
.art-qr-name strong { font-weight: 600; }
.art-qr-name .turma { color: var(--ink-3); font-size: 10.5px; }
.art-qr-name .ok {
  margin-left: 6px; padding: 1px 6px; border-radius: 999px;
  background: rgba(106,176,72,0.22); color: #436b29;
  font-size: 10px; font-weight: 600;
}

/* ─── Spotlight ───────────────────────────────────────────────────────── */
.spotlight {
  background: radial-gradient(120% 80% at 50% 0%, #155a52 0%, var(--teal-shadow) 60%, #061f1c 100%);
  color: var(--teal-soft);
  padding: 110px 22px 100px;
  text-align: center;
}
.spotlight .kicker { color: var(--teal); }
.spotlight h2 {
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin: 14px 0 24px;
}
.spotlight .sub {
  font-size: clamp(20px, 2.2vw, 26px);
  max-width: 800px;
  margin: 0 auto 32px;
  line-height: 1.3;
  letter-spacing: -0.012em;
  color: #f5f5f7;
}
.spotlight .hero-links { display: flex; justify-content: center; gap: 28px; font-size: 19px; }
.spotlight .link-blue { color: var(--blue-light); }

/* ─── Compare ─────────────────────────────────────────────────────────── */
.compare { padding: 90px 22px; background: var(--bg); }
.compare h2 {
  font-size: clamp(36px, 4.6vw, 56px); font-weight: 700;
  letter-spacing: -0.022em; line-height: 1.08;
  text-align: center;
  max-width: 18ch; margin: 0 auto 40px;
}
.compare-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 0;
  border-top: 1px solid var(--line);
  max-width: 980px; margin: 0 auto;
}
.compare-grid > div {
  padding: 18px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.cmp-head {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-3); padding-bottom: 10px;
}
.cmp-us { color: var(--ink); font-weight: 500; text-align: center; }
.cmp-them { color: var(--ink-3); text-align: center; }
.cmp-feat { color: var(--ink); }

/* ─── Roles ───────────────────────────────────────────────────────────── */
.roles { padding: 90px 22px; background: var(--bg); }
.roles .inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.roles h2 {
  font-size: clamp(36px, 4.6vw, 56px); font-weight: 700;
  letter-spacing: -0.022em; line-height: 1.08;
  margin: 0 0 12px;
}
.roles .sub { font-size: 21px; color: var(--ink-3); max-width: 600px; margin: 0 auto 40px; letter-spacing: -0.01em; }
.role-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.role-card {
  background: var(--bg-3);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: left;
  min-height: 240px;
  display: flex; flex-direction: column;
}
.role-card .icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  background: var(--teal-soft);
  border-radius: 12px;
  color: var(--teal-darker);
}
.role-card .icon svg { width: 24px; height: 24px; }
.role-card h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.015em; margin: 0 0 6px; }
.role-card p { font-size: 15px; line-height: 1.4; color: var(--ink-2); margin: 0 0 14px; }
.role-card .link-blue { margin-top: auto; font-size: 15px; }

/* ─── Pricing ─────────────────────────────────────────────────────────── */
.pricing { padding: 90px 22px; background: var(--bg-2); }
.pricing .inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.pricing h2 {
  font-size: clamp(36px, 4.6vw, 56px); font-weight: 700;
  letter-spacing: -0.022em; margin: 0 0 12px;
}
.pricing .sub { font-size: 21px; color: var(--ink-3); max-width: 640px; margin: 0 auto 40px; letter-spacing: -0.01em; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; text-align: left; }
.plan {
  background: var(--bg); border-radius: 18px; padding: 36px 28px;
  border: 1px solid var(--line-2);
  display: flex; flex-direction: column; min-height: 340px;
}
.plan.featured { background: var(--teal-shadow); color: var(--teal-soft); border-color: var(--teal-shadow); }
.plan .eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); margin-bottom: 14px; }
.plan.featured .eyebrow { color: var(--blue-light); }
.plan .price { font-size: 48px; font-weight: 700; letter-spacing: -0.025em; line-height: 1; }
.plan .price small { font-size: 16px; font-weight: 500; color: var(--ink-3); letter-spacing: -0.01em; }
.plan .desc { font-size: 15px; line-height: 1.45; color: var(--ink-2); margin: 14px 0 22px; }
.plan.featured .desc { color: #d2d2d7; }
.plan ul { list-style: none; padding: 0; margin: 0 0 22px; font-size: 14px; line-height: 1.85; }
.plan ul li::before { content: '✓ '; color: var(--green); font-weight: 700; }
.plan .btn { align-self: flex-start; margin-top: auto; }

/* ─── Closing CTA (full-bleed teal w/ halos) ──────────────────────────── */
.closing {
  padding: 110px 22px;
  text-align: center;
  background:
    radial-gradient(60% 80% at 50% 100%, rgba(45,212,191,0.18) 0%, transparent 60%),
    radial-gradient(80% 60% at 50% 0%, rgba(240,185,75,0.10) 0%, transparent 60%),
    var(--teal-shadow);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.closing::before, .closing::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(109,186,182,0.28);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: closing-pulse 6s ease-in-out infinite;
}
.closing::after {
  width: 900px; height: 900px;
  animation-delay: -3s;
  border-color: rgba(109,186,182,0.16);
}
@keyframes closing-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.15; transform: translate(-50%, -50%) scale(1.15); }
}
.closing .inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.closing .kicker { color: var(--teal); margin-bottom: 16px; }
.closing h2 {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: #fff;
  margin: 0 0 18px;
}
.closing p {
  font-size: 21px; color: var(--teal-soft);
  max-width: 580px; margin: 0 auto 32px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.closing .actions {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; align-items: center;
}
.closing .btn-wa {
  background: #25d366;
  color: #fff;
  display: inline-flex; align-items: center; gap: 8px;
}
.closing .btn-wa:hover { background: #20bf5b; }
.closing .btn-wa svg { width: 18px; height: 18px; }
.closing .btn-ghost-light {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.32);
}
.closing .btn-ghost-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.55); }
.closing .closing-meta {
  margin-top: 26px;
  font-size: 13px;
  color: var(--teal-soft);
  opacity: 0.7;
  display: flex; justify-content: center; gap: 18px; flex-wrap: wrap;
}
.closing .closing-meta span { display: inline-flex; align-items: center; gap: 6px; }
.closing .closing-meta span::before { content: '✓'; color: var(--teal); font-weight: 700; }

/* ─── Footer ──────────────────────────────────────────────────────────── */
.footer { background: var(--bg-3); color: var(--ink-3); font-size: 12px; padding: 24px 22px; }
.footer .inner { max-width: 1100px; margin: 0 auto; }
.fnote { padding: 14px 0; border-bottom: 1px solid var(--line); line-height: 1.5; }
.fcols { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.fcol h4 { font-size: 12px; color: var(--ink); font-weight: 600; margin: 0 0 12px; }
.fcol a { display: block; color: var(--ink-2); text-decoration: none; padding: 3px 0; }
.fcol a:hover { text-decoration: underline; }
.fbottom { display: flex; justify-content: space-between; padding: 18px 0 0; flex-wrap: wrap; gap: 10px; }
.fbottom .fb-links { display: flex; gap: 16px; flex-wrap: wrap; }
.fbottom .fb-links a { color: var(--ink-2); text-decoration: none; }

/* ─── Contact modal ───────────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center; justify-content: center;
  z-index: 100;
  padding: 22px;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: #fff;
  border-radius: 18px;
  max-width: 460px;
  width: 100%;
  padding: 32px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.3);
  position: relative;
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  background: none; border: 0; width: 32px; height: 32px;
  border-radius: 50%; color: var(--ink-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.modal-close:hover { background: var(--bg-3); color: var(--ink); }
.modal h3 { font-size: 26px; font-weight: 700; letter-spacing: -0.018em; margin: 0 0 6px; }
.modal p.lead { font-size: 15px; color: var(--ink-2); margin: 0 0 22px; line-height: 1.45; }
.modal form { display: flex; flex-direction: column; gap: 12px; }
.modal label {
  font-size: 12px; font-weight: 600; color: var(--ink-2);
  display: flex; flex-direction: column; gap: 6px;
}
.modal input, .modal textarea {
  font: inherit; font-size: 15px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-2);
  letter-spacing: -0.005em;
  color: var(--ink);
}
.modal input:focus, .modal textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 3px rgba(0,113,227,0.18);
}
.modal textarea { min-height: 70px; resize: vertical; font-family: inherit; }
.modal .form-actions { display: flex; gap: 10px; align-items: center; margin-top: 6px; }
.modal .btn { padding: 12px 22px; }
.modal .form-msg { font-size: 13px; color: var(--ink-3); }
.modal .form-msg.error { color: var(--red); }
.modal .form-msg.success { color: var(--green); }

/* ─── Mobile ──────────────────────────────────────────────────────────── */
/* ─── How it works ────────────────────────────────────────────────────── */
.how {
  padding: 90px 22px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.how .inner { max-width: 1100px; margin: 0 auto; }
.how .head { text-align: center; margin-bottom: 56px; }
.how h2 {
  font-size: clamp(36px, 4.6vw, 56px); font-weight: 600;
  letter-spacing: -0.022em; line-height: 1.08;
  margin: 8px 0 12px;
  max-width: 20ch; margin-left: auto; margin-right: auto;
}
.how .sub { font-size: 21px; color: var(--ink-3); max-width: 600px; margin: 0 auto; letter-spacing: -0.01em; }

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
}
.how-step {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 26px 22px 24px;
  position: relative;
  display: flex; flex-direction: column;
}
.how-step .num {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  color: var(--teal-deep);
  margin-bottom: 14px;
}
.how-step h3 {
  font-size: 18px; font-weight: 600;
  letter-spacing: -0.012em;
  margin: 0 0 8px;
}
.how-step p {
  font-size: 14px; line-height: 1.5;
  color: var(--ink-2); margin: 0;
}
.how-step .tag {
  margin-top: 14px;
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase; letter-spacing: 0.06em;
  font-weight: 600;
}

/* Connector lines between steps */
.how-step + .how-step::before {
  content: '';
  position: absolute;
  left: -10px; top: 50%;
  width: 14px; height: 2px;
  background: var(--line);
  transform: translateY(-50%);
}
.how-step + .how-step::after {
  content: '›';
  position: absolute;
  left: -8px; top: 50%;
  transform: translateY(-50%);
  color: var(--teal-deep);
  font-size: 14px;
  background: var(--bg);
  padding: 0 3px;
}

/* LGPD strip below the 4 steps */
.how-lgpd {
  margin-top: 32px;
  background: var(--teal-shadow);
  color: var(--teal-soft);
  border-radius: 18px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.how-lgpd .lgpd-title {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.how-lgpd .lgpd-item h4 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.how-lgpd .lgpd-item p {
  margin: 0;
  font-size: 12.5px;
  color: var(--teal-soft);
  opacity: 0.85;
  line-height: 1.4;
}

/* ─── Customers strip (active users) ─────────────────────────────────── */
.customers {
  padding: 60px 22px;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.customers .inner {
  max-width: 980px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center;
}
.customers .kicker { color: var(--teal-deep); font-size: 12px; }
.customers h2 {
  font-size: clamp(28px, 3.4vw, 40px); font-weight: 600;
  letter-spacing: -0.02em; line-height: 1.1;
  margin: 0 0 8px;
}
.customers p {
  font-size: 16px; line-height: 1.5;
  color: var(--ink-2); margin: 0 0 18px; max-width: 42ch;
}
.customers .cust-actions { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.customers .cust-meta {
  display: flex; flex-direction: column; gap: 2px;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 8px 18px;
  font-size: 14px;
}
.customers .cust-meta a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px dashed var(--line);
  transition: color .15s ease;
}
.customers .cust-meta a:last-child { border-bottom: none; }
.customers .cust-meta a:hover { color: var(--teal-deep); }
.customers .cust-meta a::after { content: '›'; color: var(--ink-3); }

/* Hero sub-link for active users */
.hero-aside {
  font-size: 14px; color: var(--ink-3);
  margin-top: 8px;
}
.hero-aside a { color: var(--teal-deep); text-decoration: none; font-weight: 500; }
.hero-aside a:hover { text-decoration: underline; }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-right > a:not(.nav-cta) { display: none; }
  .nav-burger { display: inline-flex; }

  .tile-row, .tile-row.three { grid-template-columns: 1fr; }
  .tile { min-height: 460px; padding: 36px 24px; }
  .tile.short { padding: 32px 24px; min-height: 380px; }

  .role-grid { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: 1fr; }
  .fcols { grid-template-columns: 1fr 1fr; }

  .shot-frame { grid-template-columns: 1fr; }
  .shot-sidebar { display: none; }
  .shot-row { grid-template-columns: 1fr 1fr; }

  .compare-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .compare-grid > div { font-size: 13px; padding: 12px 8px; }

  .section, .compare, .roles, .pricing, .closing { padding-left: 18px; padding-right: 18px; padding-top: 60px; padding-bottom: 60px; }
  .hero { padding-top: 50px; padding-left: 18px; padding-right: 18px; }

  /* Radar mock — stack rooms over log; shrink cell sizes */
  .hero-shot { aspect-ratio: auto; min-height: 460px; padding: 12px 0; }
  .radar-body { grid-template-columns: 1fr; }
  .rooms { grid-template-columns: repeat(2, 1fr); }
  .room { padding: 10px; }
  .room h4 { font-size: 11px; }
  .log { padding: 10px 12px; }
  .log-event { grid-template-columns: 36px 24px 1fr; font-size: 10.5px; }
  .radar-bottom { flex-direction: column; align-items: flex-start; gap: 8px; padding: 12px; }
  .radar-bottom .radar-actions { width: 100%; justify-content: flex-end; }
  .radar-meta { display: none; }
  .radar-mock { font-size: 11px; }

  /* How it works — stack steps */
  .how-steps { grid-template-columns: 1fr 1fr; }
  .how-step + .how-step::before, .how-step + .how-step::after { display: none; }
  .how-lgpd { grid-template-columns: 1fr; gap: 14px; padding: 20px 22px; }

  /* Customers strip — stack */
  .customers .inner { grid-template-columns: 1fr; gap: 20px; }

  /* Closing — softer halos on mobile */
  .closing::before, .closing::after { display: none; }
  .closing { padding: 80px 22px; }

  .wa-fab { right: 12px; bottom: 12px; width: 52px; height: 52px; }
}

/* ─── Print / no-JS ───────────────────────────────────────────────────── */
@media print {
  .nav, .modal-backdrop, .nav-right, .wa-fab { display: none !important; }
  body { background: #fff; }
}

/* ─── Legal pages (privacidade / termos) ─────────────────────────────── */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 22px 60px;
}
.legal-header {
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 36px;
}
.legal-header .kicker { color: var(--teal-deep); font-size: 12px; }
.legal-header h1 {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.05;
  margin: 12px 0 16px;
  color: var(--ink);
}
.legal-header .lead {
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink-2);
  letter-spacing: -0.012em;
  margin: 0 0 20px;
  max-width: 60ch;
}
.legal-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--ink-3);
  flex-wrap: wrap;
}
.legal-meta strong { color: var(--ink-2); font-weight: 600; }

.legal-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
}
.legal-body .legal-intro {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 36px;
  padding-left: 16px;
  border-left: 3px solid var(--teal-soft);
}
.legal-body h2 {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 72;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 40px 0 14px;
  line-height: 1.2;
}
.legal-body p { margin: 0 0 16px; }
.legal-body strong { color: var(--ink); font-weight: 600; }
.legal-body em { color: var(--coral); font-style: italic; font-weight: 500; background: rgba(232,92,92,0.07); padding: 0 4px; border-radius: 3px; }
.legal-body ul {
  margin: 0 0 18px;
  padding-left: 22px;
}
.legal-body ul li {
  margin-bottom: 6px;
}
.legal-body a {
  color: var(--teal-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(29,140,133,0.3);
  transition: border-color .15s;
}
.legal-body a:hover { border-color: var(--teal-deep); }

.legal-cta {
  margin-top: 56px;
  padding-top: 30px;
  border-top: 1px solid var(--line-2);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 760px) {
  .legal { padding: 50px 18px 40px; }
  .legal-body { font-size: 15px; }
}

/* ─── Radar mock (replaces old dashboard shot) ────────────────────────── */
.radar-mock {
  width: 92%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.18), 0 8px 24px -8px rgba(0,0,0,0.12);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  font-size: 12px;
  text-align: left;
  min-height: 360px;
}
.radar-top {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--line-2);
}
.radar-dot-live {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(106,176,72,0.6);
  animation: live-pulse 1.6s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(106,176,72,0.55); }
  50% { box-shadow: 0 0 0 6px rgba(106,176,72,0); }
}
.radar-title {
  font-weight: 700; letter-spacing: 0.06em;
  font-size: 10.5px;
  text-transform: uppercase;
  color: var(--ink);
}
.radar-meta { color: var(--ink-3); font-size: 11px; }
.radar-now {
  margin-left: auto;
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  background: var(--bg-3); padding: 2px 8px; border-radius: 4px;
  font-size: 11px; color: var(--ink-2);
}

.radar-body {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  background: var(--line-2);
  gap: 1px;
}
.rooms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--line-2);
  gap: 1px;
}
.room {
  background: #fff;
  padding: 12px 13px;
  display: flex; flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.room h4 {
  margin: 0;
  font-size: 12px; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--ink);
}
.room h4 .count { color: var(--coral); font-weight: 700; font-size: 11px; }
.room h4 .count.zero { color: var(--ink-3); font-weight: 500; }
.dots {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
}
.dot {
  width: 100%; aspect-ratio: 1;
  border-radius: 50%;
  background: var(--leaf-soft);
  border: 1.5px solid var(--leaf);
  transition: background .4s ease, border-color .4s ease;
}

/* alert pulse on the active room border */
.room.alerting::after {
  content: '';
  position: absolute; inset: 4px;
  border: 1.5px solid var(--coral);
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  animation: room-alert 14s ease-in-out infinite;
}
@keyframes room-alert {
  0%, 48% { opacity: 0; }
  52%, 92% { opacity: 0.85; }
  100% { opacity: 0; }
}
.room.alerting .count {
  opacity: 0;
  animation: count-show 14s ease-in-out infinite;
}
@keyframes count-show {
  0%, 48% { opacity: 0; }
  52%, 92% { opacity: 1; }
  100% { opacity: 0; }
}

/* Each affected dot flips green→coral at its own moment in the 14s cycle */
@keyframes case-a {
  0%, 9% { background: var(--leaf-soft); border-color: var(--leaf); }
  12%, 92% { background: #fde0e0; border-color: var(--coral); }
  95%, 100% { background: var(--leaf-soft); border-color: var(--leaf); }
}
@keyframes case-b {
  0%, 18% { background: var(--leaf-soft); border-color: var(--leaf); }
  21%, 92% { background: #fde0e0; border-color: var(--coral); }
  95%, 100% { background: var(--leaf-soft); border-color: var(--leaf); }
}
@keyframes case-c {
  0%, 30% { background: var(--leaf-soft); border-color: var(--leaf); }
  33%, 92% { background: #fde0e0; border-color: var(--coral); }
  95%, 100% { background: var(--leaf-soft); border-color: var(--leaf); }
}
@keyframes case-d {
  0%, 42% { background: var(--leaf-soft); border-color: var(--leaf); }
  45%, 92% { background: #fde0e0; border-color: var(--coral); }
  95%, 100% { background: var(--leaf-soft); border-color: var(--leaf); }
}
.dot.case-a { animation: case-a 14s ease-in-out infinite; }
.dot.case-b { animation: case-b 14s ease-in-out infinite; }
.dot.case-c { animation: case-c 14s ease-in-out infinite; }
.dot.case-d { animation: case-d 14s ease-in-out infinite; }

/* Right-side activity log */
.log {
  background: var(--bg-2);
  padding: 12px 14px;
  display: flex; flex-direction: column;
  gap: 6px;
  font-size: 11px;
  position: relative;
}
.log-title {
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-3); font-size: 10px; margin-bottom: 4px;
}
.log-event {
  display: grid;
  grid-template-columns: 38px 26px 1fr;
  gap: 6px; align-items: baseline;
  padding: 4px 0;
  border-bottom: 1px dashed var(--line-2);
  opacity: 0;
}
.log-event:last-child { border-bottom: none; }
.log-event .t { font-family: ui-monospace, 'SF Mono', monospace; color: var(--ink-3); font-size: 10.5px; }
.log-event .r {
  font-weight: 600; background: var(--bg-3); padding: 1px 5px;
  border-radius: 3px; color: var(--ink-2); font-size: 10px; text-align: center;
}
.log-event.alert .r { background: #ffe4e4; color: var(--coral); }
.log-event.alert .body { color: var(--coral); font-weight: 600; }

.log-event.e1 { animation: log-in-1 14s ease-out infinite; }
.log-event.e2 { animation: log-in-2 14s ease-out infinite; }
.log-event.e3 { animation: log-in-3 14s ease-out infinite; }
.log-event.e4 { animation: log-in-4 14s ease-out infinite; }
.log-event.e5 { animation: log-in-5 14s ease-out infinite; }
@keyframes log-in-1 { 0%, 9% { opacity: 0; transform: translateY(6px); } 13%, 92% { opacity: 1; transform: translateY(0); } 95%, 100% { opacity: 0; transform: translateY(6px); } }
@keyframes log-in-2 { 0%, 18% { opacity: 0; transform: translateY(6px); } 22%, 92% { opacity: 1; transform: translateY(0); } 95%, 100% { opacity: 0; transform: translateY(6px); } }
@keyframes log-in-3 { 0%, 30% { opacity: 0; transform: translateY(6px); } 34%, 92% { opacity: 1; transform: translateY(0); } 95%, 100% { opacity: 0; transform: translateY(6px); } }
@keyframes log-in-4 { 0%, 42% { opacity: 0; transform: translateY(6px); } 46%, 92% { opacity: 1; transform: translateY(0); } 95%, 100% { opacity: 0; transform: translateY(6px); } }
@keyframes log-in-5 { 0%, 50% { opacity: 0; transform: translateY(6px); } 54%, 92% { opacity: 1; transform: translateY(0); } 95%, 100% { opacity: 0; transform: translateY(6px); } }

/* Bottom alert strip */
.radar-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 11px 16px;
  border-top: 1px solid var(--line-2);
  background: #fff;
  min-height: 44px;
}
.alert-banner {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--ink-2);
  opacity: 0;
  animation: banner-in 14s ease-out infinite;
}
.alert-banner::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--coral);
  animation: live-pulse 1.4s ease-in-out infinite;
}
.alert-banner strong { color: var(--coral); font-weight: 700; }
@keyframes banner-in {
  0%, 52% { opacity: 0; transform: translateX(-6px); }
  56%, 92% { opacity: 1; transform: translateX(0); }
  95%, 100% { opacity: 0; }
}
.radar-actions { display: flex; gap: 8px; }
.radar-actions .pill {
  font-size: 11px; padding: 5px 11px; border-radius: 999px;
  background: var(--teal-deep); color: #fff;
  opacity: 0;
  animation: banner-in 14s ease-out infinite;
}
.radar-actions .pill.ghost { background: transparent; border: 1px solid var(--line); color: var(--ink-2); }

/* idle state for non-alert rooms — subtle "all clear" */
.room:not(.alerting) h4 .count { color: var(--green); font-weight: 600; }

/* ─── Scroll reveal ───────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }

/* ─── WhatsApp FAB ────────────────────────────────────────────────────── */
.wa-fab {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 50;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 14px 30px -10px rgba(37,211,102,0.55), 0 4px 10px -2px rgba(0,0,0,0.18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-fab:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 18px 36px -10px rgba(37,211,102,0.65);
}
.wa-fab::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: fab-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes fab-pulse {
  0% { opacity: 0.6; transform: scale(0.9); }
  100% { opacity: 0; transform: scale(1.5); }
}
.wa-fab svg { width: 28px; height: 28px; }

/* ─── Reduced motion ──────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .reveal { opacity: 1; transform: none; }
  /* keep radar in its "alert" state so the story is still legible */
  .room.alerting::after { opacity: 0.85; }
  .room.alerting .count { opacity: 1; }
  .dot.case-a, .dot.case-b, .dot.case-c, .dot.case-d {
    background: #fde0e0; border-color: var(--coral);
  }
  .log-event { opacity: 1; transform: none; }
  .alert-banner { opacity: 1; transform: none; }
  .radar-actions .pill { opacity: 1; }
  .wa-fab::after { display: none; }
}
