@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --color-primary: #006c47;
  --color-primary-container: #08bd80;
  --color-surface: #f8f9ff;
  --color-surface-container-low: #eff3ff;
  --color-surface-container-lowest: #ffffff;
  --color-surface-container-high: #e1e8f9;
  --color-on-surface: #141c28;
  --color-secondary: #575f6c;
  --color-outline-variant: #bbcabf;
  --bg: var(--color-surface);
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: var(--color-surface-container-lowest);
  --line: rgba(187, 202, 191, 0.20);
  --text: var(--color-on-surface);
  --muted: var(--color-secondary);
  --teal-100: #d9fff3;
  --teal-200: #a8f5dc;
  --teal-300: #5ee9bb;
  --teal-500: var(--color-primary-container);
  --teal-600: var(--color-primary);
  --teal-700: #00583c;
  --accent: var(--color-primary-container);
  --slate-700: #334155;
  --slate-900: var(--color-on-surface);
  --shadow: 0 28px 48px rgba(20, 28, 40, 0.06);
  --shadow-soft: 0 18px 42px rgba(20, 28, 40, 0.05);
  --radius-xl: 18px;
  --radius-lg: 12px;
  --radius-md: 8px;
  --pill: 9999px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
  letter-spacing: -0.01em;
  background:
    radial-gradient(circle at top left, rgba(8, 189, 128, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(225, 232, 249, 0.72), transparent 30%),
    linear-gradient(180deg, var(--color-surface) 0%, #f5fbf8 100%);
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.page-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(13, 148, 136, 0.03), transparent 48%),
    linear-gradient(225deg, rgba(15, 118, 110, 0.03), transparent 42%);
}

.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.28;
  pointer-events: none;
  z-index: -1;
}

.ambient--one {
  width: 360px;
  height: 360px;
  top: -140px;
  right: -120px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.12), transparent 65%);
}

.ambient--two {
  width: 300px;
  height: 300px;
  left: -120px;
  bottom: 2rem;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.10), transparent 68%);
}

.page-main {
  padding-bottom: 4rem;
}

.inline-alert {
  margin: 1rem auto 0;
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: none;
  font-weight: 600;
}

.inline-alert--notice {
  color: var(--teal-700);
  background: rgba(204, 251, 241, 0.76);
}

.inline-alert--error {
  color: #991b1b;
  background: rgba(254, 226, 226, 0.92);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(248, 249, 255, 0.82);
  border-bottom: 0;
}

/* ── Welcome / set-password banner ─────────────────────────── */
.welcome-banner {
  background: linear-gradient(135deg, var(--slate-900) 0%, #1e3a5f 100%);
  color: #fff;
  padding: .85rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.18);
}

.welcome-banner__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.welcome-banner__copy {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: .1rem;
  font-size: .85rem;
  line-height: 1.4;
}

.welcome-banner__copy .muted {
  color: rgba(255,255,255,.6);
  font-size: .78rem;
}

.welcome-banner__form {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}

.welcome-banner__form .input--sm {
  padding: .35rem .65rem;
  font-size: .82rem;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.25);
  color: #fff;
  width: 180px;
}

.welcome-banner__form .input--sm::placeholder {
  color: rgba(255,255,255,.5);
}

.welcome-banner__close {
  background: none;
  border: none;
  color: rgba(255,255,255,.55);
  cursor: pointer;
  font-size: 1rem;
  padding: .25rem .5rem;
  line-height: 1;
  margin-left: auto;
  transition: color .15s;
}

.welcome-banner__close:hover { color: #fff; }

.app-bar {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(18px);
  background: rgba(248, 249, 255, 0.82);
  border-bottom: 0;
}

.header-inner,
.app-bar-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.app-bar-left,
.app-bar-actions {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  min-width: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  min-width: 0;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-copy small {
  color: var(--muted);
  font-size: .82rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--teal-300), var(--teal-600));
  box-shadow: var(--shadow-soft);
}

.brand-mark--soft {
  width: 38px;
  height: 38px;
}

.brand-logo {
  display: block;
  height: 34px;
  width: auto;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  color: var(--slate-900);
  font-weight: 600;
  opacity: .78;
  transition: opacity .15s;
}

.site-nav a:hover {
  opacity: 1;
}

.button,
.toggle-button,
.tab-button,
.icon-button,
.sidebar-link,
.method-card,
.nav-toggle {
  border: 0;
  border-radius: var(--pill);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.35rem;
  background: var(--color-surface-container-lowest);
  color: var(--slate-900);
  font-weight: 700;
  box-shadow: none;
  border: 1px solid rgba(187, 202, 191, 0.20);
  cursor: pointer;
}

.button:hover,
.toggle-button:hover,
.tab-button:hover,
.sidebar-link:hover,
.method-card:hover,
.icon-button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-container) 100%);
  box-shadow: none;
}

.button--primary:visited,
.button--primary:hover,
.button--primary:active {
  color: #ffffff;
}

.site-nav a.button--primary,
.site-nav a.button--primary:visited,
.site-nav a.button--primary:hover,
.site-nav a.button--primary:active {
  color: #ffffff;
}

.button--soft {
  background: rgba(255, 255, 255, 0.72);
  color: var(--slate-900);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .9rem;
  color: var(--slate-500);
  text-decoration: none;
  padding: .25rem 0;
  transition: color .15s;
}
.back-link:hover {
  color: var(--teal-600);
}

.button--small {
  min-height: 42px;
  padding-inline: 1rem;
  font-size: .94rem;
}

.button--block {
  width: 100%;
  min-height: 42px;
  padding: 0.65rem 1.35rem;
  font-size: .95rem;
}

.nav-toggle,
.icon-button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
  cursor: pointer;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--slate-800);
}

.nav-toggle--app {
  display: none;
}

.hero {
  padding: 3.25rem 0 2rem;
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: 1.2fr .95fr;
  gap: 1.5rem;
  align-items: start;
}

