:root {
  --ink: #1c2128;
  --ink-soft: #2c3138;
  --muted: #5c6570;
  --faint: #7a8290;
  --line: #e6e8ee;
  --line-soft: #eef0f4;
  --blue: #2e63e8;
  --blue-soft: #eef2fe;
  --navy: #021f58;
  --navy-hover: #03286f;
  --paper: #f6f7fa;
  --surface: #ffffff;
  --accent: #ff8b2e;
  --font: Outfit, "Segoe UI", sans-serif;
  --header: 86px;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --ease: 200ms cubic-bezier(0.22, 1, 0.36, 1);
  --ease-slow: 420ms cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 1px 2px rgba(2, 31, 88, 0.06);
  --shadow-md: 0 8px 24px -8px rgba(2, 31, 88, 0.16);
  --shadow-lg: 0 24px 60px -20px rgba(2, 31, 88, 0.28);
  --page: min(880px, calc(100% - 48px));
  --page-wide: min(1040px, calc(100% - 48px));
  --wrap: min(1220px, calc(100% - 48px));
}

.sprites {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scroll-padding-top: var(--header);
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--surface);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 40;
  background: var(--navy);
  color: #fff;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
}
.skip:focus { top: 12px; }

/* ---------------------------------------------------------------- */
/* Header / nav                                                     */
/* ---------------------------------------------------------------- */
.mast {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.bar {
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.mark {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.mark img {
  display: block;
  height: 44px;
  width: auto;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.menu-btn span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--navy);
  transition: transform var(--ease), top var(--ease);
}
.menu-btn span:first-child { top: 16px; }
.menu-btn span:last-child { top: 26px; }
.mast.is-open .menu-btn span:first-child {
  top: 21px;
  transform: rotate(45deg);
}
.mast.is-open .menu-btn span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

nav {
  display: flex;
  align-items: center;
  gap: 0;
}
nav a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 10px 12px;
  white-space: nowrap;
  opacity: 0.78;
  transition: opacity var(--ease), color var(--ease), background var(--ease);
}
nav a:hover,
nav a[aria-current="page"] {
  opacity: 1;
  color: var(--navy);
}
nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 1.5px;
  background: var(--blue);
}
nav .nav-cta {
  display: inline-flex;
  opacity: 1;
  margin-left: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  padding: 10px 18px;
  box-shadow: var(--shadow-sm);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
nav .nav-cta::after { display: none; }
nav .nav-cta:hover,
nav .nav-cta[aria-current="page"] {
  background: var(--navy-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ---------------------------------------------------------------- */
/* Buttons                                                          */
/* ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  border: 0;
  font: 600 15px var(--font);
  padding: 13px 22px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn:hover { background: var(--navy-hover); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { background: #01163f; transform: translateY(0); }
.btn:disabled { background: #1a3a7a; cursor: default; transform: none; box-shadow: none; }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn-ghost:hover { background: var(--paper); color: var(--navy); box-shadow: inset 0 0 0 1.5px var(--navy); }

main {
  display: block;
}

/* ---------------------------------------------------------------- */
/* Reveal-on-scroll utility (progressive enhancement)                */
/* ---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease-slow), transform 700ms var(--ease-slow);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------------------------------------------------------------- */
/* Hero                                                              */
/* ---------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 56px;
  background:
    radial-gradient(1100px 520px at 82% -12%, rgba(46, 99, 232, 0.14), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(2, 31, 88, 0.08), transparent 60%),
    var(--surface);
}
.hero-wrap {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-copy .kicker { margin-bottom: 18px; }
.hero-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--navy);
}
.hero-copy p.lede {
  margin: 0 0 30px;
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--muted);
  max-width: 46ch;
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  max-width: 46ch;
}
.hero-facts strong {
  display: block;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--navy);
  letter-spacing: -0.02em;
}
.hero-facts span {
  display: block;
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--faint);
  line-height: 1.35;
}
.hero-media {
  position: relative;
  aspect-ratio: 4 / 3.1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(2, 8, 25, 0.55) 100%);
}
.hero-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  max-width: 76%;
}
.hero-badge strong { display: block; color: var(--navy); font-size: 15px; letter-spacing: -0.01em; }
.hero-badge span { display: block; margin-top: 2px; font-size: 12.5px; color: var(--muted); }

/* ---------------------------------------------------------------- */
/* Trust / client logos                                              */
/* ---------------------------------------------------------------- */
.trust {
  padding: 44px 0 56px;
  border-bottom: 1px solid var(--line);
}
.trust-wrap { width: var(--wrap); margin: 0 auto; }
.trust-label {
  text-align: center;
  margin: 0 0 28px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
}
.trust-grid img {
  display: block;
  width: 100%;
  height: 42px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter var(--ease);
}
.trust-grid img:hover { filter: grayscale(0) opacity(1); }

/* ---------------------------------------------------------------- */
/* Section shell reused across About / Pillars / Solutions / CT      */
/* ---------------------------------------------------------------- */
.section { padding: 80px 0; }
.section-alt { background: var(--paper); }
.section-wrap { width: var(--wrap); margin: 0 auto; }
.section-head {
  max-width: 62ch;
  margin: 0 0 40px;
}
.section-head .kicker { margin-bottom: 14px; }
.section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1.1;
  color: var(--navy);
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.section-head.center { max-width: 68ch; margin-left: auto; margin-right: auto; text-align: center; }

.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  margin-top: 28px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.stat-card strong {
  display: block;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.stat-card span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}
@media (max-width: 560px) {
  .stat-cards { grid-template-columns: 1fr; max-width: none; }
}

/* About (Quem somos + Histórico) */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 6 / 5;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-copy .kicker { margin-bottom: 14px; }
.about-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.15;
}
.about-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.6;
}
.about-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.about-list li {
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink);
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.about-list li:last-child { border-bottom: 1px solid var(--line); }
.about-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  transform: translateY(-2px);
}

/* Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.pillar-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.pillar-card:hover { border-color: rgba(46, 99, 232, 0.35); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pillar-card .ico {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  margin-bottom: 18px;
}
.pillar-card .ico svg { width: 22px; height: 22px; }
.pillar-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.pillar-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }

/* Stats band */
.stats-band {
  background: var(--navy);
  color: #fff;
  padding: 56px 0;
}
.stats-grid {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.stat strong {
  display: block;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.stat span {
  display: block;
  margin-top: 6px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

/* ---------------------------------------------------------------- */
/* Hub grid / hub card — shared by Soluções (home), Central Técnica  */
/* and this homepage's "O que fazemos" grid.                         */
/* ---------------------------------------------------------------- */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.hub-grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.hub-card {
  display: block;
  padding: 24px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  background: #fff;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.hub-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.hub-card .ico {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue);
  margin-bottom: 16px;
}
.hub-card .ico svg { width: 19px; height: 19px; }
.hub-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.hub-card p {
  margin: 0;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.5;
}
.hub-card .go {
  display: inline-block;
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue);
}

/* Central Técnica teaser */
.ct-teaser {
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--navy) 0%, #0a2f78 60%, #123a94 100%);
  color: #fff;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.ct-teaser::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto auto;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle, rgba(255, 139, 46, 0.22), transparent 65%);
  pointer-events: none;
}
.ct-teaser .kicker { color: #ffb27a; margin-bottom: 12px; }
.ct-teaser h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.ct-teaser p { margin: 0; color: rgba(255, 255, 255, 0.78); font-size: 15.5px; max-width: 52ch; line-height: 1.55; }
.ct-teaser .btn-ghost {
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.5);
}
.ct-teaser .btn-ghost:hover { background: rgba(255, 255, 255, 0.12); box-shadow: inset 0 0 0 1.5px #fff; }
.ct-teaser-stats {
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.ct-teaser-stats div { border-top: 1px solid rgba(255, 255, 255, 0.2); padding-top: 12px; }
.ct-teaser-stats strong { display: block; font-size: 24px; font-weight: 700; }
.ct-teaser-stats span { display: block; margin-top: 2px; font-size: 12.5px; color: rgba(255, 255, 255, 0.68); }

/* ---------------------------------------------------------------- */
/* Proposta / lead section                                           */
/* ---------------------------------------------------------------- */
.lead-section { padding: 76px 0 96px; background: var(--paper); }
.lead-grid {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.lead-copy .kicker { margin-bottom: 16px; }
.lead-copy h1,
.lead-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.1;
}
.lead-copy > p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.6;
  max-width: 44ch;
}
.lead-copy ul {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 42ch;
}
.lead-copy li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink);
}
.lead-copy li:last-child { border-bottom: 1px solid var(--line); }

