/*
 * landing.css
 * CSS isolado da landing pública — NÃO importar no app/dashboard.
 * NÃO usa Tailwind. NÃO interfere com app.css.
 * ─────────────────────────────────────────────────────────────── */

/* ── Design tokens ────────────────────────────────────────────── */
:root {
  --bg:           #ffffff;
  --bg-soft:      #f7f8fa;
  --bg-hero:      linear-gradient(150deg, #ecfdf5 0%, #ffffff 55%);
  --bg-panel:     #f8fafc;
  --card:         #ffffff;
  --text:         #0f172a;
  --muted:        #475569;
  --border:       #e2e8f0;
  --border-strong:#cbd5e1;
  --green:        #34d399;
  --green-strong: #10b981;
  --green-bg:     #ecfdf5;
  --shadow-hero:  0 18px 45px rgba(15,23,42,.09);
  --red:          #ef4444;
  --radius:       14px;
  --radius-sm:    8px;
  --container:    1120px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-card:  0 4px 16px rgba(0,0,0,.07);
  --transition:   .18s ease;
}

/* ── Reset minimal ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── Layout helpers ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: 80px;
  background: var(--bg);
}

.section--soft {
  padding-block: 72px;
  background: var(--bg-soft);
}

/* ── Navbar ───────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
}

.nav__logo img {
  height: 45px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
}
.nav__link:hover { color: var(--text); }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: inherit;
  font-size: .875rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--green-strong);
  color: #fff;
  border-color: var(--green-strong);
}
.btn--primary:hover {
  background: #059669;
  border-color: #059669;
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover {
  border-color: var(--green-strong);
  color: var(--green-strong);
}

.btn--lg {
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius);
}

.btn--block { width: 100%; }

/* ── Flash messages ───────────────────────────────────────────── */
.flash {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
}
.flash--success { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
.flash--error   { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }
.flash--info    { background: #eff6ff; border: 1px solid #93c5fd; color: #1e40af; }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  background: var(--bg-hero);
  padding-block: 96px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

@media (min-width: 768px) {
  .hero__grid { grid-template-columns: 1fr 1fr; }
}

.hero__eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green-strong);
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.hero__highlight { color: var(--green-strong); }

.hero__sub {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 16px;
  line-height: 1.7;
}

.hero__support {
  font-size: .9375rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero__chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(16,185,129,.14);
  color: var(--text);
  font-size: .8125rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.hero-visual {
  position: relative;
}

.phone-scene {
  position: relative;
  min-height: 640px;
}

.phone-shell {
  position: relative;
  width: 320px;
  margin-inline: auto;
  background: linear-gradient(180deg, #94a3b8 0%, #cbd5e1 100%);
  border-radius: 42px;
  padding: 12px;
  box-shadow: var(--shadow-hero);
  transform: rotate(-10deg);
}

.phone-shell::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.55);
  pointer-events: none;
}

.phone-screen {
  position: relative;
  overflow: hidden;
  min-height: 605px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.88), rgba(255,255,255,.72)),
    linear-gradient(180deg, #4f9b91 0 68px, #f7f4ee 68px 100%);
  padding: 26px 18px 22px;
}

.phone-screen::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 116px;
  height: 22px;
  border-radius: 0 0 16px 16px;
  background: #111827;
}

.phone-screen__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.phone-screen__status {
  width: 38px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
}

.voice-note {
  margin: 0 0 18px auto;
  width: 220px;
  background: linear-gradient(180deg, #d9fdd3, #c0f2ca);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.voice-note__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f2c58b, #d08f5f);
  flex-shrink: 0;
}

.voice-note__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #3f3f46;
  font-size: .6875rem;
}

.voice-note__bars {
  height: 12px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, rgba(34,197,94,.25) 0 5px, rgba(34,197,94,.8) 5px 8px);
}

.chat-bubble {
  max-width: 250px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 500;
}

.chat-card {
  margin-top: 16px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 22px;
  box-shadow: var(--shadow-hero);
  padding: 18px 18px 16px;
}

.chat-card__title {
  font-size: 1.125rem;
  font-weight: 800;
  color: #14532d;
}

.chat-card__subtitle {
  margin-top: 4px;
  font-size: 1rem;
  color: #334155;
}

.chat-card__list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.chat-card__list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: .9375rem;
  color: #475569;
}

.chat-card__list strong {
  color: #0f172a;
  font-weight: 700;
  text-align: right;
}