.hero-copy h1,
.workspace-head h1,
.auth-copy h1 {
  margin: .5rem 0 1rem;
  font-size: clamp(2.4rem, 4vw, 4.7rem);
  line-height: .98;
  letter-spacing: -0.06em;
}

.lead,
.section-head p,
.hero-panel p,
.auth-copy p,
.auth-panel p,
.card p,
.workspace-head p,
.fineprint,
.metric-note,
.summary-line span,
.trust-chip span,
.feature-card p,
.sidebar-card p,
.pricing-card p,
.stat-card span,
.mini-card span,
.evidence-card p,
.info-card span {
  color: var(--muted);
}

.hero-copy .lead {
  max-width: 60ch;
  font-size: 1.06rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--teal-700);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.hero-actions--right {
  justify-content: flex-end;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  margin-top: 1.75rem;
}

.trust-chip,
.stat-card,
.info-card,
.mini-card,
.evidence-card,
.summary-chip,
.credit-chip,
.sidebar-card,
.metric-card,
.pricing-card,
.quote-card,
.method-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.trust-chip {
  padding: 1rem 1rem .95rem;
  border-radius: var(--radius-md);
}

.trust-chip strong,
.feature-card h3,
.pricing-card h2,
.auth-panel h2,
.auth-copy h1,
.card h2,
.workspace-head h1,
.metric-value,
.summary-line strong,
.mini-card strong,
.workspace-head strong {
  color: var(--slate-900);
}

.hero-panel,
.card,
.auth-panel,
.auth-copy,
.pricing-card {
  border-radius: var(--radius-xl);
  padding: 1.45rem;
}

.card--hero {
  background:
    radial-gradient(circle at top right, rgba(204, 251, 241, 0.9), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.78));
}

.panel-head {
  margin-bottom: 1rem;
}

.stack {
  display: grid;
  gap: 1rem;
}

.form-grid {
  gap: .85rem;
}

.field {
  display: grid;
  gap: .45rem;
}

.field span {
  font-size: .92rem;
  font-weight: 600;
  color: var(--slate-700);
}

.field-label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  flex-wrap: wrap;
  font-weight: 500;
}

.field-help {
  position: relative;
  width: 1.2rem;
  height: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.14);
  color: var(--teal-700);
  font-size: .78rem;
  font-weight: 800;
  cursor: help;
}

.field-help__bubble {
  position: absolute;
  left: 50%;
  bottom: calc(100% + .65rem);
  transform: translateX(-50%);
  width: min(280px, calc(100vw - 3rem));
  padding: .8rem .9rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.96);
  color: #f8fafc;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.22);
  font-size: .8rem;
  font-weight: 500;
  line-height: 1.45;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
  z-index: 3;
}

/* Evita que a regra global ".field span" escureça o texto do tooltip */
.field .field-help__bubble {
  color: #f8fafc;
}

.field-help__bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border-width: 7px 6px 0 6px;
  border-style: solid;
  border-color: rgba(15, 23, 42, 0.96) transparent transparent transparent;
}

.field-help:hover .field-help__bubble,
.field-help:focus .field-help__bubble,
.field-help:focus-within .field-help__bubble {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-2px);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
}

.choice-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card__content {
  min-height: 100%;
  display: grid;
  gap: .28rem;
  padding: .95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.88);
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.choice-card__title {
  color: var(--slate-900);
  font-size: .96rem;
  font-weight: 500;
}

.choice-card__content small {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.45;
}

.choice-card input:checked + .choice-card__content {
  border-color: rgba(13, 148, 136, 0.45);
  background: linear-gradient(180deg, rgba(204, 251, 241, 0.58), rgba(255, 255, 255, 0.98));
  box-shadow: 0 10px 22px rgba(13, 148, 136, 0.12);
}

.choice-card:hover .choice-card__content {
  transform: translateY(-1px);
}

.input,
.textarea,
select.input {
  width: 100%;
  min-height: 50px;
  padding: .92rem 1rem;
  color: var(--slate-900);
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 16px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.input:focus,
.textarea:focus,
select.input:focus {
  border-color: rgba(13, 148, 136, .55);
  box-shadow: 0 0 0 4px rgba(45, 212, 191, .18);
}

.password-field {
  position: relative;
}

.password-field .input {
  padding-right: 6.2rem;
}

.password-field__toggle {
  position: absolute;
  top: 50%;
  right: .9rem;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--teal-700);
  font-size: .84rem;
  font-weight: 700;
  padding: .25rem;
  cursor: pointer;
}

.password-field__toggle:hover {
  color: var(--teal-600);
}

.textarea {
  min-height: 132px;
  resize: vertical;
}

.fineprint {
  margin: 0;
  font-size: .9rem;
}

.auth-admin-link {
  margin-top: .65rem;
  padding-top: .8rem;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.auth-admin-link a {
  color: var(--teal-700);
  font-weight: 700;
}

.section {
  padding: 2rem 0;
}

.section--soft {
  padding-block: 1rem 3rem;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.section-head--tight {
  align-items: center;
  margin-bottom: 0;
}

.section-head h2 {
  margin: .4rem 0 0;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  letter-spacing: -0.04em;
}

.feature-grid,
.metric-grid,
.pricing-grid,
.auth-points,
.evidence-grid,
.info-grid,
.stat-grid {
  display: grid;
  gap: 1rem;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  min-height: 220px;
}

.feature-card,
.stat-card,
.info-card,
.mini-card,
.evidence-card {
  border-radius: var(--radius-lg);
  padding: 1.2rem;
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--teal-700);
  background: var(--teal-100);
  font-weight: 800;
}

.split-grid--dashboard,
.split-grid--billing,
.split-grid--checkout,
.split-grid--mini {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split-grid--cases {
  grid-template-columns: 1.08fr .92fr;
}

.stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
  min-height: 118px;
  display: grid;
  align-content: start;
  gap: .35rem;
}

.stat-card strong,
.metric-value {
  font-size: 1.55rem;
  letter-spacing: -0.05em;
}

.metric-note {
  display: block;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.number-list,
.check-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: .5rem;
  color: var(--slate-700);
}

.auth-shell {
  padding: 3rem 0 4rem;
}

.auth-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1.4rem;
}

