/* ValidraPay: estilos do site institucional.
   Tema claro por padrão, variante escura por prefers-color-scheme.
   Sem fontes externas, sem requisições a terceiros. Mobile-first. */

:root {
  color-scheme: light;

  --ink: #0B1F33;
  --text: #22354A;
  --muted: #4E5F70;
  --bg: #FFFFFF;
  --bg-alt: #F5F8FA;
  --surface: #FFFFFF;
  --surface-2: #EEF3F6;
  --line: #E3E9EE;
  --line-strong: #CAD5DE;
  --field-border: #7D8B99;    /* borda de campo de formulário: 3:1 sobre --surface e --bg-alt */

  --accent: #0E9F86;          /* decorativo (ícones, pontos, bordas) */
  --accent-strong: #08705F;   /* texto e botões sobre claro, AA 6:1 */
  --accent-hover: #065C4E;
  --accent-soft: #E3F4EF;
  --on-accent: #FFFFFF;

  --danger: #B42318;
  --danger-soft: #FDECEA;
  --warn: #D98A0B;
  --success: #08705F;
  --success-soft: #E3F4EF;

  /* selos de ícone */
  --b-teal-bg: #E3F4EF;  --b-teal-fg: #08705F;
  --b-blue-bg: #E6EFFC;  --b-blue-fg: #1D4FB8;
  --b-green-bg: #E7F6E9; --b-green-fg: #1D6B2C;
  --b-amber-bg: #FDF1DC; --b-amber-fg: #8A5300;
  --b-coral-bg: #FDE9E5; --b-coral-fg: #A93A22;
  --b-ink-bg: #E8EDF2;   --b-ink-fg: #0B1F33;

  --inverse-bg: #0B1F33;
  --inverse-surface: #11293F;
  --inverse-text: #E6EDF3;
  --inverse-muted: #B8C6D3;
  --inverse-accent: #5EE0C5;

  --focus: #1C64F2;
  --shadow-sm: 0 1px 2px rgba(11, 31, 51, .05), 0 1px 1px rgba(11, 31, 51, .03);
  --shadow-card: 0 1px 2px rgba(11, 31, 51, .04), 0 8px 24px -14px rgba(11, 31, 51, .16);
  --shadow-md: 0 14px 36px -16px rgba(11, 31, 51, .22), 0 2px 6px rgba(11, 31, 51, .05);
  --radius: 18px;
  --radius-sm: 10px;

  --gutter: 16px;
  --maxw: 1160px;

  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;

  /* ilustração */
  --i-phone: #0B1F33;
  --i-screen: #F1F5F8;
  --i-head: #FFFFFF;
  --i-in: #FFFFFF;
  --i-out: #D5F1E9;
  --i-card: #FFFFFF;
  --i-qr: #0B1F33;
  --i-float: #FFFFFF;
  --i-shadow: rgba(11, 31, 51, .10);
  --i-glow: #E3F4EF;
  --i-glow-2: #E6EFFC;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;

    --ink: #F2F6F9;
    --text: #D9E2EA;
    --muted: #A7B6C4;
    --bg: #07121E;
    --bg-alt: #0A1826;
    --surface: #0E1D2E;
    --surface-2: #0A1826;
    --line: #1C3147;
    --line-strong: #2A4460;
    --field-border: #5A7896;

    --accent: #3DD6B8;
    --accent-strong: #3DD6B8;
    --accent-hover: #6BE3CB;
    --accent-soft: #0F3A33;
    --on-accent: #06231D;

    --danger: #FF8A80;
    --danger-soft: #3A1614;
    --warn: #F5B544;
    --success: #5EE0C5;
    --success-soft: #0F3A33;

    --b-teal-bg: #0F3A33;  --b-teal-fg: #5EE0C5;
    --b-blue-bg: #13294A;  --b-blue-fg: #8AB6FF;
    --b-green-bg: #133A20; --b-green-fg: #7FDB93;
    --b-amber-bg: #3A2A0E; --b-amber-fg: #F5C46B;
    --b-coral-bg: #3E1B14; --b-coral-fg: #FF9C88;
    --b-ink-bg: #1B3148;   --b-ink-fg: #E6EDF3;

    --inverse-bg: #0E2236;
    --inverse-surface: #132C45;
    --inverse-text: #E6EDF3;
    --inverse-muted: #B8C6D3;
    --inverse-accent: #5EE0C5;

    --focus: #7AB2FF;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
    --shadow-card: 0 1px 2px rgba(0, 0, 0, .35);
    --shadow-md: 0 14px 34px -14px rgba(0, 0, 0, .7);

    --i-phone: #1B3148;
    --i-screen: #0A1624;
    --i-head: #10233A;
    --i-in: #13263A;
    --i-out: #0F3A33;
    --i-card: #13263A;
    --i-qr: #E6EDF3;
    --i-float: #13263A;
    --i-shadow: rgba(0, 0, 0, .35);
    --i-glow: #0C2A2A;
    --i-glow-2: #0E1F36;
  }
}

