:root {
  color-scheme: dark;
  --bg: #0b1211;
  --bg-deep: #070c0b;
  --surface: #111a18;
  --surface-2: #17231f;
  --surface-3: #1d2e28;
  --border: #2b4039;
  --border-strong: #46645a;
  --text: #f6faf7;
  --muted: #a9bab4;
  --muted-2: #7d918a;
  --green: #36cf7f;
  --green-dark: #1b9a5a;
  --cyan: #6f9299;
  --yellow: #f0b44b;
  --red: #ef6b62;
  --radius: 8px;
  --shadow: 0 24px 72px rgba(0, 0, 0, 0.32);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    url("/assets/brand/dados-em-rota-pattern.svg") center top / 100% 480px no-repeat,
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  letter-spacing: 0;
}

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

.legal-inline-button {
  min-height: 42px;
  padding: 0 15px;
  cursor: pointer;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

.landing-page,
.content-page {
  min-height: 100vh;
  overflow: hidden;
}

.landing-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 72px;
  padding: 10px max(22px, calc((100vw - 1380px) / 2));
  border-bottom: 1px solid rgba(38, 59, 70, 0.82);
  background: rgba(5, 12, 17, 0.9);
  backdrop-filter: blur(16px);
}

.nav-brand {
  display: block;
  width: 230px;
  flex: 0 0 auto;
}

.nav-brand img,
.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.landing-nav nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.landing-nav nav a,
.hero-actions a,
.content-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.landing-nav nav a:hover,
.landing-nav nav a:focus-visible {
  color: var(--text);
}

.landing-nav nav .nav-demo {
  margin-left: 8px;
  border-color: rgba(59, 211, 116, 0.55);
  color: #aaf3c2;
}

.primary-action {
  border-color: rgba(59, 211, 116, 0.7) !important;
  background: #35c86c;
  color: #06110a !important;
  box-shadow: 0 12px 28px rgba(36, 181, 90, 0.16);
}

.primary-action:hover,
.primary-action:focus-visible {
  background: #4bd67d;
}

.secondary-action {
  border-color: var(--border-strong) !important;
  background: rgba(8, 18, 24, 0.48);
  color: var(--text) !important;
}

.secondary-action:hover,
.secondary-action:focus-visible {
  border-color: rgba(57, 190, 210, 0.56) !important;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.83fr) minmax(620px, 1.17fr);
  align-items: center;
  gap: 48px;
  width: min(1380px, calc(100vw - 44px));
  min-height: 580px;
  margin: 0 auto;
  padding: 38px 0 34px;
}

.hero::before {
  position: absolute;
  top: 20%;
  left: -140px;
  width: 360px;
  height: 230px;
  border-top: 1px solid rgba(57, 190, 210, 0.19);
  border-right: 1px solid rgba(59, 211, 116, 0.14);
  transform: skewY(-9deg);
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: 54px;
  font-weight: 900;
  line-height: 1.02;
}

.hero h1 span {
  color: var(--green);
}