.auth-points,
.mini-metrics {
  margin-top: 1.4rem;
}

.point,
.mini-metrics > div {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.point,
.mini-metrics > div {
  display: grid;
  gap: .25rem;
}

.point strong,
.mini-metrics strong {
  color: var(--slate-900);
}

.mini-metrics {
  display: grid;
  gap: .8rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

.form-row--two,
.form-row--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkbox {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--slate-700);
  font-weight: 600;
}

.checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal-600);
}

.workspace-head {
  width: min(100% - 1.2rem, var(--container));
  margin: 0 auto 0.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.6rem;
}

.workspace-head .hero-actions {
  align-items: center;
  flex: 0 0 auto;
}

.workspace-head .button {
  align-self: flex-start;
  min-height: 42px;
}

.workspace-head h1 {
  margin: .4rem 0 .35rem;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.workspace-plan-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-top: .2rem;
  padding: 0 .8rem;
  border-radius: var(--pill);
  background: rgba(204, 251, 241, 0.72);
  color: var(--teal-700);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.workspace-plan-tag--sidebar {
  margin: 0 0 .35rem .35rem;
  width: fit-content;
}

.app-shell {
  width: min(100% - 1.2rem, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 1.4rem;
  padding: 1.2rem 0 3rem;
}

.app-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: calc(100vh - 140px);
}

.sidebar-nav {
  display: grid;
  gap: .55rem;
}

.sidebar-link--billing {
  margin-top: 2.4rem;
}

.sidebar-link--billing span {
  white-space: nowrap;
}

.sidebar-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border, rgba(0,0,0,.07));
  display: grid;
  gap: .55rem;
}

.sidebar-footer__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 .1rem .25rem;
}

.sidebar-link--secondary {
  opacity: .85;
  font-size: .9rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: .8rem 1rem;
  color: var(--slate-700);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid transparent;
  cursor: pointer;
}

.sidebar-link--new-case span {
  color: var(--teal-600);
}

.sidebar-link.is-active {
  color: var(--teal-700);
  background: rgba(8, 189, 128, 0.16);
  border-color: rgba(8, 189, 128, 0.22);
}

.sidebar-card {
  padding: 1.25rem;
}

.app-workspace {
  display: grid;
  gap: 1.4rem;
  min-width: 0;
}

.theme-admin .page-main {
  padding-bottom: 2rem;
}

.admin-bar .brand-lockup {
  gap: .75rem;
}

.admin-brand-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 .75rem;
  border-radius: var(--pill);
  background: rgba(204, 251, 241, 0.72);
  color: var(--teal-700);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.admin-shell {
  width: min(100% - 1.2rem, var(--container));
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  padding: 1.2rem 0 3rem;
}

.admin-head {
  width: 100%;
  margin-bottom: .25rem;
}

.admin-grid {
  display: grid;
  gap: 1rem;
}

.admin-grid--stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-card {
  overflow: hidden;
}

.admin-muted {
  display: block;
  margin-top: .2rem;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 500;
}

.admin-json {
  margin-top: .85rem;
}

.admin-json summary {
  cursor: pointer;
  color: var(--teal-700);
  font-weight: 800;
}

.admin-json pre {
  max-height: 520px;
  overflow: auto;
  margin: .8rem 0 0;
  padding: 1rem;
  border-radius: 18px;
  background: #0f172a;
  color: #e2e8f0;
  font-size: .78rem;
  line-height: 1.55;
  white-space: pre-wrap;
}

@media (max-width: 900px) {
  .admin-grid--stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .admin-grid--stats {
    grid-template-columns: 1fr;
  }

  .admin-head {
    display: grid;
  }
}

.dashboard-table-only,
.dashboard-empty-state {
  width: 100%;
}

.dashboard-table-card {
  padding: 0;
  overflow: hidden;
}

.dashboard-table-card .table-wrap {
  margin: 0;
}

.dashboard-table-card .data-table th,
.dashboard-table-card .data-table td {
  padding: 1rem 1.1rem;
}

.dashboard-flight-link {
  color: var(--teal-700);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: color .18s ease, text-decoration-color .18s ease;
}

.dashboard-flight-link:hover,
.dashboard-flight-link:focus-visible {
  color: var(--teal-600);
  text-decoration: underline;
  text-decoration-color: rgba(13, 148, 136, 0.36);
  text-underline-offset: 0.16em;
}

.dashboard-autosave-form {
  display: grid;
  grid-template-columns: minmax(180px, 1fr);
  gap: .6rem;
  align-items: center;
}

.dashboard-description-input {
  min-width: 0;
}

.dashboard-save-status {
  min-height: 1em;
  color: var(--muted);
  font-size: .72rem;
}

.dashboard-save-status[data-state="saved"] {
  color: var(--teal-700);
}

.dashboard-save-status[data-state="error"] {
  color: #b42318;
}

.credit-chip,
.summary-chip {
  padding: .75rem 1rem;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}

.credit-chip {
  gap: .5rem;
}

.credit-chip__label {
  color: var(--muted);
  font-size: .85rem;
}

.avatar-chip {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(45, 212, 191, .18), rgba(13, 148, 136, .18));
  border: 1px solid rgba(20, 184, 166, 0.22);
  color: var(--teal-700);
  font-weight: 800;
  cursor: pointer;
}

.avatar-chip--button {
  appearance: none;
}