/* ---------- base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

[hidden] { display: none !important; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: 84px;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -.015em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.25rem, 1.3rem + 4.2vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.03;
}

h2 {
  font-size: clamp(1.75rem, 1.2rem + 2.4vw, 2.875rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
}

h3 { font-size: 1.125rem; font-weight: 700; }

p { margin: 0 0 1em; }

a {
  color: var(--accent-strong);
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}
a:hover { color: var(--accent-hover); }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

ul, ol { padding: 0; margin: 0; }

.container {
  width: 100%;
  max-width: calc(var(--maxw) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-narrow { max-width: calc(820px + 2 * var(--gutter)); }

@media (min-width: 768px) { :root { --gutter: 28px; } }
@media (min-width: 1200px) { :root { --gutter: 40px; } }

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.skip-link:focus { top: 12px; }

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ---------- botões ---------- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  min-height: 44px;
  padding: .7em 1.2em;
  border: 1.5px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font: inherit;
  font-weight: 650;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.btn:hover { color: var(--btn-fg); }
.btn-primary {
  --btn-bg: var(--accent-strong);
  --btn-fg: var(--on-accent);
  box-shadow: 0 8px 20px -10px rgba(8, 112, 95, .65);
}
.btn-primary:hover { --btn-bg: var(--accent-hover); }
.btn-ghost { border-color: var(--line-strong); --btn-bg: var(--surface); --btn-fg: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-light { --btn-bg: #FFFFFF; --btn-fg: #0B1F33; }
.btn-light:hover { --btn-bg: #E3F4EF; }
.btn-outline-light { border-color: rgba(255, 255, 255, .55); --btn-fg: #FFFFFF; }
.btn-outline-light:hover { border-color: #FFFFFF; background: rgba(255, 255, 255, .08); }
.btn-sm { min-height: 40px; padding: .5em 1em; font-size: .9375rem; }
.btn-lg { min-height: 52px; padding: .85em 1.5em; font-size: 1.0625rem; }
.btn-block { width: 100%; }
.btn-icon { width: 20px; height: 20px; flex-shrink: 0; }

@media (prefers-reduced-motion: no-preference) {
  .btn:hover { transform: translateY(-1px); }
  .btn:active { transform: translateY(0); }
}

.btn[disabled],
.btn[aria-disabled="true"] { cursor: progress; opacity: .8; transform: none; }

.btn-spinner {
  display: none;
  width: 1.05em;
  height: 1.05em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
}
.is-loading .btn-spinner { display: inline-block; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .is-loading .btn-spinner { animation-duration: 2.4s; }
}

.only-narrow { display: inline; }
.only-wide { display: none; }
@media (min-width: 560px) {
  .only-narrow { display: none; }
  .only-wide { display: inline; }
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  backdrop-filter: saturate(160%) blur(12px);
}
@supports not (background: color-mix(in srgb, red 50%, blue)) {
  .site-header { background: var(--bg); }
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 68px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1875rem;
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.wordmark:hover { color: var(--ink); }
.wordmark-text span { color: var(--accent-strong); }
.mark-bg { fill: #0B1F33; }
.mark-v { stroke: #3DD6B8; }
@media (prefers-color-scheme: dark) {
  .mark-bg { fill: #13304A; }
}

.header-actions { display: flex; align-items: center; gap: 8px; }

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle svg { grid-area: 1 / 1; }
.nav-toggle-close { display: none; }
.nav-open .nav-toggle-open { display: none; }
.nav-open .nav-toggle-close { display: block; }

/* menu no celular: painel abaixo do cabeçalho, aberto pelo botão (app.js).
   Sem JavaScript (sem a classe .js no <html>), os links ficam visíveis numa linha abaixo da marca. */
