:root {
  --accent: #1d4ed8;
  --accent-strong: #0f2f88;
  --accent-soft: #eaf2ff;
  --black: #0f172a;
  --ink: #1f2937;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--muted);
  background: var(--white);
  font-family: Inter, "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 72px;
  padding: 0 calc((100vw - min(1140px, calc(100vw - 40px))) / 2);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(226, 232, 240, 0.84);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.top-bar.is-scrolled {
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.brand img {
  width: auto;
  height: 30px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: color 0.2s ease, background 0.2s ease;
}

.menu a:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 640px;
  place-items: center;
  padding: 150px 20px 90px;
  background:
    linear-gradient(135deg, rgba(29, 78, 216, 0.08), rgba(14, 165, 233, 0) 46%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero::before,
.hero::after {
  position: absolute;
  display: block;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: 132px;
  right: max(30px, calc((100vw - 1140px) / 2));
  width: min(34vw, 420px);
  height: min(34vw, 420px);
  border: 1px solid rgba(29, 78, 216, 0.16);
  border-radius: 28px;
  transform: rotate(12deg);
}

.hero::after {
  right: max(20px, calc((100vw - 1100px) / 2));
  bottom: 62px;
  width: min(42vw, 540px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(29, 78, 216, 0.32), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 22px;
  padding: 6px 14px;
  border: 1px solid rgba(29, 78, 216, 0.18);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 18px;
  color: var(--black);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.hero p {
  width: min(760px, 100%);
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.65;
}

.hero-link,
.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.hero-link {
  margin-top: 28px;
  padding: 12px 16px;
  border: 1px solid rgba(29, 78, 216, 0.24);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.hero-link:hover,
.text-link:hover {
  color: var(--accent-strong);
}

.text-link::before {
  margin-right: 7px;
  color: currentColor;
  font-size: 18px;
  content: ">";
}

.section {
  padding: 96px 20px;
}

.section-title {
  text-align: center;
}

.section-title h2 {
  margin: 0 0 15px;
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 25px;
  text-transform: uppercase;
}

.section-title span {
  display: inline-block;
  width: 42px;
  height: 3px;
  margin-bottom: 56px;
  border-radius: 999px;
  background: var(--accent);
}

.overview {
  background: var(--soft);
}

.tool-summary {
  background: var(--white);
}

.summary-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  width: min(1140px, 100%);
  margin: 0 auto;
  align-items: stretch;
}

.summary-copy,
.tool-facts {
  min-height: 100%;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
}

.summary-copy p {
  margin: 0;
}

.summary-copy p + p {
  margin-top: 18px;
}

.summary-copy .text-link {
  margin-top: 24px;
}

.tool-facts {
  display: grid;
  gap: 14px;
}

.tool-facts div,
.tool-status div,
.metric-row div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.tool-facts span,
.tool-status span,
.metric-row span,
.dashboard-header span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.tool-facts strong,
.tool-status strong,
.metric-row strong,
.dashboard-header strong {
  color: var(--black);
  font-size: 15px;
  line-height: 1.35;
}

.products {
  background: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(1140px, 100%);
  margin: 0 auto;
}

.product-card {
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
}

.product-card > span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 10px;
  border: 1px solid rgba(29, 78, 216, 0.18);
  border-radius: 999px;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0 0 16px;
  color: var(--black);
  font-size: 18px;
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.product-card p {
  margin: 0 0 20px;
}

.product-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.product-card dl div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.product-card dt {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-card dd {
  margin: 0;
  color: var(--black);
  font-weight: 750;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.product-card a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.overview-panel {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
}

.overview-panel p {
  margin: 0;
}

.overview-panel p + p {
  margin-top: 18px;
}

.applications {
  background: var(--white);
}

.app-intro {
  width: min(820px, 100%);
  margin: -24px auto 36px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
}

.app-carousel {
  width: min(1140px, 100%);
  margin: 0 auto;
}

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

.carousel-slide {
  display: flex;
  min-width: 0;
  min-height: 100%;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
  flex-direction: column;
}

.carousel-slide[hidden] {
  display: none;
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: 520px;
  border-radius: 6px;
  background: var(--soft);
  object-fit: contain;
}

.carousel-slide figcaption {
  margin-top: 12px;
  color: var(--black);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.carousel-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cbd5e1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dots span.is-active {
  background: var(--accent);
  transform: scale(1.2);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(1140px, 100%);
  margin: 0 auto;
}

.service-item {
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-item:hover {
  border-color: rgba(29, 78, 216, 0.35);
  box-shadow: 0 24px 60px rgba(29, 78, 216, 0.12);
  transform: translateY(-3px);
}

.service-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin: 0 0 22px;
  place-items: center;
  border-radius: 8px;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 24px;
  line-height: 1;
}

.service-item h3 {
  margin: 0;
  color: var(--black);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.rule {
  display: block;
  width: 30px;
  height: 2px;
  margin: 18px 0;
  border-radius: 999px;
  background: var(--line);
}

.service-item p {
  min-height: 82px;
  margin: 0 0 24px;
}

.arrow-link {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.arrow-link::before {
  content: "›";
  margin-right: 7px;
  color: currentColor;
  font-size: 18px;
  vertical-align: -1px;
}

.arrow-link:hover {
  color: var(--accent-strong);
}

.api-use {
  background: var(--soft);
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(1140px, 100%);
  margin: 0 auto;
}

.use-case-grid article {
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
}

.use-case-grid h3 {
  margin: 0 0 12px;
  color: var(--black);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.use-case-grid p {
  margin: 0;
}

.section-action {
  width: min(1140px, 100%);
  margin: 32px auto 0;
  text-align: center;
}

.data-use {
  background: var(--black);
}

.section-title.light h2 {
  color: var(--white);
}

.section-title.light span {
  background: #60a5fa;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  width: min(1140px, 100%);
  margin: 0 auto;
}

.process-grid article {
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(226, 232, 240, 0.14);
  border-radius: 8px;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.04);
}

.process-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0 0 20px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: rgba(96, 165, 250, 0.24);
  font-weight: 850;
  line-height: 1;
}

.process-grid h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.process-grid p {
  margin: 0;
}

.contact-details {
  display: grid;
  width: min(720px, 100%);
  margin: 0 auto;
  gap: 16px;
  font-style: normal;
}

.contact-details a {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.contact-details a:hover {
  border-color: rgba(29, 78, 216, 0.35);
  color: var(--accent);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.contact-icon {
  flex: 0 0 26px;
  color: var(--accent);
  font-weight: 800;
  text-align: center;
}

.contact-details span + span {
  margin-left: 10px;
}

.back-top {
  position: relative;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  margin: -23px auto 0;
  place-items: center;
  border: 1px solid rgba(29, 78, 216, 0.24);
  border-radius: 50%;
  color: var(--accent);
  background: var(--white);
  font-size: 20px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
  transition: color 0.2s ease, transform 0.2s ease;
}

.back-top:hover {
  color: var(--accent-strong);
  transform: translateY(-2px);
}

.footer {
  color: #cbd5e1;
  background: var(--black);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1140px, calc(100% - 40px));
  min-height: 96px;
  margin: 0 auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-transform: uppercase;
}

.footer nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer a {
  color: var(--white);
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #93c5fd;
}

.legal-page {
  background: var(--soft);
}

.legal-hero {
  padding: 150px 20px 72px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(29, 78, 216, 0.08), rgba(14, 165, 233, 0) 46%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.legal-hero h1 {
  margin: 0 0 18px;
  color: var(--black);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.05;
}

.legal-hero p {
  width: min(760px, 100%);
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
}

.legal-hero p:first-child {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-content {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 96px;
}

.legal-section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.legal-section:first-child {
  padding-top: 0;
}

.legal-section h2 {
  margin: 0 0 14px;
  color: var(--black);
  font-size: 16px;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.legal-section p {
  margin: 0;
}

.legal-section p + p,
.legal-section p + ul {
  margin-top: 14px;
}

.legal-section ul {
  padding-left: 22px;
  list-style: disc;
}

.legal-section li + li {
  margin-top: 8px;
}

.legal-section a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tool-page {
  background: var(--white);
}

.tool-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 32px;
  min-height: 620px;
  padding: 150px max(20px, calc((100vw - 1140px) / 2)) 88px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(29, 78, 216, 0.08), rgba(14, 165, 233, 0) 46%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-bottom: 1px solid var(--line);
}

.product-hero {
  min-height: 560px;
}

.tool-hero-copy span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 12px;
  border: 1px solid rgba(29, 78, 216, 0.18);
  border-radius: 999px;
  color: var(--accent);
  background: var(--white);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.tool-hero-copy h1 {
  margin: 0 0 18px;
  color: var(--black);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.02;
}

.tool-hero-copy p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.65;
}

.tool-status {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.tool-detail {
  background: var(--white);
}

.detail-grid,
.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(1140px, 100%);
  margin: 0 auto;
}

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

.detail-grid article,
.scope-grid article,
.workflow-steps article {
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
}

.detail-grid h3,
.scope-grid h3,
.workflow-steps h3 {
  margin: 0 0 12px;
  color: var(--black);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.detail-grid p,
.workflow-steps p {
  margin: 0;
}

.scope-grid ul {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
}

.scope-grid li + li {
  margin-top: 8px;
}

.workflow-section {
  background: var(--soft);
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  width: min(1140px, 100%);
  margin: 0 auto;
}

.workflow-steps span {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--accent);
  font-weight: 850;
  line-height: 1;
}

.reporting-dashboard {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.dashboard-header,
.metric-row {
  display: grid;
  gap: 14px;
}

.dashboard-header {
  grid-template-columns: 1fr 220px;
  margin-bottom: 18px;
}

.dashboard-header div {
  padding: 18px;
  border-radius: 8px;
  background: var(--soft);
}

.metric-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.dashboard-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dashboard-table > div {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 0.9fr 0.6fr;
  gap: 12px;
  padding: 14px 16px;
  color: var(--ink);
  border-top: 1px solid var(--line);
}

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

.dashboard-table .table-head {
  color: var(--black);
  background: var(--accent-soft);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .carousel-track,
  .service-grid,
  .process-grid,
  .scope-grid,
  .workflow-steps,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .summary-layout,
  .tool-hero,
  .detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar,
  .top-bar.is-scrolled {
    min-height: 60px;
    padding: 0 20px;
  }

  .brand span {
    max-width: calc(100vw - 118px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    border-radius: 8px;
    color: var(--black);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span,
  .menu-toggle span::before,
  .menu-toggle span::after {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    content: "";
  }

  .menu-toggle span::before {
    transform: translateY(-7px);
  }

  .menu-toggle span::after {
    transform: translateY(5px);
  }

  .menu {
    position: absolute;
    top: 60px;
    right: 14px;
    left: 14px;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  }

  .menu.is-open {
    display: grid;
    gap: 4px;
  }

  .menu a {
    padding: 10px 12px;
  }

  .hero {
    min-height: 520px;
    padding-top: 110px;
  }

  .hero::before {
    top: 120px;
    right: -120px;
    width: 280px;
    height: 280px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .legal-hero {
    padding-top: 118px;
    padding-bottom: 56px;
  }

  .tool-hero {
    min-height: 0;
    padding-top: 118px;
    padding-bottom: 64px;
  }

  .section-title span {
    margin-bottom: 42px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 13px;
  }

  .hero {
    min-height: 500px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero h1 {
    font-size: clamp(30px, 10vw, 40px);
  }

  .hero-eyebrow {
    max-width: 100%;
    text-align: center;
  }

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

  .carousel-track,
  .use-case-grid,
  .process-grid,
  .scope-grid,
  .workflow-steps,
  .product-grid,
  .metric-row,
  .dashboard-header {
    grid-template-columns: 1fr;
  }

  .summary-copy,
  .tool-facts,
  .reporting-dashboard {
    padding: 24px;
  }

  .dashboard-table {
    overflow-x: auto;
  }

  .dashboard-table > div {
    min-width: 660px;
  }

  .app-intro {
    margin-top: -18px;
    font-size: 14px;
    text-align: left;
  }

  .carousel-slide img {
    height: auto;
  }

  .service-item {
    padding: 24px;
  }

  .carousel-slide,
  .overview-panel,
  .use-case-grid article,
  .process-grid article {
    padding: 24px;
  }

  .service-item p {
    min-height: 0;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .footer-inner {
    align-items: flex-start;
    padding: 26px 0;
    flex-direction: column;
  }

  .footer nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .legal-content {
    width: min(calc(100% - 36px), 920px);
    padding-top: 44px;
    padding-bottom: 64px;
  }

  .legal-section {
    padding: 24px 0;
  }

  .section-title span {
    margin-bottom: 28px;
  }
}