.avatar-chip__image {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.profile-menu {
  position: relative;
}

.profile-menu__panel {
  position: absolute;
  top: calc(100% + .6rem);
  right: 0;
  width: 280px;
  padding: .6rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
  z-index: 60;
}

.profile-menu__identity {
  display: grid;
  gap: .15rem;
  padding: .9rem 1rem;
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.profile-menu__identity strong {
  color: var(--slate-900);
  font-size: .95rem;
}

.profile-menu__identity span {
  color: var(--muted);
  font-size: .86rem;
  word-break: break-word;
}

.profile-menu__links {
  display: grid;
  gap: .25rem;
  margin-top: .45rem;
}

.profile-menu__links form {
  margin: 0;
}

.profile-menu__link {
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: .8rem .9rem;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--slate-700);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.profile-menu__link:hover {
  background: rgba(241, 245, 249, 0.95);
}

.profile-menu__link--danger {
  color: #b91c1c;
}

.profile-layout {
  display: grid;
  gap: 1rem;
}

.profile-form {
  gap: 1.2rem;
}

.profile-identity-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.profile-photo-block {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(248, 250, 252, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.profile-photo-frame {
  width: 120px;
  height: 120px;
  border-radius: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(45, 212, 191, .16), rgba(13, 148, 136, .22));
  border: 1px solid rgba(20, 184, 166, 0.22);
  color: var(--teal-700);
  font-size: 2rem;
  font-weight: 800;
}

.profile-photo-frame__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-upload-button {
  position: relative;
  width: fit-content;
  overflow: hidden;
}

.profile-identity-fields {
  display: grid;
  gap: 1rem;
}

.profile-actions {
  display: grid;
  gap: .85rem;
}

.checkbox-line {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--slate-700);
  font-size: .92rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-card {
  padding: 1.2rem 1.25rem;
}

.metric-label {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 600;
}

.metric-value {
  display: block;
  margin: .45rem 0 .2rem;
}

.progress {
  height: 10px;
  border-radius: var(--pill);
  background: rgba(148, 163, 184, 0.16);
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--teal-300), var(--teal-600));
}

.table-wrap {
  overflow: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: .9rem .2rem;
  text-align: left;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.data-table th {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 .8rem;
  border-radius: var(--pill);
  font-size: .86rem;
  font-weight: 700;
}

.status--good {
  color: var(--teal-700);
  background: var(--teal-100);
}

.status--warn {
  color: #92400e;
  background: #fef3c7;
}

.status--soft {
  color: var(--slate-700);
  background: #e2e8f0;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.tab-button {
  min-height: 44px;
  padding: 0 .95rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.16);
  color: var(--slate-700);
  font-weight: 700;
  cursor: pointer;
}

.tab-button.is-active,
.toggle-button.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal-300), var(--teal-600));
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(13, 148, 136, 0.20);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: grid;
}

.info-grid,
.evidence-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.mini-card,
.evidence-card {
  min-height: 118px;
}

.quote-card {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-lg);
}

.quote-card p {
  margin: 0;
  color: var(--slate-700);
  font-style: italic;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .9rem;
  align-items: start;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  margin-top: .35rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-300), var(--teal-600));
  box-shadow: 0 0 0 6px rgba(45, 212, 191, 0.12);
}

.timeline-item p {
  margin: .2rem 0 0;
  color: var(--muted);
}

.toggle-group {
  display: inline-flex;
  padding: .25rem;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.toggle-button {
  min-height: 42px;
  padding: 0 1rem;
  background: transparent;
  color: var(--slate-700);
  font-weight: 700;
  cursor: pointer;
}

.pricing-grid {
  gap: .9rem;
  align-items: start;
}

.pricing-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  padding: 1rem;
}

.pricing-card .check-list { flex: 1; }

.pricing-card--featured {
  background:
    radial-gradient(circle at top right, rgba(204, 251, 241, 0.9), transparent 28%),
    rgba(255, 255, 255, 0.88);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(13, 148, 136, 0.18);
}

.pricing-card--enterprise {
  background:
    radial-gradient(circle at bottom left, rgba(15, 23, 42, 0.04), transparent 40%),
    rgba(255, 255, 255, 0.9);
  border: 1.5px solid var(--slate-200);
}

.pricing-enterprise-cta {
  width: fit-content;
  align-self: center;
  text-align: center;
  min-width: 220px;
}

/* Pricing price block */
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: .3rem;
  margin: .2rem 0 .1rem;
}

.pricing-amount {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--slate-900);
  line-height: 1;
}

.pricing-amount--contact {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--teal-600);
}

.pricing-period {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500;
}

.button.is-disabled {
  pointer-events: none;
  opacity: .72;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
}

.method-card {
  padding: .95rem;
  border-radius: 18px;
  text-align: center;
  color: var(--slate-700);
  cursor: pointer;
}