html:not(.js) .header-inner { flex-wrap: wrap; }
html:not(.js) .main-nav { order: 3; flex-basis: 100%; padding-bottom: 8px; }
html:not(.js) .main-nav ul { display: flex; flex-wrap: wrap; gap: 2px 4px; }
html:not(.js) .main-nav a { padding: 8px 10px; font-size: .9375rem; }
.js .main-nav { display: none; }
.nav-open .main-nav {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 8px var(--gutter) 16px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.main-nav ul { list-style: none; display: grid; gap: 2px; }
.main-nav a {
  display: block;
  padding: 12px 12px;
  border-radius: 10px;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}
.main-nav a:hover { background: var(--surface-2); color: var(--ink); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  html:not(.js) .header-inner { flex-wrap: nowrap; }
  .main-nav,
  .js .main-nav,
  .nav-open .main-nav,
  html:not(.js) .main-nav {
    display: block;
    position: static;
    order: 2;
    flex-basis: auto;
    padding: 0;
    margin-inline: auto;
    background: none;
    border: 0;
    box-shadow: none;
  }
  .header-actions { order: 3; }
  .main-nav ul { display: flex; gap: 4px; }
  .main-nav a {
    padding: 8px 14px;
    color: var(--muted);
    font-weight: 550;
    font-size: .9375rem;
  }
  .main-nav a:hover { color: var(--ink); }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding-block: 40px 56px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(55% 45% at 82% 18%, color-mix(in srgb, var(--accent) 13%, transparent), transparent 70%),
    radial-gradient(40% 35% at 8% 90%, color-mix(in srgb, #3B82F6 7%, transparent), transparent 70%);
}

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero { padding-block: 72px 88px; }
  .hero-grid { grid-template-columns: 1.08fr .92fr; gap: 56px; }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px 14px 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-size: .8125rem;
  font-weight: 600;
  box-shadow: var(--shadow-card);
}
.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent);
}

.accent-text { color: var(--accent-strong); }

.lead {
  font-size: clamp(1.0625rem, 1rem + .35vw, 1.25rem);
  color: var(--muted);
  max-width: 36em;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-actions .btn { flex: 1 1 100%; }
@media (min-width: 480px) {
  .hero-actions .btn { flex: 0 0 auto; }
}

.hero-points,
.checks { list-style: none; display: grid; gap: 10px; margin: 0; }
.hero-points li,
.checks li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
}
.hero-points li { font-weight: 600; font-size: .9375rem; }
.hero-points li::before,
.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .2em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M6 10.3l2.6 2.6L14.2 7' fill='none' stroke='%2308705F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 20px 20px no-repeat,
    var(--accent-soft);
}
@media (prefers-color-scheme: dark) {
  .hero-points li::before,
  .checks li::before {
    background:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M6 10.3l2.6 2.6L14.2 7' fill='none' stroke='%235EE0C5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 20px 20px no-repeat,
      var(--accent-soft);
  }
}
@media (min-width: 560px) {
  .hero-points { display: flex; flex-wrap: wrap; gap: 8px 22px; }
}
.checks strong { color: var(--ink); }

.fine { font-size: .875rem; color: var(--muted); margin: 0; }
.art-caption { margin-top: 10px; text-align: center; font-size: .8125rem; }

.hero-art {
  width: 100%;
  max-width: 460px;
  margin-inline: auto;
}