.phone-input {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: rgba(255,255,255,.96);
  border-radius: 999px;
  padding: 13px 16px;
  border: 1px solid rgba(148,163,184,.35);
  font-size: .875rem;
  color: #94a3b8;
}

.hero-statcards {
  position: absolute;
  right: 8px;
  top: 185px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-statcard {
  min-width: 184px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 20px;
  padding: 16px 18px;
  box-shadow: var(--shadow-hero);
}

.hero-statcard span {
  display: block;
  font-size: .8125rem;
  color: #64748b;
  margin-bottom: 6px;
}

.hero-statcard strong {
  display: block;
  font-size: 1.5rem;
  color: var(--text);
  line-height: 1.1;
}

.hero-statcard--positive strong { color: var(--green-strong); }
.hero-statcard--negative strong { color: var(--red); }

@media (max-width: 1024px) {
  .phone-scene {
    min-height: 760px;
  }

  .phone-shell {
    transform: rotate(-6deg);
  }

  .hero-statcards {
    position: static;
    margin-top: 20px;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .phone-scene {
    min-height: auto;
  }

  .phone-shell {
    width: min(100%, 320px);
    transform: none;
  }

  .phone-screen {
    min-height: 570px;
  }

  .hero-statcards {
    width: 100%;
  }

  .hero-statcard {
    width: 100%;
    min-width: 0;
  }
}

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-strong);
  margin-bottom: 14px;
}

.section--story {
  padding-top: 88px;
}

.story__header,
.trust__header {
  max-width: 700px;
  margin: 0 auto 36px;
  text-align: center;
}

.story__header h2,
.trust__header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

.story__header p,
.trust__header p {
  color: var(--muted);
  font-size: 1rem;
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 768px) {
  .story__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.story-card {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.story-card__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-bg);
  color: var(--green-strong);
  font-size: .8125rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.story-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
}

.story-card p {
  color: var(--muted);
  font-size: .9375rem;
}

.reports-section {
  padding-top: 88px;
}

.reports-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

@media (min-width: 980px) {
  .reports-showcase {
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    gap: 36px;
  }
}

.reports-copy h2 {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

.reports-copy > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.reports-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 24px 0;
}

@media (min-width: 640px) {
  .reports-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.reports-point {
  position: relative;
  padding: 14px 16px 14px 40px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
}

.reports-point::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-strong);
  transform: translateY(-50%);
  box-shadow: 0 0 0 6px rgba(16,185,129,.12);
}

.reports-note {
  font-size: .875rem;
  color: var(--muted);
}

.reports-visual {
  min-width: 0;
}

.report-window {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow-hero);
  overflow: hidden;
}

.report-window__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: #eff6ff;
  border-bottom: 1px solid var(--border);
  font-size: .8125rem;
  color: #334155;
  font-weight: 600;
}

.report-window__dots {
  display: flex;
  gap: 6px;
}

.report-window__dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cbd5e1;
}

.report-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
}

@media (min-width: 768px) {
  .report-summary-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.report-stat {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
}

.report-stat span {
  display: block;
  font-size: .75rem;
  color: #64748b;
  margin-bottom: 8px;
}

.report-stat strong {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.report-stat small {
  display: block;
  color: #94a3b8;
  font-size: .75rem;
}

.report-stat--positive small {
  color: var(--green-strong);
}

.report-stat--negative small {
  color: var(--red);
}

.report-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 0 18px 18px;
}

@media (min-width: 880px) {
  .report-panels {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, .9fr);
  }
}

.report-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
  min-width: 0;
}

.report-panel__header {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}

.report-panel__header strong {
  font-size: .9375rem;
  color: var(--text);
}

.report-panel__header span {
  font-size: .75rem;
  color: #64748b;
}

.report-bars {
  height: 210px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
  padding: 12px 0 10px;
  border-bottom: 1px solid #e2e8f0;
}

.report-bar-group {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 8px;
  height: 100%;
}

.report-bar {
  display: block;
  width: 28px;
  border-radius: 12px 12px 6px 6px;
}