.method-card.is-active {
  color: var(--teal-700);
  background: var(--teal-100);
  border-color: rgba(45, 212, 191, 0.34);
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.summary-line:last-of-type {
  border-bottom: 0;
}

.flight-rows {
  display: grid;
  gap: .85rem;
}

.flight-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: .8rem;
  align-items: end;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(248, 250, 252, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.icon-button--danger {
  color: #b91c1c;
  background: rgba(254, 226, 226, 0.9);
}

.card--inner {
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(248, 250, 252, 0.76);
}

.split-grid--landing-clean,
.split-grid--dashboard-clean,
.split-grid--billing-clean {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.billing-faq-list {
  max-width: none;
  margin: 0;
}

.billing-faq-item {
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(248, 250, 252, 0.72);
  box-shadow: none;
}

.muted {
  color: var(--muted);
}

.footer-inner {
  padding: 1.5rem 0 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
}

.footer-brand p {
  margin: .1rem 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--slate-700);
  font-weight: 600;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .15s;
}

.footer-social__link:hover {
  color: var(--accent);
}

.mobile-nav-open .site-nav {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1100px) {
  .hero-grid,
  .split-grid,
  .auth-grid,
  .app-shell,
  .metric-grid,
  .feature-grid,
  .stat-grid,
  .pricing-grid,
  .split-grid--dashboard,
  .split-grid--billing,
  .split-grid--checkout,
  .info-grid,
  .evidence-grid,
  .split-grid--mini,
  .split-grid--cases {
    grid-template-columns: 1fr;
  }

  .trust-row,
  .payment-methods {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    position: static;
  }

  .app-shell {
    padding-top: 0;
  }

  .profile-identity-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav-toggle,
  .nav-toggle--app {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 76px;
    display: grid;
    gap: .6rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
  }

  .header-inner,
  .app-bar-inner,
  .workspace-head,
  .cta-band,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-copy h1,
  .workspace-head h1,
  .auth-copy h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .feature-grid,
  .stat-grid,
  .stat-grid--compact,
  .form-row--two,
  .form-row--split,
  .flight-row {
    grid-template-columns: 1fr;
  }

  .flight-row {
    align-items: stretch;
  }

  .footer-links,
  .hero-actions,
  .app-bar-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .container,
  .workspace-head,
  .app-shell {
    width: min(100% - 1.2rem, var(--container));
  }

  .hero-panel,
  .card,
  .auth-panel,
  .auth-copy,
  .pricing-card {
    padding: 1.1rem;
  }

  .trust-row {
    margin-top: 1.2rem;
  }

  .hero-actions--right {
    justify-content: flex-start;
  }
}

/* ============================================================
   LANDING PAGE — novas seções
============================================================ */

.gradient-text {
  display: inline-block;
  padding-inline-start: .05em;
  background: linear-gradient(135deg, #2dd4bf 0%, var(--teal-600) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section--lp {
  padding-block: 4rem 5rem;
}

.section-head--center {
  justify-content: center;
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head--center h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
}

/* Como funciona — 3 steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.step-card {
  padding: 1.75rem 1.5rem;
  display: grid;
  gap: .85rem;
  align-content: start;
}

.step-card h3 {
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.step-card p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.65;
  margin: 0;
}

/* ── CTA buttons usados na landing (.btn .btn--primary) ────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.6rem;
  border-radius: var(--pill);
  font-weight: 700;
  font-size: .95rem;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, opacity .15s;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: .92;
}

.btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #34d399 0%, var(--teal-600) 100%);
  box-shadow: none;
}

.btn--primary:hover {
  box-shadow: none;
}

.btn--primary:visited,
.btn--primary:hover,
.btn--primary:active {
  color: #ffffff;
}

.section-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.section-cta--full {
  width: 100%;
}

.section-cta--span {
  grid-column: 1 / -1;
}

/* Landing preview - expandable report teaser */
.preview-shell {
  margin-top: 1.75rem;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(13, 148, 136, 0.18);
  background:
    radial-gradient(circle at top right, rgba(153, 246, 228, 0.38), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 252, 251, 0.96));
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.preview-shell[open] {
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.11);
}

.preview-toggle {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 1.6rem;
  cursor: pointer;
}

.preview-toggle::-webkit-details-marker {
  display: none;
}

.preview-toggle__copy h3 {
  margin: 0.4rem 0 0.45rem;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  letter-spacing: -0.04em;
  color: var(--slate-900);
}

.preview-toggle__copy p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
}

.preview-toggle__meta {
  display: grid;
  justify-items: end;
  gap: 0.65rem;
  flex-shrink: 0;
}

.preview-toggle__action,
.preview-spotlight__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--pill);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.preview-toggle__action {
  min-height: 40px;
  padding: 0 1rem;
  font-size: 0.88rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--slate-900), #134e4a);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
}

.preview-panel {
  padding: 0 1.6rem 1.6rem;
}

.preview-loader,
.preview-report-wrap {
  border-radius: calc(var(--radius-xl) - 8px);
}

.preview-loader {
  position: relative;
  display: grid;
  gap: 1.1rem;
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(240, 253, 250, 0.88));
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.preview-loader[hidden],
.preview-report-wrap[hidden] {
  display: none;
}

.preview-loader__top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.preview-loader__top strong {
  color: var(--slate-900);
}

.preview-loader__top p {
  margin: 0.15rem 0 0;
  color: var(--muted);
}

.preview-loader__pulse {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.24), rgba(15, 118, 110, 0.46));
  box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.24);
  animation: preview-pulse 1.6s ease-in-out infinite;
}

.preview-skeleton-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.preview-skeleton-card {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  min-height: 150px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.preview-skeleton-card--wide {
  grid-column: 1 / -1;
  min-height: 110px;
}

.skeleton {
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(226, 232, 240, 0.75) 20%, rgba(255, 255, 255, 0.96) 50%, rgba(226, 232, 240, 0.75) 80%);
  background-size: 220% 100%;
  animation: preview-shimmer 1.15s linear infinite;
}

.skeleton--pill {
  width: 108px;
  height: 28px;
}

.skeleton--title {
  width: 82%;
  height: 20px;
}

.skeleton--title-short {
  width: 58%;
}

.skeleton--line {
  width: 100%;
  height: 14px;
}

.skeleton--line-short {
  width: 64%;
}

.preview-report-wrap {
  display: grid;
  gap: 1rem;
  padding-top: 0.35rem;
}

.preview-spotlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(20, 83, 45, 0.94));
  color: #ffffff;
}

.preview-spotlight strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.preview-spotlight p {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.preview-spotlight__eyebrow {
  min-height: 30px;
  padding: 0 0.8rem;
  font-size: 0.75rem;
  color: #d1fae5;
  background: rgba(255, 255, 255, 0.1);
}

.preview-report {
  max-width: none;
  margin: 0;
}

.preview-case-panel {
  margin-bottom: 1rem;
}

.preview-report-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.72fr);
  gap: 1rem;
}

.preview-report-main,
.preview-report-side {
  display: grid;
  gap: 1rem;
}

.preview-insight-card,
.preview-metric-card,
.preview-proof-card {
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
}

.preview-insight-card {
  padding: 1rem 1.1rem;
}