/* ---------- ilustração ---------- */
.chat-art { width: 100%; height: auto; }
.i-glow { fill: var(--i-glow); }
.i-glow-2 { fill: var(--i-glow-2); }
.i-phone { fill: var(--i-phone); }
.i-screen { fill: var(--i-screen); }
.i-head { fill: var(--i-head); }
.i-in { fill: var(--i-in); stroke: var(--line); }
.i-out { fill: var(--i-out); }
.i-card { fill: var(--i-card); stroke: var(--line); }
.i-ok { fill: var(--i-in); stroke: var(--accent); stroke-width: 1.5; }
.i-qr { fill: var(--i-qr); }
.i-btn { fill: var(--accent-strong); }
.i-accent { fill: var(--accent-strong); }
.i-eye { fill: #FFFFFF; }
.i-eye-line { stroke: #FFFFFF; }
.i-check { stroke: #FFFFFF; }
.i-online { fill: #22C55E; }
.i-float { fill: var(--i-float); stroke: var(--line); }
.i-shadow { fill: var(--i-shadow); }
.i-t { font-family: var(--font); font-size: 14px; fill: var(--text); }
.i-t-sm { font-size: 12.5px; }
.i-t-lg { font-size: 24px; letter-spacing: -.02em; }
.i-t-ink { fill: var(--ink); }
.i-t-strong { fill: var(--ink); font-weight: 700; }
.i-t-muted { fill: var(--muted); }
.i-t-accent { fill: var(--accent-strong); font-weight: 650; }
.i-btn-t { fill: var(--on-accent); font-weight: 650; font-size: 13.5px; }
@media (prefers-color-scheme: dark) {
  .i-accent, .i-btn { fill: #12806C; }
  .i-eye, .i-check { fill: #FFFFFF; }
  .i-btn-t { fill: #FFFFFF; }
}

/* ---------- faixa "feito para quem vende" ---------- */
.audience {
  padding-block: 8px 48px;
  text-align: center;
}
.audience-title {
  margin: 0 0 18px;
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--muted);
}
.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-size: .9375rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.chip svg { width: 18px; height: 18px; color: var(--accent-strong); flex-shrink: 0; }

/* ---------- seções ---------- */
.section { padding-block: clamp(64px, 3.5rem + 3vw, 112px); }
.section-tight { padding-block: clamp(40px, 2rem + 2vw, 72px); }
.section-alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
  margin: 0 auto clamp(36px, 4vw, 56px);
  text-align: center;
}
.eyebrow {
  margin-bottom: 12px;
  color: var(--accent-strong);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.section-lead { font-size: 1.0625rem; color: var(--muted); margin: 0; }
.section-head .section-lead { margin-inline: auto; max-width: 40em; }

.icon {
  width: 24px;
  height: 24px;
  color: var(--accent-strong);
  flex-shrink: 0;
}

.note {
  margin: 24px 0 0;
  font-size: .875rem;
  color: var(--muted);
}
.note-center { text-align: center; max-width: 46em; margin-inline: auto; }

/* selo de ícone */
.badge {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  flex-shrink: 0;
}
.badge svg { width: 24px; height: 24px; }
.badge-lg { width: 60px; height: 60px; border-radius: 18px; }
.badge-lg svg { width: 28px; height: 28px; }
.badge-teal { background: var(--b-teal-bg); color: var(--b-teal-fg); }
.badge-blue { background: var(--b-blue-bg); color: var(--b-blue-fg); }
.badge-green { background: var(--b-green-bg); color: var(--b-green-fg); }
.badge-amber { background: var(--b-amber-bg); color: var(--b-amber-fg); }
.badge-coral { background: var(--b-coral-bg); color: var(--b-coral-fg); }
.badge-ink { background: var(--b-ink-bg); color: var(--b-ink-fg); }

/* etiquetas de status */
.tags { margin: 16px 0 0; }
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.5;
  white-space: nowrap;
}
.tag-soon { background: var(--b-amber-bg); color: var(--b-amber-fg); }
.tag-launch { background: var(--b-teal-bg); color: var(--b-teal-fg); }

/* ---------- recursos ---------- */
.features {
  list-style: none;
  display: grid;
  gap: 16px;
}
@media (min-width: 680px) { .features { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1020px) { .features { grid-template-columns: repeat(3, 1fr); } }

.feature {
  padding: 26px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.feature .badge { margin-bottom: 20px; }
.feature h3 { font-size: 1.125rem; }
.feature p { color: var(--muted); font-size: .96875rem; }
.feature > p:last-child,
.feature .tags { margin-bottom: 0; }

.feature-featured {
  display: grid;
  gap: 28px;
  grid-column: 1 / -1;
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
}
.feature-featured h3 { font-size: clamp(1.375rem, 1.15rem + 1vw, 1.75rem); }
.feature-featured .checks { margin-top: 4px; }
@media (min-width: 960px) {
  .feature-featured { grid-template-columns: 1.15fr .85fr; align-items: center; gap: 48px; padding: 40px; }
}

/* painel de saldo (ilustração) */
.bal {
  padding: 20px;
  border-radius: 16px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
}
.bal-title { margin: 0 0 12px; font-size: .875rem; font-weight: 700; color: var(--ink); }
.bal-title span { font-weight: 400; color: var(--muted); }
.bal-rows { margin: 0; display: grid; gap: 8px; }
.bal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: .875rem;
}
.bal-row dt { display: flex; align-items: center; gap: 8px; color: var(--muted); min-width: 0; }
.bal-row dt .dot { flex: none; width: 10px; height: 10px; }
.bal-row dd { margin: 0; font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; white-space: nowrap; }
.bal-main { padding: 14px 12px; border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
.bal-main dt { color: var(--ink); font-weight: 600; }
.bal-main dd { font-size: 1.25rem; color: var(--accent-strong); }
.bal-btn {
  display: block;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent-strong);
  color: var(--on-accent);
  font-weight: 700;
  font-size: .9375rem;
  text-align: center;
}
.bal-dest { margin: 10px 0 0; font-size: .8125rem; color: var(--muted); text-align: center; }
.bal-caption { margin: 12px 0 0; font-size: .75rem; color: var(--muted); text-align: center; }
.dot { width: 12px; height: 12px; border-radius: 50%; display: block; }
.dot-bad { background: var(--danger); }
.dot-warn { background: var(--warn); }
.dot-info { background: var(--b-blue-fg); }
.dot-ok { background: var(--accent); }

/* compromissos em números */
.stats {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: clamp(40px, 5vw, 64px);
}
@media (min-width: 720px) { .stats { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.stat {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  text-align: center;
  color: var(--muted);
  font-size: .9375rem;
  line-height: 1.45;
}
.stat-value {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: clamp(2.25rem, 1.8rem + 1.6vw, 3rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05;
}
.stats + .note { text-align: center; }

/* ---------- tarifa ---------- */
.price-card {
  max-width: 720px;
  margin-inline: auto;
  padding: 28px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
@media (min-width: 560px) { .price-card { padding: 44px 40px; } }
.price-pending .badge { margin: 0 auto 20px; }
.price-pending h3 { font-size: clamp(1.375rem, 1.15rem + 1vw, 1.75rem); }
.price-pending > p { color: var(--muted); max-width: 34em; margin-inline: auto; }
.checks-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin: 8px 0 28px;
  text-align: left;
}
.checks-inline li { font-weight: 600; font-size: .9375rem; }
.price-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.price-actions .btn { flex: 1 1 100%; }
@media (min-width: 480px) { .price-actions .btn { flex: 0 0 auto; } }

.price-tag { color: var(--muted); margin-bottom: 24px; }
.price-tag strong { color: var(--ink); font-size: 1.25rem; }

.calc {
  margin: 0 auto 28px;
  max-width: 480px;
  text-align: left;
}
.calc-title { font-size: 1.0625rem; margin-bottom: 16px; }
.calc label { font-weight: 650; color: var(--muted); font-size: .9375rem; }
.calc-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 16px;
  border: 1.5px solid var(--field-border);
  border-radius: 14px;
  background: var(--surface);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.calc-input:focus-within {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--focus) 30%, transparent);
}
.calc-input span { color: var(--muted); font-size: 1.5rem; font-weight: 700; }
.calc-input input[type="text"] {
  flex: 1;
  min-width: 0;
  width: auto;
  min-height: 56px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.calc-input input:focus,
.calc-input input:focus-visible { outline: none; box-shadow: none; }
.calc-presets { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.chip-btn {
  min-height: 40px;
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
}
.chip-btn:hover { border-color: var(--accent-strong); color: var(--accent-strong); }
.calc-arrow { width: 24px; height: 24px; margin: 18px auto; color: var(--muted); }
.calc-result { margin: 0 0 12px; display: grid; gap: 10px; }
.calc-result div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
}
.calc-result dt { color: var(--muted); font-weight: 600; font-size: .9375rem; }
.calc-result div { flex-wrap: wrap; }
.calc-result dd { margin: 0 0 0 auto; color: var(--ink); font-weight: 700; font-variant-numeric: tabular-nums; text-align: right; white-space: nowrap; }
.calc-result .calc-total { background: var(--accent-soft); border-color: color-mix(in srgb, var(--accent) 40%, transparent); }
.calc-result .calc-total dd { font-size: clamp(1.125rem, .8rem + 2.2vw, 1.5rem); font-weight: 800; letter-spacing: -.02em; }

/* ---------- produtos ---------- */
.solutions {
  display: grid;
  gap: 32px;
  align-items: center;
}
@media (min-width: 960px) { .solutions { grid-template-columns: 1fr 1fr; gap: 64px; } }
.solutions-copy .section-lead { margin-bottom: 28px; }
.solution-list {
  list-style: none;
  display: grid;
  gap: 10px;
}
.solution-list li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  padding: 16px 18px 16px 56px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  color: var(--ink);
  font-weight: 650;
}
.solution-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M6 10.3l2.6 2.6L14.2 7' fill='none' stroke='%23FFFFFF' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 20px 20px no-repeat,
    var(--accent-strong);
}
@media (prefers-color-scheme: dark) {
  .solution-list li::before {
    background:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M6 10.3l2.6 2.6L14.2 7' fill='none' stroke='%2306231D' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 20px 20px no-repeat,
      var(--accent-strong);
  }
}
.solution-name { flex: 1 1 auto; min-width: 0; }

/* ---------- como funciona ---------- */
.steps {
  list-style: none;
  display: grid;
  gap: 0;
  position: relative;
}
.step {
  position: relative;
  padding: 0 0 28px 60px;
}
.step:last-child { padding-bottom: 0; }
.step::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 44px;
  bottom: 4px;
  width: 2px;
  background: var(--line-strong);
}
.step:last-child::before { display: none; }
.step-num {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent-strong);
  color: var(--on-accent);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.step h3 { margin-top: 8px; }
.step p { margin: 0; color: var(--muted); }

@media (min-width: 960px) {
  .steps { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .step {
    padding: 28px 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
  }
  .step:last-child { padding-bottom: 28px; }
  .step::before { display: none; }
  .step h3 { margin-top: 20px; }
  .step-num { position: static; }
}

/* ---------- premiações (placa de parede + linha de marcos) ---------- */
.head-tag { margin: -4px 0 14px; }
.recognition {
  display: grid;
  gap: 32px;
  align-items: center;
  max-width: 980px;
  margin-inline: auto;
}
@media (min-width: 900px) { .recognition { grid-template-columns: minmax(0, 11fr) minmax(0, 9fr); gap: 56px; } }
.wall-plaque { display: block; width: 100%; max-width: 440px; height: auto; margin-inline: auto; }
.wp-shadow { fill: var(--i-shadow); }
.wp-plate { fill: #0B1F33; }
.wp-frame { fill: none; stroke: #2F6F66; stroke-width: 1.5; }
.wp-screw { fill: #3A5878; }
.wp-mark { fill: #13304A; }
.wp-v { fill: none; stroke: #3DD6B8; stroke-width: 6; stroke-linecap: round; stroke-linejoin: round; }
.wp-kicker { font-family: var(--font); font-size: 11px; font-weight: 700; letter-spacing: .14em; fill: #5EE0C5; }
.wp-title { font-family: var(--font); font-size: 26px; font-weight: 800; letter-spacing: -.02em; fill: #FFFFFF; }
.wp-rule { fill: none; stroke: #2A4460; stroke-width: 1.5; }
.wp-small { font-family: var(--font); font-size: 12px; font-weight: 600; fill: #B8C6D3; }
@media (prefers-color-scheme: dark) {
  .wp-plate { fill: #13304A; }
  .wp-mark { fill: #0B1F33; }
  .wp-rule { stroke: #3A5878; }
}

.milestones { list-style: none; margin: 0; padding: 0; }
.milestone { position: relative; padding: 0 0 24px 44px; }
.milestone::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 28px;
  bottom: 2px;
  width: 2px;
  border-radius: 2px;
  background: var(--line-strong);
}
.milestone:last-child { padding-bottom: 0; }
.milestone:last-child::before { display: none; }
.milestone-dot {
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent-strong);
}
.milestone-dot::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.milestone h3 { font-size: 1.0625rem; margin: 0 0 .2em; }
.milestone p { margin: 0; color: var(--muted); font-size: .9375rem; line-height: 1.45; }

/* ---------- o que não fazemos ---------- */
.section-inverse {
  background: var(--inverse-bg);
  color: var(--inverse-text);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section-inverse::before {
  content: "";
  position: absolute;
  inset: auto -20% -60% auto;
  z-index: -1;
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(61, 214, 184, .16), transparent);
}
.section-inverse h2,
.section-inverse h3 { color: #FFFFFF; }
.section-inverse .eyebrow { color: var(--inverse-accent); }
.section-inverse .section-lead { color: var(--inverse-muted); }
.section-inverse a { color: var(--inverse-accent); }
.section-inverse a:hover { color: #FFFFFF; }
.section-inverse :focus-visible { outline-color: #FFFFFF; }

.refuse-grid {
  list-style: none;
  display: grid;
  gap: 16px;
}
@media (min-width: 760px) { .refuse-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }

.refuse {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--inverse-surface);
  border: 1px solid rgba(255, 255, 255, .08);
}
.refuse .icon { color: #FF9C94; margin-top: 2px; }
.refuse h3 { font-size: 1.0625rem; }
.refuse p { margin: 0; color: var(--inverse-muted); }

.inverse-note {
  margin: 28px auto 0;
  padding-left: 16px;
  border-left: 3px solid var(--inverse-accent);
  color: var(--inverse-text);
  max-width: 760px;
}

/* ---------- migração ---------- */
.migrate {
  display: grid;
  gap: 28px;
  padding: 28px 22px;
  background: linear-gradient(135deg, var(--accent-soft), var(--surface) 70%);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line));
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}
@media (min-width: 900px) {
  .migrate { grid-template-columns: 1.1fr .9fr; align-items: center; gap: 56px; padding: 48px; }
}
.migrate h2 { margin-bottom: .4em; }
.migrate-side { display: grid; gap: 20px; justify-items: start; }
.migrate-side .btn { width: 100%; }
@media (min-width: 480px) { .migrate-side .btn { width: auto; } }
.migrate-side .fine { margin-top: -8px; }

/* ---------- faq ---------- */
.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: border-color .15s ease;
}
.faq details[open] { border-color: var(--line-strong); box-shadow: var(--shadow-card); }
.faq summary {
  position: relative;
  display: block;
  padding: 18px 20px 18px 60px;
  color: var(--ink);
  font-weight: 650;
  font-size: 1.0625rem;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
  border-radius: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  width: 26px;
  height: 26px;
  margin-top: -13px;
  border-radius: 8px;
  background:
    linear-gradient(var(--accent-strong), var(--accent-strong)) center / 12px 2px no-repeat,
    linear-gradient(var(--accent-strong), var(--accent-strong)) center / 2px 12px no-repeat,
    var(--accent-soft);
  transition: transform .2s ease;
}
.faq details[open] summary::before {
  background:
    linear-gradient(var(--accent-strong), var(--accent-strong)) center / 12px 2px no-repeat,
    var(--accent-soft);
  transform: rotate(180deg);
}
.faq summary:hover { color: var(--accent-strong); }
.faq-body { padding: 0 20px 20px 60px; color: var(--muted); }
.faq-body p { margin: 0; }
@media (max-width: 420px) {
  .faq summary { padding-left: 54px; }
  .faq summary::before { left: 16px; }
  .faq-body { padding-left: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .faq summary::before, .faq details { transition: none; }
}

/* ---------- chamada final ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 40px 22px;
  border-radius: 28px;
  background: linear-gradient(135deg, #065C4E, #0B1F33 85%);
  color: #E6EDF3;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -40% -10% auto auto;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(94, 224, 197, .28), transparent);
}
@media (min-width: 720px) { .cta-band { padding: 64px 48px; } }
.cta-band h2 { color: #FFFFFF; max-width: 20em; margin-inline: auto; }
.cta-band p { color: #C9D6E2; max-width: 36em; margin: 0 auto 28px; font-size: 1.0625rem; }
.cta-band :focus-visible { outline-color: #FFFFFF; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.cta-actions .btn { flex: 1 1 100%; }
@media (min-width: 480px) { .cta-actions .btn { flex: 0 0 auto; } }

/* ---------- lista de espera ---------- */
.waitlist-grid {
  display: grid;
  gap: 32px;
  align-items: start;
}
@media (min-width: 960px) {
  .waitlist-grid { grid-template-columns: .9fr 1.1fr; gap: 64px; }
  .waitlist-copy { position: sticky; top: 100px; }
}
.waitlist-copy .section-lead { margin-bottom: 24px; }

.form-card {
  padding: 24px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}
@media (min-width: 560px) { .form-card { padding: 32px; } }

.form-hint-top { font-size: .875rem; color: var(--muted); margin-bottom: 20px; }

.field { margin-bottom: 18px; min-width: 0; }
.field-row { display: grid; gap: 0; }
@media (min-width: 640px) {
  .field-row { grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
  .field-row label { min-height: 2.9em; }
}

label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 600;
  font-size: .9375rem;
}
.optional { color: var(--muted); font-weight: 500; }

input[type="text"],
input[type="email"],
input[type="tel"],
select {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1.5px solid var(--field-border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 1rem; /* evita zoom no iOS */
  transition: border-color .15s ease, box-shadow .15s ease;
}
input::placeholder { color: var(--muted); opacity: 1; }
select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 7.5l5 5 5-5' fill='none' stroke='%234A5B6C' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  text-overflow: ellipsis;
}
@media (prefers-color-scheme: dark) {
  select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 7.5l5 5 5-5' fill='none' stroke='%23A7B6C4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }
}
input:hover, select:hover { border-color: var(--muted); }
input:focus-visible, select:focus-visible {
  outline: none;
  border-color: var(--focus);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--focus) 30%, transparent);
}
input[type="checkbox"]:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  box-shadow: none;
}
[aria-invalid="true"] { border-color: var(--danger) !important; }
[aria-invalid="true"]:focus-visible { box-shadow: 0 0 0 3px color-mix(in srgb, var(--danger) 25%, transparent); }

.field-hint { margin: 6px 0 0; font-size: .8125rem; color: var(--muted); }
.field-error {
  margin: 6px 0 0;
  color: var(--danger);
  font-size: .875rem;
  font-weight: 600;
}
.field-error::before { content: "! "; content: "! " / ""; font-weight: 800; }

.field-check {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 4px 12px;
  align-items: start;
  margin-top: 6px;
}
.field-check input {
  width: 22px;
  height: 22px;
  margin: 2px 0 0;
  accent-color: var(--accent-strong);
  cursor: pointer;
}
.field-check label {
  margin: 0;
  font-weight: 450;
  font-size: .9375rem;
  color: var(--text);
  line-height: 1.5;
}
.field-check .field-error { grid-column: 2; margin-top: 0; }
.field-check input[aria-invalid="true"] { outline: 2px solid var(--danger); outline-offset: 2px; }
.field-check input[aria-invalid="true"]:focus-visible { outline: 3px solid var(--focus); box-shadow: none; }

/* honeypot: fora da tela, não apenas escondido */
.hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.waitlist-form { position: relative; }

/* vazio continua na árvore de acessibilidade (região viva), só sem espaço visual */
.form-status:empty { padding: 0; border: 0; margin: 0; }
.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: .9375rem;
  border: 1px solid var(--line);
  background: var(--surface);
}
.form-status:focus { outline: none; }
.form-status:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }
.form-status p { margin: 0; }
.form-status p + p { margin-top: 6px; }
.form-status strong { color: var(--ink); }
.form-status.is-success { background: var(--success-soft); border-color: color-mix(in srgb, var(--success) 45%, transparent); }
.form-status.is-error { background: var(--danger-soft); border-color: color-mix(in srgb, var(--danger) 45%, transparent); }
.form-status.is-info { background: var(--surface-2); }

.form-noscript,
.form-offline {
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--surface-2);
  font-size: .9375rem;
}

.form-done .field,
.form-done .field-row,
.form-done .form-hint-top,
.form-done #waitlist-submit { display: none; }
.form-done .form-status { margin-top: 0; }
.form-done .form-offline { display: none; }

.form-status a,
.form-noscript a,
.form-offline a,
.doc a { overflow-wrap: anywhere; }

/* ---------- rodapé ---------- */
.site-footer {
  padding-block: 56px 32px;
  border-top: 1px solid var(--line);
  background: var(--bg);
  font-size: .9375rem;
}
.footer-top {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.footer-brand { grid-column: 1 / -1; }
@media (min-width: 860px) {
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: auto; }
}
.footer-tagline { margin: 12px 0 0; color: var(--muted); }
.footer-title {
  margin: 0 0 14px;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { color: var(--muted); text-decoration: none; font-weight: 500; overflow-wrap: anywhere; }
.footer-col a:hover { color: var(--accent-strong); text-decoration: underline; }
.footer-col a[aria-current="page"] { color: var(--ink); font-weight: 650; }
.footer-legal {
  margin: 40px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .8125rem;
  line-height: 1.6;
  max-width: 900px;
}
.footer-copy { margin: 12px 0 0; color: var(--muted); font-size: .8125rem; }

/* ---------- páginas de texto (privacidade, KYC, 404) ---------- */
.doc {
  padding-block: 48px 80px;
}
.doc-inner { max-width: 760px; }
.doc h1 { font-size: clamp(2rem, 1.5rem + 2vw, 2.75rem); margin-bottom: .4em; }
.doc h2 {
  font-size: 1.375rem;
  margin-top: 2.2em;
  padding-top: .2em;
}
.doc p, .doc li { color: var(--text); }
.doc ul, .doc ol { padding-left: 1.3em; margin: 0 0 1em; }
.doc li { margin-bottom: .45em; }
.doc-meta { color: var(--muted); font-size: .9375rem; }
.doc-back { display: inline-block; margin-bottom: 24px; font-weight: 600; }
.doc-box {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-alt);
}
.doc-box p:last-child { margin: 0; }
.doc table { width: 100%; border-collapse: collapse; margin: 0 0 1em; font-size: .9375rem; }
.doc th, .doc td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.doc th { color: var(--ink); font-weight: 650; }
.table-wrap { overflow-x: auto; }

.notfound {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: 64px;
}
.notfound-code {
  font-size: clamp(4rem, 3rem + 8vw, 8rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
  color: var(--accent-strong);
  margin: 0 0 12px;
}
.notfound .hero-actions { justify-content: center; }
.notfound .lead { margin-inline: auto; margin-bottom: 28px; }