.report-bar--green { background: #4ade80; }
.report-bar--green-light { background: #bbf7d0; }
.report-bar--red { background: #f87171; }
.report-bar--red-light { background: #fecaca; }
.report-bar--blue { background: #38bdf8; }
.report-bar--blue-light { background: #bae6fd; }
.report-bar--amber { background: #fbbf24; }
.report-bar--amber-light { background: #fde68a; }

.report-chart-labels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 10px;
  font-size: .75rem;
  color: #64748b;
  text-align: center;
}

.report-donut-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.report-donut {
  width: 208px;
  height: 208px;
  border-radius: 50%;
  background: conic-gradient(#f87171 0 45%, #fb923c 45% 78%, #fbbf24 78% 88%, #c084fc 88% 95%, #22c55e 95% 100%);
  position: relative;
}

.report-donut::after {
  content: '';
  position: absolute;
  inset: 38px;
  background: #fff;
  border-radius: 50%;
}

.report-legend {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  font-size: .75rem;
  color: #475569;
}

.report-legend span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.legend-dot--red { background: #f87171; }
.legend-dot--orange { background: #fb923c; }
.legend-dot--amber { background: #fbbf24; }
.legend-dot--purple { background: #c084fc; }

.cards-section {
  padding-top: 88px;
}

.cards-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

@media (min-width: 1040px) {
  .cards-showcase {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: 36px;
  }
}

.cards-copy h2 {
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

.cards-copy > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.cards-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 24px 0;
}

@media (min-width: 640px) {
  .cards-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.cards-point {
  position: relative;
  padding: 14px 16px 14px 40px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--border);
  border-radius: 16px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
}

.cards-point::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2563eb;
  transform: translateY(-50%);
  box-shadow: 0 0 0 6px rgba(37,99,235,.10);
}

.cards-note {
  font-size: .875rem;
  color: var(--muted);
}

.credit-panel {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow-hero);
  padding: 24px;
}

.credit-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.credit-panel__eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #2563eb;
  margin-bottom: 8px;
}

.credit-panel__header h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.credit-panel__header p {
  font-size: .875rem;
  color: var(--muted);
}

.credit-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(251,191,36,.18);
  color: #b45309;
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
}

.credit-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

@media (min-width: 768px) {
  .credit-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.credit-metric {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
}

.credit-metric span {
  display: block;
  font-size: .75rem;
  color: #64748b;
  margin-bottom: 8px;
}

.credit-metric strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.credit-metric small {
  display: block;
  margin-top: 8px;
  font-size: .75rem;
  color: #2563eb;
}

.credit-metric--accent {
  border-color: rgba(37,99,235,.18);
  background: linear-gradient(180deg, #ffffff, #eff6ff);
}

.credit-usage-bar {
  height: 10px;
  border-radius: 999px;
  background: #dbeafe;
  overflow: hidden;
  margin: 18px 0 22px;
}

.credit-usage-bar span {
  display: block;
  width: 6.8%;
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #4ade80);
}

.credit-tabs {
  display: flex;
  gap: 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.credit-tabs__item {
  padding: 0 0 12px;
  font-size: .875rem;
  color: #64748b;
  font-weight: 600;
}

.credit-tabs__item--active {
  color: #2563eb;
  border-bottom: 2px solid #2563eb;
}

.credit-table {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.credit-table__head,
.credit-table__row {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) 90px 110px 96px;
  gap: 12px;
  padding: 14px 16px;
  align-items: center;
}

.credit-table__head {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #94a3b8;
  font-weight: 700;
  background: #f8fafc;
}

.credit-table__row {
  font-size: .875rem;
  color: var(--muted);
  border-top: 1px solid #eef2f7;
}

.credit-table__row strong {
  color: var(--text);
  text-align: right;
}

@media (max-width: 640px) {
  .credit-panel {
    padding: 20px;
  }

  .credit-panel__header {
    flex-direction: column;
  }

  .credit-table__head,
  .credit-table__row {
    grid-template-columns: minmax(0, 1.4fr) 72px 92px 72px;
    font-size: .75rem;
  }
}

/* ── Mockup card (hero direita) ───────────────────────────────── */
.mockup {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
}

.mockup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.mockup__label {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--muted);
}

.mockup__live {
  font-size: .6875rem;
  font-weight: 700;
  background: var(--green-bg);
  color: var(--green-strong);
  padding: 3px 10px;
  border-radius: 99px;
}

.mockup__balance {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
}

.mockup__rows { display: flex; flex-direction: column; gap: 12px; }

.mockup__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .875rem;
}

.mockup__row-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.mockup__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mockup__dot--green { background: var(--green); }
.mockup__dot--red   { background: var(--red); }

.mockup__amount--green { font-weight: 600; color: var(--green-strong); }
.mockup__amount--red   { font-weight: 600; color: var(--red); }

.mockup__footer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: #94a3b8;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.mockup__footer-icon { color: var(--green-strong); flex-shrink: 0; }

/* ── Benefícios ───────────────────────────────────────────────── */
.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .benefits__grid { grid-template-columns: repeat(3, 1fr); }
}

.benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.benefit-card__icon {
  flex-shrink: 0;
  background: var(--green-bg);
  border-radius: var(--radius-sm);
  padding: 10px;
  color: var(--green-strong);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card__icon svg { width: 22px; height: 22px; }

.benefit-card__title {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.benefit-card__text {
  font-size: .8125rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Pricing header ───────────────────────────────────────────── */
.pricing__header {
  text-align: center;
  margin-bottom: 56px;
}

.pricing__header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.pricing__header p {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 480px;
  margin-inline: auto;
}

/* ── Plan cards grid ──────────────────────────────────────────── */
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1120px;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .pricing__grid { grid-template-columns: repeat(2, 1fr); align-items: stretch; }
}

@media (min-width: 980px) {
  .pricing__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Plan card ────────────────────────────────────────────────── */
.plan-card {
  position: relative;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: var(--shadow-sm);
}

.plan-card--featured {
  border-color: var(--green-strong);
  border-width: 2px;
  box-shadow: 0 0 0 4px rgba(16,185,129,.08), var(--shadow-card);
}

.plan-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-strong);
  color: #fff;
  font-size: .6875rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 99px;
  letter-spacing: .04em;
  white-space: nowrap;
}

.plan-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.plan-card__description {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6;
}

.plan-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 12px;
}

.plan-card__price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
}

.plan-card__period {
  font-size: .8125rem;
  color: #94a3b8;
}

/* ── Feature list inside card ─────────────────────────────────── */
.plan-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .875rem;
  color: var(--muted);
}

.plan-card__check {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green-strong);
  width: 18px;
  height: 18px;
}

.plan-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-card__detail {
  text-align: center;
  font-size: .75rem;
  color: #94a3b8;
  transition: color var(--transition);
}
.plan-card__detail:hover { color: var(--muted); }

/* ── Comparison table (collapsible) ───────────────────────────── */
.compare { background: var(--bg-soft); padding-block: 40px; }

.details__summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  padding-block: 16px;
  list-style: none;
  transition: color var(--transition);
  user-select: none;
}
.details__summary::-webkit-details-marker { display: none; }
.details__summary:hover { color: var(--green-strong); }

.details__arrow {
  transition: transform var(--transition);
  width: 18px; height: 18px;
}
details[open] .details__arrow { transform: rotate(180deg); }

.compare__wrap {
  margin-top: 24px;
  overflow-x: auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}

.compare__table thead tr {
  border-bottom: 1px solid var(--border);
}

.compare__table th,
.compare__table td {
  padding: 14px 20px;
}

.compare__table thead th:first-child { text-align: left; color: #94a3b8; font-weight: 500; }
.compare__table thead th { text-align: center; font-weight: 600; color: var(--text); }
.compare__table thead th.col--featured { color: var(--green-strong); }
.compare__table thead th .col__sub { display: block; font-size: .75rem; font-weight: 400; color: #6ee7b7; }

.compare__table tbody tr {
  border-bottom: 1px solid #f1f5f9;
}
.compare__table tbody tr:last-child { border-bottom: none; }
.compare__table tbody td:first-child { color: var(--muted); text-align: left; }
.compare__table tbody td { text-align: center; color: var(--text); }

.compare__table tfoot tr { border-top: 2px solid var(--border); }
.compare__table tfoot td { text-align: center; padding: 16px 20px; }

.check-icon { color: var(--green-strong); width: 18px; height: 18px; display: block; margin-inline: auto; }
.cross-icon { color: #cbd5e1;             width: 18px; height: 18px; display: block; margin-inline: auto; }
.val--green  { color: var(--green-strong); font-weight: 500; }

/* ── Trust strip ──────────────────────────────────────────────── */
.trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
}

@media (min-width: 640px) {
  .trust__grid { grid-template-columns: repeat(3, 1fr); }
}

.trust-item__emoji { font-size: 2.25rem; margin-bottom: 10px; }

.trust-item__title {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.trust-item__text {
  font-size: .8125rem;
  color: var(--muted);
  line-height: 1.55;
}

.section--cta {
  padding-top: 0;
}

.cta-panel {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  border-radius: 28px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: var(--shadow-hero);
}

@media (min-width: 900px) {
  .cta-panel {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-panel h2 {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 10px;
}

.cta-panel p {
  color: rgba(255,255,255,.74);
}

.cta-panel .section-tag {
  color: #86efac;
}

.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-panel .btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,.24);
}

.cta-panel .btn--ghost:hover {
  color: #fff;
  border-color: #86efac;
}

/* ── Footer ───────────────────────────────────────────────────── */
.lp-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-block: 28px;
}

.lp-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: .8125rem;
  color: var(--muted);
}

.lp-footer__links { display: flex; gap: 20px; }
.lp-footer__links a { color: var(--muted); transition: color var(--transition); }
.lp-footer__links a:hover { color: var(--text); }

/* ── Page back-link ─────────────────────────────────────────────────── */
.page-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  color: var(--muted);
  transition: color var(--transition);
  margin-bottom: 32px;
}
.page-back:hover { color: var(--green-strong); }
.page-back svg { width: 16px; height: 16px; }

/* ── Utility ────────────────────────────────────────────────────────── */
.hidden { display: none !important; }
.text-center { text-align: center; }

/* ── Form fields ────────────────────────────────────────────────────── */
.field-label {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.field-hint {
  font-size: .75rem;
  color: var(--muted);
  margin-top: 4px;
}

.field-input {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: .9375rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}
.field-input::placeholder { color: #94a3b8; }
.field-input:focus { border-color: var(--green-strong); }

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 540px) {
  .form-grid-2 { grid-template-columns: 1fr 1fr; }
}

.form-group { display: flex; flex-direction: column; }

.form-errors {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: .875rem;
  margin-bottom: 20px;
}
.form-errors ul { padding-left: 16px; }
.form-errors li { margin-bottom: 2px; }

.form-terms {
  font-size: .75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
}
.form-terms a { color: var(--green-strong); }

/* ── Checkout layout ────────────────────────────────────────────────── */
.checkout-wrap {
  padding-block: 64px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .checkout-grid { grid-template-columns: 3fr 2fr; align-items: start; }
}

.checkout__title {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.checkout__eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green-strong);
  margin-bottom: 10px;
}

.checkout__sub {
  font-size: .875rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.checkout-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.checkout-point {
  padding-left: 18px;
  position: relative;
  font-size: .875rem;
  color: var(--muted);
}

.checkout-point::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-strong);
}

/* ── Order summary sidebar ──────────────────────────────────────────── */
.order-summary {
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 88px;
}

.order-summary__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.order-summary__lead {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.order-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .875rem;
  margin-bottom: 8px;
  color: var(--muted);
}
.order-summary__row strong { color: var(--text); font-weight: 600; }

.order-summary__divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-block: 14px;
}

.order-summary__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text);
}
.order-summary__total-price { color: var(--green-strong); }