.preview-insight-card__label {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 0.72rem;
  margin-bottom: 0.6rem;
  border-radius: var(--pill);
  color: var(--teal-700);
  background: rgba(204, 251, 241, 0.8);
  font-size: 0.78rem;
  font-weight: 700;
}

.preview-insight-card p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--slate-700);
}

.preview-timeline {
  display: grid;
  gap: 0.95rem;
}

.preview-timeline__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
}

.preview-timeline__item strong {
  color: var(--slate-900);
}

.preview-timeline__item p {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.preview-timeline__dot {
  width: 12px;
  height: 12px;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, var(--teal-600));
  box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.12);
}

.preview-conclusion {
  margin: 0;
}

.preview-metric-card {
  padding: 1rem 1.1rem;
}

.preview-metric-card span,
.preview-metric-card small {
  display: block;
}

.preview-metric-card span {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.preview-metric-card strong {
  display: block;
  margin: 0.3rem 0 0.15rem;
  color: var(--slate-900);
  font-size: 1.9rem;
  letter-spacing: -0.05em;
}

.preview-metric-card small {
  color: var(--muted);
}

.preview-metric-card--accent {
  background: linear-gradient(145deg, rgba(20, 184, 166, 0.12), rgba(255, 255, 255, 0.98));
}

.preview-proof-card {
  padding: 1rem 1.1rem;
}

.preview-proof-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.preview-proof-card__head span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 0.7rem;
  border-radius: var(--pill);
  background: rgba(15, 23, 42, 0.08);
  color: var(--slate-700);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.preview-proof-card code {
  display: block;
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 0.77rem;
  line-height: 1.65;
  color: var(--slate-700);
}

@keyframes preview-shimmer {
  0% { background-position: 100% 50%; }
  100% { background-position: -100% 50%; }
}

@keyframes preview-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.24); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(20, 184, 166, 0); }
}

/* Bloco comparativo Sem/Com Farol */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.compare-intro {
  max-width: 760px;
  margin: 1rem auto 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--muted);
}

.compare-col {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
}

.compare-col--no {
  border: 1px solid rgba(239, 68, 68, 0.22);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 248, 0.92)),
    radial-gradient(circle at top left, rgba(254, 226, 226, 0.9), transparent 48%);
}

.compare-col--yes {
  border: 1px solid rgba(20, 184, 166, 0.22);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 253, 250, 0.94)),
    radial-gradient(circle at top right, rgba(204, 251, 241, 0.95), transparent 52%);
  box-shadow: 0 22px 44px rgba(13, 148, 136, 0.12);
}

.compare-col__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.compare-badge {
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .01em;
  padding: .3rem .75rem;
  border-radius: 999px;
}

.compare-badge--no {
  background: #fff5f5;
  color: #c53030;
}

.compare-badge--yes {
  background: rgba(20, 184, 166, .1);
  color: var(--accent);
}

.compare-stamp,
.compare-brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
}

.compare-stamp {
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(127, 29, 29, 0.06);
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.16);
}

.compare-stamp__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 800;
  background: rgba(239, 68, 68, 0.14);
}

.compare-stamp__text,
.compare-brand__pill {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.compare-brand__logo {
  height: 26px;
  width: auto;
  object-fit: contain;
}

.compare-brand__pill {
  padding: .35rem .7rem;
  border-radius: 999px;
  color: var(--teal-700);
  background: rgba(20, 184, 166, 0.10);
  border: 1px solid rgba(20, 184, 166, 0.18);
}

.compare-hero {
  display: grid;
  gap: .9rem;
  align-items: start;
}

.compare-hero--no {
  grid-template-columns: 64px minmax(0, 1fr);
}

.compare-hero h3 {
  margin: 0 0 .45rem;
  font-size: 1.18rem;
  line-height: 1.28;
  letter-spacing: -0.03em;
  color: var(--slate-900);
}

.compare-hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.compare-orb {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  position: relative;
}

.compare-orb--no {
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.92), transparent 24%),
    linear-gradient(135deg, rgba(248, 113, 113, 0.30), rgba(239, 68, 68, 0.14));
  border: 1px solid rgba(239, 68, 68, 0.16);
}

.compare-orb--no::before,
.compare-orb--no::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  height: 2px;
  border-radius: 999px;
  background: rgba(153, 27, 27, 0.55);
}

.compare-orb--no::before {
  top: 26px;
  transform: rotate(25deg);
}

.compare-orb--no::after {
  top: 26px;
  transform: rotate(-25deg);
}

.compare-signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.compare-signal {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: .45rem .75rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--teal-700);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(20, 184, 166, 0.16);
}

.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .75rem;
}

.compare-list li {
  font-size: .93rem;
  line-height: 1.55;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
}

.compare-col--no .compare-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #e53e3e;
  font-weight: 700;
}

.compare-col--yes .compare-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.compare-footer {
  margin-top: auto;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.compare-footer__label {
  display: block;
  margin-bottom: .35rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.compare-footer strong {
  font-size: .98rem;
  line-height: 1.5;
  color: var(--slate-900);
}

.compare-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: .75rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 184, 166, 0.14);
}

.compare-flow__step {
  display: grid;
  gap: .25rem;
}

.compare-flow__step strong {
  font-size: .86rem;
  color: var(--slate-900);
}

.compare-flow__step span {
  font-size: .82rem;
  line-height: 1.45;
  color: var(--muted);
}

.compare-flow__step--accent {
  padding: .8rem .9rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.16), rgba(13, 148, 136, 0.08));
}

.compare-flow__arrow {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--teal-600);
}

.compare-closing {
  margin-top: 2.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.compare-closing__text {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0;
}

@media (max-width: 700px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .compare-hero--no,
  .compare-flow {
    grid-template-columns: 1fr;
  }

  .compare-flow__arrow {
    display: none;
  }

  .preview-toggle,
  .preview-spotlight {
    flex-direction: column;
    align-items: flex-start;
  }

  .preview-toggle__meta {
    width: 100%;
    justify-items: start;
  }

  .preview-skeleton-grid,
  .preview-report-grid {
    grid-template-columns: 1fr;
  }
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-300), var(--teal-600));
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.25);
}