.lead-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.lead-form .kicker { margin-bottom: 20px; }
.lead-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
  margin-bottom: 14px;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  font: 500 15px var(--font);
  color: var(--ink);
  border: 1px solid #d9dee8;
  border-radius: var(--radius);
  padding: 12px 14px;
  background: var(--paper);
  outline: none;
  transition: border-color var(--ease), background var(--ease);
  width: 100%;
}
.lead-form input::placeholder,
.lead-form textarea::placeholder { color: #9aa3b0; }
.lead-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' fill='none' stroke='%235c6570' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  background: #fff;
}
.lead-form textarea { resize: vertical; min-height: 72px; }
.lead-form .check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  letter-spacing: 0;
  font-size: 13px;
  line-height: 1.4;
}
.lead-form .check input {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  flex-shrink: 0;
  border: 1px solid #d9dee8;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
}
.lead-form .check input:checked {
  background: var(--navy);
  border-color: var(--navy);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='10'><path d='M1 5l3.5 3.5L11 1' fill='none' stroke='white' stroke-width='1.6'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
.lead-form .btn { margin-top: 6px; width: 100%; }
.lead-ok { margin: 14px 0 0; color: #1a7a3c; font-weight: 600; font-size: 14px; }

/* ---------------------------------------------------------------- */
/* Footer                                                            */
/* ---------------------------------------------------------------- */
.foot {
  background: #04102e;
  color: rgba(255, 255, 255, 0.86);
  padding: 64px 0 28px;
}
.foot-wrap { width: var(--wrap); margin: 0 auto; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.foot-brand img { height: 34px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1); }
.foot-brand p { margin: 0; font-size: 14px; color: rgba(255, 255, 255, 0.6); max-width: 32ch; line-height: 1.55; }
.foot-col h4 {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.foot-col a { color: rgba(255, 255, 255, 0.86); text-decoration: none; font-size: 14.5px; transition: color var(--ease); }
.foot-col a:hover { color: #fff; }
.foot-col address { font-style: normal; font-size: 14px; color: rgba(255, 255, 255, 0.6); line-height: 1.6; }
.foot-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.42);
}

/* ---------------------------------------------------------------- */
/* Generic doc / listing page shell (used by proposta-less pages)    */
/* ---------------------------------------------------------------- */
.page {
  display: grid;
  place-items: start center;
  width: 100%;
  min-height: calc(100vh - var(--header));
  line-height: 1.5;
  padding: 56px 24px 96px;
}
.page-wrap { width: var(--page); }
.page-wrap h1 {
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  color: var(--navy);
}
.page-wrap .lede {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 36px;
  max-width: 46ch;
}

.page-wrap article {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.page-wrap article:first-of-type {
  border-top: 1px solid var(--line);
}
.page-wrap article h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.page-wrap article h2 a {
  color: var(--ink);
  text-decoration: none;
  transition: color var(--ease);
}
.page-wrap article h2 a:hover { color: var(--blue); }
.page-wrap time {
  display: block;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 8px;
  font-weight: 500;
}
.page-wrap article p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 62ch;
  line-height: 1.55;
}
.more {
  display: inline-block;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity var(--ease);
}
.more:hover { opacity: 0.75; }

.sellers {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sellers li {
  display: grid;
  grid-template-columns: 1.15fr 1.45fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 12px;
  margin: 0 -12px;
  border-top: 1px solid var(--line);
  border-radius: var(--radius);
  transition: background var(--ease);
}
.sellers li:last-child { border-bottom: 1px solid var(--line); }
.sellers li:hover { background: var(--paper); }
.sellers strong {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.sellers a {
  color: var(--blue);
  text-decoration: none;
  font-size: 15px;
  transition: opacity var(--ease);
}
.sellers a:hover { opacity: 0.75; }
.sellers a.zap {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  transition: filter var(--ease);
}
.sellers a.zap:hover {
  color: #fff;
  text-decoration: none;
  opacity: 1;
  filter: brightness(1.06);
}
.sellers a.zap svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  color: #fff;
}

.page-foot {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--faint);
  letter-spacing: 0.04em;
}

.kicker {
  margin: 0 0 14px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
}

.band {
  padding: 64px 24px 80px;
  line-height: 1.5;
}
.band .page-wrap { width: var(--page-wide); margin: 0 auto; }
.band h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.4vw, 32px);
  color: var(--navy);
  letter-spacing: -0.03em;
}
.band > .page-wrap > p,
.band .intro {
  margin: 0 0 32px;
  color: var(--muted);
  max-width: 62ch;
  font-size: 17px;
  line-height: 1.55;
}