.hero-copy > p:not(.hero-note) {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.hero-copy > p.hero-statement {
  max-width: 620px;
  margin-top: 18px;
  color: var(--green);
  font-size: 24px;
  font-weight: 850;
  line-height: 1.24;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions a {
  min-height: 48px;
  padding: 0 20px;
  font-size: 14px;
}

.hero-note {
  margin: 16px 0 0;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.5;
}

.product-preview {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: rgba(8, 18, 24, 0.94);
  box-shadow: var(--shadow);
}

.preview-top,
.preview-card-head,
.status-row,
.preview-table > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.preview-top {
  min-height: 42px;
  padding: 0 6px;
}

.preview-top > div {
  display: grid;
  gap: 3px;
}

.preview-top span,
.preview-card-head span,
.preview-table span {
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 800;
}

.preview-top strong {
  font-size: 16px;
}

.preview-top em {
  padding: 5px 8px;
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.preview-grid article {
  display: grid;
  gap: 8px;
  min-width: 0;
  min-height: 88px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
}

.preview-grid span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-grid strong {
  font-size: 20px;
  line-height: 1.05;
}

.preview-grid em,
.preview-table em {
  align-self: end;
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.up {
  color: var(--green) !important;
}

.warn {
  color: var(--yellow) !important;
}

.preview-analytics {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(190px, 0.75fr);
  gap: 8px;
}

.preview-line-card,
.preview-status-card,
.preview-table {
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(6, 14, 20, 0.72);
}

.preview-line-card,
.preview-status-card {
  min-height: 190px;
  padding: 12px;
}

.preview-card-head strong {
  font-size: 12px;
}

.preview-line-card svg {
  display: block;
  width: 100%;
  height: 138px;
  margin-top: 8px;
  overflow: visible;
}

.chart-grid line {
  stroke: #21343e;
  stroke-width: 1;
}

.chart-area {
  fill: url(#chartArea);
}

.chart-line {
  fill: none;
  stroke: var(--cyan);
  stroke-linejoin: round;
  stroke-width: 3;
}

.chart-points circle {
  fill: var(--bg-deep);
  stroke: var(--cyan);
  stroke-width: 3;
}

.mini-gauge {
  position: relative;
  display: grid;
  place-items: end center;
  width: 150px;
  height: 78px;
  margin: 18px auto 16px;
  overflow: hidden;
}

.mini-gauge::before {
  position: absolute;
  inset: 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: conic-gradient(from 270deg, var(--green) 0 calc(var(--value) * 0.5%), #273943 0 50%, transparent 0);
  content: "";
}

.mini-gauge::after {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: #081219;
  content: "";
}

.mini-gauge div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2px;
  padding-bottom: 2px;
  text-align: center;
}

.mini-gauge strong {
  color: var(--green);
  font-size: 20px;
}

.mini-gauge span,
.status-row span {
  color: var(--muted);
  font-size: 10px;
}

.status-row {
  min-height: 32px;
  border-top: 1px solid var(--border);
}

.status-row strong {
  color: var(--green);
  font-size: 12px;
}

.preview-table {
  overflow: hidden;
}

.preview-table > div {
  min-height: 34px;
  padding: 0 10px;
  border-top: 1px solid rgba(38, 59, 70, 0.72);
  font-size: 10px;
}

.preview-table > div:first-child {
  border-top: 0;
}

.preview-table > div > :first-child {
  min-width: 0;
  flex: 1 1 auto;
}

.preview-table > div > :not(:first-child) {
  width: 92px;
  flex: 0 0 92px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(7, 18, 24, 0.82);
}

.trust-strip article {
  display: grid;
  gap: 5px;
  min-height: 96px;
  padding: 20px max(24px, calc((100vw - 1380px) / 8));
  border-left: 1px solid var(--border);
}

.trust-strip article:first-child {
  border-left: 0;
}

.trust-strip strong {
  font-size: 14px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.problem-section,
.fit-section,
.applications-section,
.start-section,
.assurance-section,
.faq-section,
.resource-section,
.contact-section {
  width: min(1240px, calc(100vw - 44px));
  margin: 0 auto;
  padding: 82px 0;
  border-bottom: 1px solid var(--border);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(270px, 0.9fr) minmax(420px, 1.1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin: 0 0 -26px;
}

.section-heading h2,
.start-copy h2,
.contact-section h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.06;
}

.section-heading > p,
.start-copy > p,
.contact-section > div > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.compact-heading {
  grid-template-columns: minmax(360px, 0.9fr) minmax(360px, 1.1fr);
}

.problem-grid,
.assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.problem-grid article,
.assurance-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 220px;
  padding: 24px;
  border-left: 1px solid var(--border);
  background: rgba(11, 24, 31, 0.6);
}

.problem-grid article:first-child,
.assurance-grid article:first-child {
  border-left: 0;
}

.problem-grid article > span,
.application-index {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.problem-grid strong,
.assurance-grid strong {
  font-size: 18px;
}

.problem-grid p,
.assurance-grid p,
.applications-grid p,
.resource-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.fit-section {
  width: auto;
  padding-right: max(22px, calc((100vw - 1240px) / 2));
  padding-left: max(22px, calc((100vw - 1240px) / 2));
  background: #08141a;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(250px, 0.72fr);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
}

.fit-grid > * {
  min-width: 0;
  padding: 26px;
  border-left: 1px solid var(--border);
  background: rgba(13, 28, 35, 0.68);
}

.fit-grid > :first-child {
  border-left: 0;
}

.fit-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.fit-grid strong {
  display: block;
  font-size: 19px;
  line-height: 1.35;
}

.fit-grid ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.fit-grid li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.fit-grid li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--green);
  content: "";
}

.fit-grid aside {
  background: rgba(32, 26, 15, 0.4);
}

.fit-grid aside span {
  color: var(--yellow);
}

.fit-grid aside p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.applications-section {
  width: auto;
  padding-right: max(22px, calc((100vw - 1240px) / 2));
  padding-left: max(22px, calc((100vw - 1240px) / 2));
  background: #0a151c;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
}

.applications-grid article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 20px 12px;
  min-height: 260px;
  padding: 26px;
  border-left: 1px solid var(--border);
  background: var(--surface);
}

.applications-grid article:first-child {
  border-left: 0;
}

.applications-grid article > div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.applications-grid strong {
  font-size: 21px;
}

.applications-grid a {
  grid-column: 2;
  align-self: end;
  color: #9deeb7;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.applications-grid a::after {
  content: "  >";
}

.start-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(520px, 1.22fr);
  gap: 64px;
  align-items: start;
}

.start-copy ul,
.contact-section ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.start-copy li,
.contact-section li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.start-copy li::before,
.contact-section li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.process-list {
  display: grid;
  gap: 10px;
}

.process-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 6px 16px;
  min-height: 128px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(12, 24, 32, 0.62);
}

.process-list article > span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(59, 211, 116, 0.46);
  border-radius: 6px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.process-list strong {
  font-size: 18px;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.assurance-section {
  width: auto;
  padding-right: max(22px, calc((100vw - 1240px) / 2));
  padding-left: max(22px, calc((100vw - 1240px) / 2));
  background: #0a151c;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  gap: 64px;
}

.faq-section .section-heading {
  display: block;
  margin: 0;
}

.faq-section .section-heading .eyebrow {
  margin: 0 0 14px;
}

.faq-list {
  border-top: 1px solid var(--border-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;
  padding: 19px 44px 19px 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 16px;
  right: 4px;
  color: var(--green);
  font-size: 22px;
  content: "+";
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 740px;
  margin: -2px 44px 20px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.resource-grid a {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: inherit;
  text-decoration: none;
}

.resource-grid a:hover,
.resource-grid a:focus-visible {
  border-color: rgba(59, 211, 116, 0.5);
}

.resource-grid span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.resource-grid strong {
  font-size: 19px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(480px, 1.2fr);
  gap: 64px;
  align-items: start;
  border-bottom: 0;
}

.direct-email {
  display: inline-block;
  margin-top: 26px;
  color: #a4edba;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.inbound-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.inbound-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.inbound-form input,
.inbound-form select,
.inbound-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #08131a;
  color: var(--text);
  font-size: 14px;
  text-transform: none;
}

.inbound-form input,
.inbound-form select {
  height: 44px;
  padding: 0 12px;
}

.inbound-form textarea {
  min-height: 112px;
  padding: 12px;
  resize: vertical;
  line-height: 1.5;
}

.inbound-form input:focus,
.inbound-form select:focus,
.inbound-form textarea:focus {
  outline: 0;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(59, 211, 116, 0.12);
}

.inbound-form input[name="website"] {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.full-field,
.consent-field,
.inbound-form button,
.form-status {
  grid-column: 1 / -1;
}

.inbound-form .consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: none;
}

.consent-field input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
}

.consent-field a {
  color: #a4edba;
}

.inbound-form button {
  min-height: 48px;
  border: 1px solid rgba(59, 211, 116, 0.68);
  border-radius: 6px;
  background: #35c86c;
  color: #06110a;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.inbound-form button:hover {
  background: #4bd67d;
}

.inbound-form button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.form-status[data-tone="success"] {
  color: #8cf0aa;
}

.form-status[data-tone="error"] {
  color: #ff9b91;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) minmax(180px, 0.7fr) minmax(230px, 0.8fr);
  gap: 44px;
  padding: 46px max(22px, calc((100vw - 1240px) / 2)) 28px;
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
}

.site-footer > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-brand {
  width: 210px;
  max-width: 100%;
}

.site-footer p {
  max-width: 420px;
  margin: 10px 0 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.site-footer strong {
  margin-bottom: 4px;
  font-size: 13px;
}

.site-footer span,
.site-footer a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.45;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--text);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex !important;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* Public content and legal pages */
.content-hero,
.content-section,
.content-cta,
.legal-page {
  width: min(1180px, calc(100vw - 44px));
  margin: 0 auto;
}

.content-hero {
  display: grid;
  gap: 22px;
  padding: 76px 0 54px;
  border-bottom: 1px solid var(--border);
}

.content-hero-split {
  grid-template-columns: minmax(420px, 1fr) minmax(300px, 0.56fr);
  gap: 56px;
  align-items: center;
}

.content-hero-copy {
  display: grid;
  gap: 22px;
  min-width: 0;
  padding-left: 28px;
  border-left: 2px solid var(--green);
}

.content-hero-panel {
  display: grid;
  gap: 15px;
  align-content: start;
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.content-hero-panel > span {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.content-hero-panel > strong {
  font-size: 30px;
  line-height: 1.08;
}

.content-hero-panel p,
.content-section p,
.content-section li,
.content-card p,
.content-cta p,
.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.6;
}

.content-hero-panel p {
  margin: 0;
}

.content-page-links {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.content-page-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.content-page-links a::after {
  color: var(--green);
  content: ">";
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: #a4edba;
  text-decoration: none;
}

.content-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: 56px;
  line-height: 1.04;
}

.content-hero-copy > p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.content-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.content-keywords li {
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid rgba(59, 211, 116, 0.32);
  border-radius: 5px;
  color: #a4edba;
  font-size: 12px;
  font-weight: 800;
}

.content-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 58px;
  padding: 58px 0;
  border-bottom: 1px solid var(--border);
}

.content-section h2,
.content-cta h2,
.legal-page h1,
.legal-page h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.08;
}

.content-section p {
  margin: 0 0 18px;
}

.content-section ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.content-section li {
  position: relative;
  padding-left: 18px;
}

.content-section li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.content-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 200px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

a.content-card {
  color: inherit;
  text-decoration: none;
}

a.content-card:hover {
  border-color: rgba(59, 211, 116, 0.5);
}

.content-card strong {
  font-size: 18px;
}

.content-card p {
  margin: 0;
  font-size: 14px;
}

.content-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 46px 0 62px;
}

.content-cta p {
  max-width: 620px;
  margin: 10px 0 0;
}

.content-cta > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-page {
  padding: 68px 0 80px;
}

.legal-page h1 {
  font-size: 48px;
}

.legal-page h2 {
  margin-top: 42px;
  font-size: 26px;
}

@media (max-width: 1160px) {
  .landing-nav {
    align-items: flex-start;
  }

  .landing-nav nav {
    flex-wrap: wrap;
  }

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

  .hero-copy {
    max-width: 780px;
  }

  .product-preview {
    width: 100%;
  }

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

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

  .fit-grid aside {
    grid-column: 1 / -1;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .problem-grid article:nth-child(3),
  .assurance-grid article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .problem-grid article:nth-child(4),
  .assurance-grid article:nth-child(4) {
    border-top: 1px solid var(--border);
  }

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

  .applications-grid article {
    min-height: 190px;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .applications-grid article:first-child {
    border-top: 0;
  }

  .start-section,
  .faq-section,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .resource-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .resource-grid a,
  .content-card {
    min-height: 0;
  }
}

@media (max-width: 860px) {
  .landing-nav {
    position: relative;
    display: grid;
    gap: 10px;
    padding: 12px 20px;
  }

  .landing-nav nav {
    justify-content: flex-start;
  }

  .landing-nav nav a {
    min-height: 34px;
    padding: 0 9px;
    font-size: 12px;
  }

  .landing-nav nav .nav-demo {
    margin-left: 0;
  }

  .hero {
    width: min(100% - 32px, 720px);
    min-height: 0;
    padding: 46px 0 42px;
  }

  .hero h1 {
    font-size: 45px;
  }

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

  .preview-analytics {
    grid-template-columns: 1fr;
  }

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

  .trust-strip article:nth-child(3) {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .trust-strip article:nth-child(4) {
    border-top: 1px solid var(--border);
  }

  .problem-section,
  .fit-section,
  .applications-section,
  .start-section,
  .assurance-section,
  .faq-section,
  .resource-section,
  .contact-section {
    width: min(100% - 32px, 720px);
    padding: 60px 0;
  }

  .applications-section,
  .fit-section,
  .assurance-section {
    width: auto;
    padding-right: 16px;
    padding-left: 16px;
  }

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

  .fit-grid > * {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .fit-grid > :first-child {
    border-top: 0;
  }

  .section-heading,
  .compact-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading .eyebrow {
    margin: 0;
  }

  .section-heading h2,
  .start-copy h2,
  .contact-section h2 {
    font-size: 34px;
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
    padding: 42px 20px 24px;
  }

  .content-hero,
  .content-section,
  .content-cta,
  .legal-page {
    width: min(100% - 32px, 720px);
  }

  .content-hero-split,
  .content-section {
    grid-template-columns: 1fr;
  }

  .content-hero h1 {
    font-size: 44px;
  }
}

@media (max-width: 580px) {
  .landing-nav {
    display: flex;
    align-items: center;
    padding: 10px 16px;
  }

  .nav-brand {
    width: 166px;
  }

  .landing-nav nav {
    margin-left: auto;
  }

  .landing-nav nav a:not(.nav-demo) {
    display: none;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-copy > p:not(.hero-note) {
    font-size: 16px;
  }

  .hero-copy > p.hero-statement {
    font-size: 21px;
  }

  .hero-actions,
  .hero-actions a {
    width: 100%;
  }

  .preview-top {
    align-items: flex-start;
  }

  .preview-top em {
    max-width: 130px;
    white-space: normal;
  }

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

  .preview-table > div > :not(:first-child) {
    width: 66px;
    flex-basis: 66px;
  }

  .trust-strip,
  .problem-grid,
  .assurance-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip article,
  .problem-grid article,
  .assurance-grid article,
  .trust-strip article:nth-child(3),
  .assurance-grid article:nth-child(3),
  .problem-grid article:nth-child(3) {
    min-height: 0;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .trust-strip article:first-child,
  .problem-grid article:first-child,
  .assurance-grid article:first-child {
    border-top: 0;
  }

  .applications-grid article {
    grid-template-columns: 28px 1fr;
    padding: 20px;
  }

  .process-list article {
    grid-template-columns: 38px 1fr;
    padding: 18px;
  }

  .inbound-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .content-hero-copy {
    padding-left: 18px;
  }

  .content-hero h1,
  .legal-page h1 {
    font-size: 38px;
  }

  .content-cta {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