/* FAQ — accordion vertical */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background .2s ease;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: "+";
  flex-shrink: 0;
  margin-left: 1rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--teal-600);
  transition: transform .2s ease;
}

details.faq-item[open] .faq-question::after {
  content: "−";
}

.faq-question:hover {
  background: var(--slate-50);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
  margin: 0;
  animation: faq-slide-in .6s ease-out;
}

@keyframes faq-slide-in {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faq-answer strong {
  color: var(--slate-900);
}

/* LP check list variant */
.lp-check {
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: .6rem;
  margin: 1.5rem 0;
}

.lp-check li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .98rem;
  font-weight: 500;
  color: var(--slate-700);
}

.lp-check li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-700);
  font-size: .8rem;
  font-weight: 800;
}

/* Case new — layout simplificado */
.case-new-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.25rem;
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.case-processing-grid {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

.case-new-aside {
  align-self: start;
  position: sticky;
  top: 100px;
}

.credit-summary-card {
  padding: 1.25rem;
  display: grid;
  gap: .1rem;
}

.credit-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.credit-summary-row:last-of-type {
  border-bottom: none;
}

@media (max-width: 1100px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .faq-list {
    max-width: 100%;
  }

  .case-new-grid {
    grid-template-columns: 1fr;
  }

  .choice-grid {
    grid-template-columns: 1fr;
  }

  .case-new-aside {
    position: static;
  }
}

@media (max-width: 560px) {
  .section--lp {
    padding-block: 2.5rem 3rem;
  }
}

/* ============================================================
   LOADING STATE — Case generation
============================================================ */

.loading-card {
  padding: 2rem;
}

.loading-header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  margin-bottom: .25rem;
}

.loading-header h2 {
  font-size: 1.25rem;
  margin: .75rem 0 .35rem;
  letter-spacing: -0.03em;
}

.loading-header p {
  margin: 0;
  font-size: .9rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(20, 184, 166, 0.18);
  border-top-color: var(--teal-500);
  border-radius: 50%;
  animation: spin .75s linear infinite;
}

.loading-steps {
  display: grid;
  gap: 0;
}

.loading-step {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .85rem .5rem;
  border-radius: var(--radius-md);
  opacity: .4;
  transition: opacity .35s ease, background-color .35s ease;
}

.loading-step.is-active {
  opacity: 1;
  background: rgba(204, 251, 241, 0.35);
}

.loading-step.is-done {
  opacity: .65;
}

.loading-step.is-done .loading-step-icon {
  background: var(--teal-100);
  color: var(--teal-700);
}

.loading-step.is-active .loading-step-icon {
  background: linear-gradient(135deg, var(--teal-300), var(--teal-600));
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.3);
}

@keyframes pulse-icon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.loading-step.is-active .loading-step-icon {
  animation: pulse-icon 1.5s ease-in-out infinite;
}

.loading-step-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(148, 163, 184, 0.1);
  color: var(--muted);
  flex-shrink: 0;
  transition: background .35s ease, color .35s ease, box-shadow .35s ease;
}

.loading-step strong {
  display: block;
  font-size: .9rem;
  letter-spacing: -0.02em;
  color: var(--slate-900);
}

.loading-step span {
  display: block;
  font-size: .8rem;
  color: var(--muted);
  margin-top: .1rem;
}

.loading-progress {
  height: 6px;
  border-radius: var(--pill);
  background: rgba(148, 163, 184, 0.12);
  overflow: hidden;
  margin-top: .75rem;
}

.loading-progress-bar {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--teal-300), var(--teal-600));
  transition: width .5s ease;
}

/* ════════════════════════════════════════════════════════════════
   RELATÓRIO TÉCNICO — case_detail
   ════════════════════════════════════════════════════════════════ */

.report {
  max-width: 820px;
  margin: 0 auto;
}

/* ── Header ────────────────────────────────────────────────── */
.report-header {
  background: linear-gradient(135deg, var(--slate-900) 0%, #1e3a5f 100%);
  border-radius: var(--radius-xl);
  padding: 2rem 2.2rem 1.8rem;
  color: #fff;
  margin-bottom: 2rem;
}

.report-view-tabs {
  display: grid;
  gap: 1rem;
}

.report-view-tabs__buttons {
  justify-content: flex-start;
}

.report-view-panel {
  display: none;
}

.report-view-panel.is-active {
  display: grid;
  gap: 1rem;
}

.report-summary-shell {
  display: grid;
  gap: 1rem;
}

.report-summary-hero {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(204, 251, 241, 0.9), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82));
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: var(--shadow);
}

.report-summary-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}

.report-summary-tags--hero {
  margin-top: .8rem;
}

.report-summary-tag {
  display: flex;
  align-items: center;
  min-height: 108px;
  padding: 1.05rem 1.2rem;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.report-summary-tag span {
  color: var(--slate-900);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.45;
}

.report-summary-tag--good {
  background: linear-gradient(135deg, rgba(209, 250, 229, 0.96), rgba(236, 253, 245, 0.96));
  border-color: rgba(16, 185, 129, 0.24);
}

.report-summary-tag--warn {
  background: linear-gradient(135deg, rgba(254, 243, 199, 0.96), rgba(255, 251, 235, 0.96));
  border-color: rgba(245, 158, 11, 0.24);
}

.report-summary-tag--bad {
  background: linear-gradient(135deg, rgba(254, 226, 226, 0.96), rgba(254, 242, 242, 0.96));
  border-color: rgba(239, 68, 68, 0.22);
}

.report-summary-tag--soft {
  background: rgba(248, 250, 252, 0.96);
}

.report-full {
  display: grid;
  gap: 0;
}

.report-supra {
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--teal-300);
  display: block;
  margin-bottom: .5rem;
}