.order-summary__note {
  margin-top: 16px;
  padding: 14px 16px;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: .8125rem;
  color: var(--muted);
  line-height: 1.55;
}

.order-features {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.order-feature {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .75rem;
  color: var(--muted);
}
.order-feature svg { color: var(--green-strong); flex-shrink: 0; width: 14px; height: 14px; }

/* ── Plan detail page ────────────────────────────────────────────────── */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 72px;
}
@media (min-width: 768px) {
  .detail-grid { grid-template-columns: 1fr 1fr; }
}

.detail__badge {
  display: inline-block;
  background: var(--green-strong);
  color: #fff;
  font-size: .6875rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 12px;
}

.detail__eyebrow {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green-strong);
  margin-bottom: 12px;
}

.detail__title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.detail__desc {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.65;
}

.detail__price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
}
.detail__price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.detail__period { font-size: .9375rem; color: #94a3b8; }

.detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.detail-callout {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.detail-callout__title {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.detail-callout__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-callout__list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: .875rem;
}

.detail-callout__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-strong);
}

.detail__section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.detail__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.detail__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9375rem;
  color: var(--muted);
}
.detail__feature-dot {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail__feature-dot svg { width: 14px; height: 14px; color: var(--green-strong); }

/* Limits table */
.limits-table {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.limits-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  font-size: .875rem;
  border-bottom: 1px solid var(--border);
}
.limits-row:last-child { border-bottom: none; }
.limits-row__label { color: var(--muted); }
.limits-row__value { font-weight: 600; color: var(--text); }
.limits-row__value--green { color: var(--green-strong); }

/* Plan compare sidebar */
.plan-compare {
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 88px;
}
.plan-compare__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.plan-compare__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.plan-compare__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition: border-color var(--transition);
  cursor: default;
}
.plan-compare__item--active {
  background: var(--green-bg);
  border-color: var(--green-strong);
}
.plan-compare__item-name {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--muted);
}
.plan-compare__item--active .plan-compare__item-name { color: var(--green-strong); font-weight: 600; }
.plan-compare__item-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
}
.plan-compare__item-price { font-weight: 700; color: var(--text); }
.plan-compare__item-tag {
  font-size: .6875rem;
  font-weight: 700;
  color: var(--green-strong);
}
.plan-compare__item-link {
  font-size: .75rem;
  color: var(--muted);
  transition: color var(--transition);
}
.plan-compare__item-link:hover { color: var(--green-strong); }
.plan-compare__cta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ── FAQ accordion ───────────────────────────────────────────────────── */
.faq { max-width: 680px; margin-inline: auto; padding-block: 72px; }
.faq__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 36px;
  color: var(--text);
}
.faq__list { display: flex; flex-direction: column; gap: 8px; }
.faq__item {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}
.faq__trigger:hover { color: var(--green-strong); }
.faq__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--muted);
  transition: transform var(--transition);
}
.faq__item--open .faq__icon { transform: rotate(180deg); }
.faq__answer {
  display: none;
  padding: 0 20px 16px;
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.65;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.faq__item--open .faq__answer { display: block; }
.faq__contact { text-align: center; margin-top: 36px; font-size: .875rem; color: var(--muted); }
.faq__contact a { color: var(--green-strong); }
.faq__contact a:hover { text-decoration: underline; }

/* ── Status / success screens ─────────────────────────────────────── */
.status-screen {
  max-width: 520px;
  margin-inline: auto;
  padding: 80px 24px;
  text-align: center;
}

.status-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.status-icon--pending  { background: #eff6ff; }
.status-icon--paid     { background: var(--green-bg); }
.status-icon--failed   { background: #fef2f2; }
.status-icon--warning  { background: #fffbeb; }

.status-icon svg { width: 40px; height: 40px; }
.status-icon--pending  svg { color: #3b82f6; }
.status-icon--paid     svg { color: var(--green-strong); }
.status-icon--failed   svg { color: #ef4444; }
.status-icon--warning  svg { color: #f59e0b; }

.status-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.status-sub {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 8px;
}

.status-note {
  font-size: .8125rem;
  color: #94a3b8;
  margin-bottom: 28px;
}

.status-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

/* Spinner */
.spinner {
  animation: lp-spin 0.8s linear infinite;
}
@keyframes lp-spin {
  to { transform: rotate(360deg); }
}

/* Bounce dots */
.bounce-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 28px;
}
.bounce-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  animation: lp-bounce 0.9s ease-in-out infinite;
}
.bounce-dot:nth-child(2) { animation-delay: .15s; }
.bounce-dot:nth-child(3) { animation-delay: .30s; }
@keyframes lp-bounce {
  0%, 80%, 100% { transform: translateY(0); }
  40%           { transform: translateY(-8px); }
}

/* Order detail card (success page) */
.order-detail {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
  text-align: left;
}
.order-detail__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .875rem;
  padding-block: 10px;
  border-bottom: 1px solid var(--border);
}
.order-detail__row:last-child { border-bottom: none; }
.order-detail__label { color: var(--muted); }
.order-detail__value { font-weight: 600; color: var(--text); }
.order-detail__value--green { color: var(--green-strong); }

/* ── Auth card (set-password) ─────────────────────────────────────── */
.auth-wrap {
  min-height: calc(100vh - 130px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
}

.auth-card__icon {
  width: 48px;
  height: 48px;
  background: var(--green-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.auth-card__icon svg { width: 24px; height: 24px; color: var(--green-strong); }

.auth-card__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}
.auth-card__sub {
  font-size: .875rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.auth-card__sub strong { color: var(--text); }

.auth-card__form { display: flex; flex-direction: column; gap: 16px; }

.auth-card__note {
  font-size: .75rem;
  color: #94a3b8;
  text-align: center;
  margin-top: 16px;
  line-height: 1.55;
}