.crumb {
  margin: 0 0 20px;
  font-size: 13px;
  color: var(--faint);
}
.crumb a {
  color: var(--blue);
  text-decoration: none;
}
.crumb a:hover { text-decoration: underline; }

.prose {
  max-width: 68ch;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
}
.prose h2 {
  margin: 2em 0 12px;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.prose h3 {
  margin: 1.4em 0 8px;
  font-size: 18px;
  color: var(--navy);
}
.prose p { margin: 0 0 1em; }
.prose ul, .prose ol {
  margin: 0 0 1.2em;
  padding-left: 1.2em;
  color: var(--ink);
}
.prose li { margin: 0 0 6px; }
.prose a { color: var(--blue); }
.updated {
  font-size: 13px;
  color: var(--faint);
  margin: 0 0 24px;
}

.faq {
  margin: 36px 0 8px;
  max-width: 68ch;
}
.faq h2 { margin-bottom: 8px; }
.faq details {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 16px;
}
.faq details p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.related {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 68ch;
}
.related li {
  border-top: 1px solid var(--line);
  padding: 12px 0;
}
.related a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}
.related a:hover { color: var(--blue); }

.cta-end {
  margin: 40px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  max-width: 68ch;
}
.cta-end p { color: var(--muted); margin: 0 0 16px; line-height: 1.5; }

.page.is-doc {
  place-items: start center;
  min-height: calc(100vh - var(--header));
}

body.nav-open { overflow: hidden; }

/* ---------------------------------------------------------------- */
/* Responsive                                                        */
/* ---------------------------------------------------------------- */
@media (min-width: 1600px) {
  .bar { width: min(1600px, calc(100% - 64px)); }
}

@media (max-width: 1366px) {
  nav a { font-size: 15px; padding: 10px 10px; }
  nav a[aria-current="page"]::after { left: 10px; right: 10px; }
}

@media (max-width: 1280px) {
  nav a { font-size: 14.5px; padding: 10px 8px; }
}

@media (max-width: 1200px) {
  .menu-btn { display: block; }
  nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 20px 28px;
    gap: 0;
    max-height: calc(100vh - var(--header));
    overflow-y: auto;
  }
  .mast.is-open nav { display: flex; }
  nav a {
    font-size: 17px;
    padding: 14px 8px;
    opacity: 0.88;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  nav a[aria-current="page"]::after { display: none; }
  nav .nav-cta {
    margin: 12px 0 0;
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .bar { height: auto; min-height: var(--header); }
  .hero-wrap,
  .about-grid,
  .lead-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; aspect-ratio: 16/10; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .hub-grid,
  .hub-grid.cols-4 { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .ct-teaser { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .hero { padding: 48px 0 40px; }
  .page { padding: 40px 20px 72px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .hub-grid,
  .hub-grid.cols-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .ct-teaser { padding: 32px 24px; }
  .lead-form { padding: 26px 22px; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .sellers li {
    grid-template-columns: 1fr auto;
    padding: 16px 8px;
    gap: 10px 16px;
  }
  .sellers a:not(.zap) { grid-column: 1; }
  .sellers a.zap { width: 44px; height: 44px; }
}

@media (max-width: 560px) {
  .lead-form .row { grid-template-columns: 1fr; }
  .hero-actions .btn,
  .hero-actions .btn-ghost { width: 100%; }
  .page-wrap h1 { font-size: 28px; }
  .page-wrap article h2 { font-size: 18px; }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 430px) {
  :root { --page: calc(100% - 32px); }
  .bar { width: calc(100% - 24px); }
  .mark img { height: 38px; }
  .page { padding: 32px 16px 64px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition: none !important;
  }
}