.report-title {
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 .5rem;
  color: #fff;
}

.report-meta {
  font-size: .85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 .45rem;
}

.report-generated {
  font-size: .78rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: right;
  margin: 0 0 .85rem;
  letter-spacing: .02em;
}

.report-case-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: .75rem;
  padding: 1rem 1.2rem;
  margin-bottom: 1.75rem;
  background: var(--color-surface-container-lowest);
  border-radius: var(--radius-lg);
  border: 0;
  box-shadow: none;
}

.report-case-cell {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  min-width: 0;
  align-items: center;
  text-align: center;
}

.report-case-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
}

.report-case-value {
  font-size: .9rem;
  font-weight: 600;
  color: var(--slate-900);
  word-break: break-word;
}

.report-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.report-tag {
  display: inline-block;
  padding: .3rem .7rem;
  border-radius: var(--pill);
  font-size: .75rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

.report-tag--source {
  background: var(--teal-600);
  color: #fff;
}

/* ── Sections ──────────────────────────────────────────────── */
.report-section {
  margin-bottom: 1.8rem;
}

.report-section-title {
  text-transform: uppercase;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--slate-900);
  margin: 0 0 .75rem;
  padding-bottom: .5rem;
  border-bottom: 0;
}

.report-section p {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--slate-700);
  margin: 0 0 .6rem;
}

.report-section strong {
  color: var(--slate-900);
}

/* ── Tables ────────────────────────────────────────────────── */
.report-table-wrap {
  overflow-x: auto;
  margin: .8rem 0 .5rem;
  border-radius: var(--radius-md);
  background: var(--color-surface-container-lowest);
}

.report-board-table-wrap {
  max-height: none;
  overflow-x: auto;
  overflow-y: visible;
  border-radius: var(--radius-md);
}

.report-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
}

.report-table thead th {
  background: var(--slate-900);
  color: #fff;
  padding: .55rem .75rem;
  text-align: center;
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.report-table thead th:first-child { border-radius: var(--radius) 0 0 0; }
.report-table thead th:last-child  { border-radius: 0 var(--radius) 0 0; }

.report-table__titlebar {
  text-align: center;
  background: var(--slate-900);
  color: #fff;
  font-weight: 700;
  letter-spacing: .03em;
}

.report-table tbody td {
  padding: .5rem .75rem;
  border-bottom: 0;
  color: var(--slate-700);
  text-align: center;
}

.report-table tbody tr:nth-child(even) td {
  background: var(--color-surface-container-low);
}

.report-table tbody tr.report-table__row--selected td {
  background: rgba(8, 189, 128, 0.14);
}

.report-table tbody td strong {
  color: var(--slate-900);
}

/* ── Status badges ─────────────────────────────────────────── */
.report-status {
  display: inline-block;
  padding: .18rem .55rem;
  border-radius: var(--pill);
  font-size: .75rem;
  font-weight: 600;
}

.report-status--ok {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
}

.report-status--warn {
  background: rgba(245, 158, 11, 0.12);
  color: #92400e;
}

.report-status--bad {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

/* ── Note box ──────────────────────────────────────────────── */
.report-note {
  background: rgba(245, 158, 11, 0.08);
  border-left: 3px solid #f59e0b;
  padding: .75rem 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .85rem;
  line-height: 1.6;
  color: var(--slate-700);
  margin: .6rem 0 .2rem;
}

.report-note strong {
  color: var(--slate-900);
}

/* ── Weather card ──────────────────────────────────────────── */
.report-weather-card {
  background: var(--color-surface-container-low);
  border-radius: var(--radius-lg);
  padding: 1rem 1.2rem;
  margin: .6rem 0;
  font-size: .88rem;
  line-height: 1.6;
  color: var(--slate-700);
}

.report-weather-card strong {
  color: var(--slate-900);
}

.report-weather-card ul {
  margin: .4rem 0 0;
  padding-left: 1.2rem;
}

.report-weather-card li {
  margin-bottom: .2rem;
}

.report-board-dir {
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--slate-500);
  margin: .8rem 0 .3rem;
}

.report-weather-header {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .4rem;
  flex-wrap: wrap;
}

.report-weather-card--adverse {
  border-left-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
}

.report-table--metar td,
.report-table--metar th {
  font-size: .78rem;
}

.report-metar-raw {
  font-family: "SFMono-Regular", "Consolas", "Liberation Mono", monospace;
  font-size: .74rem !important;
  word-break: break-all;
  color: var(--slate-700);
}

/* ── Analysis list ─────────────────────────────────────────── */
.report-analysis-list p {
  padding-left: .5rem;
}

/* ── Conclusion block ──────────────────────────────────────── */
.report-conclusion {
  background: rgba(16, 185, 129, 0.08);
  border-left: 4px solid var(--teal-600);
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  padding: 1.1rem 1.4rem;
  margin: .5rem 0;
}

.report-conclusion p {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--slate-800);
  margin: 0;
}

.report-conclusion strong {
  color: var(--slate-900);
}

/* ── Footer / Sources ──────────────────────────────────────── */
.report-footer {
  border-top: 1px solid var(--slate-200);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
}

.report-footer p {
  font-size: .78rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.report-footer strong {
  color: var(--slate-700);
}

/* ── Petition CTA ───────────────────────────────────────────── */
.report-petition-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid var(--slate-200);
  text-align: center;
}

.report-petition-cta__text {
  font-size: 1rem;
  color: var(--slate-600);
  margin: 0;
}

.button--lg {
  padding: .85rem 2rem;
  font-size: 1rem;
}

/* ── Modal ──────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .report-summary-tags {
    grid-template-columns: 1fr;
  }

  .report-header {
    padding: 1.4rem 1.2rem 1.2rem;
  }
  .report-title {
    font-size: 1.15rem;
  }
  .report-table { font-size: .78rem; }
  .report-table thead th,
  .report-table tbody td { padding: .4rem .5rem; }
}
