:root {
  --navy-950: #081426;
  --navy-900: #0b1830;
  --navy-800: #122645;
  --navy-700: #1c365b;
  --blue-500: #1b78c7;
  --blue-400: #3199df;
  --teal-500: #2db9c3;
  --teal-300: #73d6d8;
  --ink: #172235;
  --muted: #647084;
  --line: #dce4ec;
  --soft: #f4f7fa;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(10, 27, 51, 0.14);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section { padding: 105px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 228, 236, 0.8);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand img {
  width: 286px;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 29px;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-800);
}

.site-nav a:not(.button):hover { color: var(--blue-500); }

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 9px;
}
.menu-button span {
  display: block;
  height: 2px;
  background: var(--navy-900);
  margin: 6px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-800), var(--blue-500));
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(27, 120, 199, 0.22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 35px rgba(27, 120, 199, 0.28);
}
.button-small {
  min-height: 42px;
  padding: 0 17px;
  border-radius: 8px;
  font-size: .85rem !important;
  color: white !important;
}
.button-light {
  background: white;
  color: var(--navy-900);
  box-shadow: none;
}

.text-link {
  font-weight: 700;
  color: var(--navy-800);
  text-decoration: none;
}
.text-link span { color: var(--teal-500); margin-left: 5px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--blue-500);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--teal-500);
}
.eyebrow.light { color: var(--teal-300); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 115px 0 105px;
  background:
    radial-gradient(circle at 78% 15%, rgba(45,185,195,.12), transparent 25%),
    linear-gradient(180deg, #fff, #f8fbfd);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -50% auto;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  border: 1px solid rgba(27,120,199,.12);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 74px;
  align-items: center;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 750px;
  margin-bottom: 24px;
  color: var(--navy-900);
  font-size: clamp(3.1rem, 6vw, 5.5rem);
  line-height: .98;
  letter-spacing: -.055em;
}
h2 {
  color: var(--navy-900);
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}
h3 {
  color: var(--navy-900);
  font-size: 1.18rem;
  line-height: 1.35;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.18rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 38px;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 25px;
  color: var(--navy-700);
  font-size: .9rem;
  font-weight: 600;
}
.hero-points span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--teal-500);
}

.architecture-card {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(18,38,69,.11);
  border-radius: 26px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}
.architecture-card::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  z-index: -1;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(49,153,223,.14), rgba(45,185,195,.08));
}
.arch-topline {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--navy-900);
  font-weight: 700;
}
.status-pill {
  padding: 5px 10px;
  border-radius: 30px;
  background: rgba(45,185,195,.12);
  color: #178d97;
  font-size: .72rem;
}
.arch-grid { padding: 30px 6px 21px; }
.cloud-node {
  width: 55%;
  margin: auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: white;
  text-align: center;
}
.cloud-node strong, .cloud-node small { display: block; }
.cloud-node small { color: var(--muted); font-size: .72rem; }
.node-primary {
  border-color: rgba(27,120,199,.35);
  box-shadow: 0 8px 20px rgba(27,120,199,.1);
}
.connector {
  width: 2px;
  height: 20px;
  margin: 0 auto;
  background: linear-gradient(var(--blue-400), var(--teal-500));
}
.mini-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.mini-node {
  padding: 10px 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--navy-700);
  text-align: center;
  font-size: .71rem;
  font-weight: 700;
}
.code-panel {
  margin-top: 8px;
  padding: 20px;
  overflow: hidden;
  border-radius: 13px;
  background: var(--navy-950);
  color: #bfcde0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .76rem;
  line-height: 1.8;
}
.code-blue { color: #71b7ff; }
.code-teal { color: #69d9cf; }
.code-white { color: white; }

.trust-strip {
  background: var(--navy-900);
  color: white;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trust-grid > div {
  padding: 28px 40px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { margin-bottom: 4px; }
.trust-grid span { color: #aebbd0; font-size: .83rem; }

.section-heading {
  max-width: 850px;
  margin-bottom: 55px;
}
.section-heading.narrow { max-width: 760px; }
.section-heading p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
}

.problem-section { background: white; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.problem-card {
  padding: 31px 25px;
  border-top: 3px solid var(--teal-500);
  background: var(--soft);
}
.card-number {
  display: block;
  margin-bottom: 32px;
  color: var(--blue-400);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
}
.problem-card p, .service-card p { color: var(--muted); font-size: .92rem; }

.services-section { background: var(--soft); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.service-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}
.service-card.featured {
  border-color: rgba(45,185,195,.55);
  box-shadow: 0 18px 50px rgba(17,48,76,.09);
}
.service-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-800), var(--blue-500));
  color: white;
  font-size: .76rem;
  font-weight: 800;
}
.service-card ul {
  margin: 22px 0 0;
  padding: 19px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: var(--navy-700);
  font-size: .84rem;
  font-weight: 600;
}
.service-card li { margin: 8px 0; }
.service-card li::before { content: "—"; margin-right: 8px; color: var(--teal-500); }

.process-section {
  background:
    linear-gradient(rgba(8,20,38,.97), rgba(8,20,38,.97)),
    radial-gradient(circle at top right, var(--blue-500), transparent 40%);
  color: white;
}
.process-section h2, .process-section h3 { color: white; }
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-step {
  padding: 29px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}
.process-step > span {
  display: inline-grid;
  width: 35px;
  height: 35px;
  place-items: center;
  margin-bottom: 48px;
  border-radius: 50%;
  background: var(--teal-500);
  color: var(--navy-950);
  font-weight: 800;
}
.process-step p { color: #aebbd0; font-size: .9rem; }

.outcomes-section { background: white; }
.outcomes-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 90px;
  align-items: start;
}
.outcomes-list { display: grid; gap: 16px; }
.outcome {
  display: flex;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.outcome > span {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(45,185,195,.13);
  color: #159ba6;
  font-weight: 900;
}
.outcome strong { color: var(--navy-900); }
.outcome p { margin: 3px 0 0; color: var(--muted); font-size: .86rem; }

.about-section { background: var(--soft); overflow: hidden; }
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.about-copy p { color: var(--muted); }
.about-visual {
  min-height: 420px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(11,24,48,.98), rgba(18,54,91,.95));
  box-shadow: var(--shadow);
}
.ridge-mark {
  position: relative;
  width: 280px;
  height: 200px;
}
.ridge {
  position: absolute;
  bottom: 25px;
  width: 165px;
  height: 165px;
  border-top: 18px solid;
  border-left: 18px solid;
  transform: rotate(45deg);
  border-radius: 6px 0 0 0;
}
.ridge-one { left: 20px; border-color: var(--blue-400); }
.ridge-two { right: 15px; border-color: var(--teal-300); }

.faq-section { background: white; }
.faq-grid {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 80px;
}
.accordion details {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.accordion summary {
  position: relative;
  padding-right: 35px;
  cursor: pointer;
  list-style: none;
  color: var(--navy-900);
  font-weight: 750;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+";
  position: absolute;
  right: 0;
  color: var(--blue-500);
  font-size: 1.35rem;
}
.accordion details[open] summary::after { content: "–"; }
.accordion p { margin: 15px 0 0; color: var(--muted); font-size: .92rem; }

.contact-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(45,185,195,.17), transparent 30%),
    var(--navy-900);
  color: white;
}
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-copy h2 { color: white; }
.contact-copy > p { color: #bdc8d7; }
.contact-note {
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.contact-note strong, .contact-note a { display: block; }
.contact-note a { color: var(--teal-300); text-decoration: none; }

.contact-form {
  padding: 35px;
  border-radius: 22px;
  background: white;
  color: var(--navy-900);
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
label {
  display: block;
  margin-bottom: 17px;
  font-size: .82rem;
  font-weight: 750;
}
input, select, textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #ccd6e0;
  border-radius: 9px;
  background: #fbfcfd;
  color: var(--ink);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(49,153,223,.12);
}
textarea { resize: vertical; }
.form-help {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: .72rem;
}
.form-help code { color: var(--navy-900); }

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: white;
}
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: var(--muted);
  font-size: .78rem;
}
.footer-wrap img { width: 215px; }
.footer-wrap p { margin: 0; }
.footer-wrap a { color: var(--navy-700); text-decoration: none; font-weight: 700; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    display: none;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: white;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.open { display: flex; }
  .menu-button { display: block; }
  .hero-grid,
  .outcomes-grid,
  .about-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 60px; }
  .problem-grid, .process-track { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .trust-grid > div:last-child { border-bottom: 0; }
  .outcomes-grid, .about-grid, .faq-grid, .contact-grid { gap: 50px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .brand img { width: 232px; }
  h1 { font-size: clamp(2.75rem, 14vw, 4.2rem); }
  h2 { font-size: 2.25rem; }
  .hero { padding-top: 80px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .problem-grid,
  .services-grid,
  .process-track,
  .form-row {
    grid-template-columns: 1fr;
  }
  .service-card { padding: 28px; }
  .architecture-card { padding: 17px; }
  .cloud-node { width: 78%; }
  .mini-row { gap: 5px; }
  .footer-wrap { flex-direction: column; text-align: center; }
  .footer-wrap img { width: 240px; }
}


/* ===== Refined header and premium hero banner ===== */
.site-header {
  background: rgba(255, 255, 255, 0.97);
}

.nav-wrap {
  min-height: 104px;
}

.brand img {
  width: 365px;
  max-height: 76px;
}

.hero {
  padding: 54px 0 82px;
  background:
    radial-gradient(circle at 84% 10%, rgba(49,153,223,.1), transparent 24%),
    linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.hero::after {
  display: none;
}

.hero-banner {
  position: relative;
  min-height: 610px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 75% 28%, rgba(27,120,199,.22), transparent 30%),
    radial-gradient(circle at 96% 88%, rgba(45,185,195,.12), transparent 27%),
    linear-gradient(135deg, #081426 0%, #0c1d38 48%, #0a2443 100%);
  box-shadow: 0 35px 90px rgba(8, 20, 38, 0.22);
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to right, transparent 0%, transparent 40%, #000 75%, #000 100%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: 74px 34px 74px 72px;
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 25px;
  color: white;
  font-size: clamp(3rem, 5.2vw, 5.2rem);
  line-height: 1.01;
  letter-spacing: -.05em;
}

.hero-lead {
  max-width: 650px;
  color: #b8c7da;
  font-size: 1.12rem;
}

.hero-actions {
  margin-bottom: 34px;
}

.button-teal {
  background: linear-gradient(135deg, #20b8c2, #2b8fdc);
  box-shadow: 0 14px 30px rgba(35, 169, 201, .25);
}

.hero-secondary-link {
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.hero-secondary-link span {
  margin-left: 5px;
  color: var(--teal-300);
}

.hero-points {
  color: #d8e4f0;
}

.hero-art {
  position: relative;
  z-index: 2;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 610px;
  padding: 38px 18px 0 0;
}

.hero-art::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: 5%;
  bottom: -22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,125,233,.18), transparent 68%);
  filter: blur(2px);
}

.hero-art svg {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: auto;
  filter: drop-shadow(0 0 24px rgba(47, 159, 255, .14));
}

@media (max-width: 980px) {
  .nav-wrap {
    min-height: 92px;
  }

  .brand img {
    width: 310px;
    max-height: 68px;
  }

  .site-nav {
    top: 88px;
  }

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

  .hero-copy {
    padding: 65px 48px 18px;
  }

  .hero-art {
    min-height: 420px;
    padding: 0 10px;
  }
}

@media (max-width: 680px) {
  .nav-wrap {
    min-height: 84px;
  }

  .brand img {
    width: 255px;
    max-height: 60px;
  }

  .site-nav {
    top: 80px;
  }

  .hero {
    padding: 28px 0 58px;
  }

  .hero-banner {
    min-height: auto;
    border-radius: 20px;
  }

  .hero-copy {
    padding: 48px 25px 8px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 4.1rem);
  }

  .hero-art {
    min-height: 320px;
  }
}


/* ===== Full-width responsive layout and corrected logo ===== */
:root {
  --container: 1540px;
}

.container {
  width: min(calc(100% - clamp(32px, 6vw, 112px)), var(--container));
}

.site-header .container {
  width: min(calc(100% - clamp(32px, 6vw, 112px)), 1600px);
}

.nav-wrap {
  min-height: 108px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  overflow: visible;
}

.brand img {
  width: clamp(270px, 20vw, 360px);
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: left center;
}

.hero {
  padding: clamp(28px, 3vw, 52px) 0 clamp(62px, 6vw, 96px);
}

.hero > .container {
  width: min(calc(100% - clamp(24px, 4vw, 72px)), 1660px);
}

.hero-banner {
  width: 100%;
  min-height: calc(100vh - 160px);
  max-height: none;
  grid-template-columns: minmax(520px, .95fr) minmax(540px, 1.05fr);
}

.hero-copy {
  padding: clamp(56px, 6vw, 92px);
  padding-right: clamp(28px, 4vw, 66px);
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3.4rem, 5.1vw, 6.2rem);
}

.hero-lead {
  max-width: 720px;
  font-size: clamp(1.02rem, 1.18vw, 1.25rem);
}

.hero-art {
  min-height: calc(100vh - 160px);
}

.hero-art svg {
  max-width: 820px;
}

.trust-strip .container,
.services-section .container,
.problem-section .container,
.process-section .container,
.outcomes-section .container,
.about-section .container,
.faq-section .container,
.contact-section .container,
.site-footer .container {
  width: min(calc(100% - clamp(32px, 6vw, 112px)), 1540px);
}

@media (min-width: 1800px) {
  :root {
    --container: 1660px;
  }

  .hero > .container {
    max-width: 1760px;
  }

  .hero-banner {
    min-height: 720px;
  }

  .hero-art {
    min-height: 720px;
  }
}

@media (max-width: 1180px) {
  .hero-banner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-art {
    min-height: 440px;
  }

  .hero-copy {
    padding-bottom: 20px;
  }
}

@media (max-width: 680px) {
  .container,
  .site-header .container,
  .hero > .container,
  .trust-strip .container,
  .services-section .container,
  .problem-section .container,
  .process-section .container,
  .outcomes-section .container,
  .about-section .container,
  .faq-section .container,
  .contact-section .container,
  .site-footer .container {
    width: calc(100% - 28px);
  }

  .nav-wrap {
    min-height: 84px;
  }

  .brand img {
    width: 235px;
  }

  .hero-banner {
    min-height: auto;
  }

  .hero-art {
    min-height: 300px;
  }
}


/* ===== v4: crisp vector logo and viewport-fitted hero ===== */
.brand img {
  width: clamp(245px, 17vw, 330px);
  height: auto;
  image-rendering: auto;
}

.nav-wrap {
  min-height: 96px;
}

.hero {
  padding: clamp(24px, 2.2vw, 38px) 0 clamp(44px, 4vw, 68px);
}

.hero-banner {
  min-height: 520px;
  height: clamp(520px, calc(100vh - 220px), 650px);
  max-height: 650px;
  grid-template-columns: minmax(500px, .95fr) minmax(500px, 1.05fr);
}

.hero-copy {
  padding: clamp(48px, 4.5vw, 72px);
  padding-right: clamp(28px, 3.5vw, 56px);
}

.hero h1 {
  font-size: clamp(3rem, 4.35vw, 5.3rem);
  line-height: 1.01;
}

.hero-art {
  min-height: 0;
  height: 100%;
  padding-top: 22px;
}

.hero-art svg {
  max-width: 760px;
  max-height: 100%;
}

@media (min-width: 1800px) {
  .hero-banner {
    min-height: 560px;
    height: clamp(560px, calc(100vh - 230px), 680px);
    max-height: 680px;
  }

  .hero-art {
    min-height: 0;
    height: 100%;
  }
}

@media (max-width: 1180px) {
  .hero-banner {
    height: auto;
    max-height: none;
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-art {
    height: auto;
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .brand img {
    width: 220px;
  }

  .nav-wrap {
    min-height: 80px;
  }

  .hero-banner {
    min-height: auto;
    height: auto;
    max-height: none;
  }

  .hero-art {
    min-height: 280px;
  }
}


/* ===== Final hero and header refinements ===== */
.nav-wrap {
  min-height: 92px;
}

.brand img {
  width: clamp(315px, 21vw, 400px);
}

.site-nav {
  gap: 25px;
}

.button-small {
  min-height: 39px;
  padding: 0 16px;
}

.hero {
  padding-top: 30px;
  padding-bottom: 58px;
}

.hero-banner {
  min-height: 555px;
  grid-template-columns: 1.04fr .96fr;
}

.hero-copy {
  padding: 52px 38px 50px 58px;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(3.15rem, 4.45vw, 5.35rem);
  line-height: 1.01;
}

.hero-lead {
  max-width: 600px;
  font-size: 1.06rem;
  line-height: 1.68;
}

.hero-art {
  min-height: 555px;
  align-items: center;
  padding-top: 0;
  padding-right: 6px;
  transform: translateY(-42px);
}

.hero-art svg {
  width: 112%;
  max-width: 805px;
}

.trust-strip {
  margin-top: 0;
}

@media (min-width: 1500px) {
  .hero-banner {
    min-height: 575px;
  }

  .hero-art {
    min-height: 575px;
    transform: translateY(-50px);
  }
}

@media (max-width: 1180px) {
  .nav-wrap {
    min-height: 88px;
  }

  .brand img {
    width: 305px;
  }

  .hero-banner {
    min-height: auto;
  }

  .hero-copy {
    padding: 50px 40px 18px;
  }

  .hero-art {
    min-height: 370px;
    transform: translateY(-14px);
  }
}

@media (max-width: 680px) {
  .nav-wrap {
    min-height: 80px;
  }

  .brand img {
    width: 235px;
  }

  .hero {
    padding-top: 22px;
    padding-bottom: 48px;
  }

  .hero-copy {
    padding: 40px 23px 6px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 11.2vw, 3.7rem);
  }

  .hero-art {
    min-height: 280px;
    transform: translateY(0);
  }

  .hero-art svg {
    width: 100%;
  }
}


/* ===== Capabilities section ===== */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.capability-card {
  position: relative;
  min-height: 100%;
  padding: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.capability-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49,153,223,.12), transparent 68%);
}

.capability-card.featured {
  border-color: rgba(45,185,195,.58);
  box-shadow: 0 18px 50px rgba(17,48,76,.1);
}

.capability-kicker {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 7px 11px;
  border-radius: 30px;
  background: rgba(45,185,195,.12);
  color: #168f99;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.capability-card h3 {
  max-width: 320px;
  font-size: 1.35rem;
}

.capability-card p {
  color: var(--muted);
  font-size: .92rem;
}

.capability-card ul {
  margin: 24px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: var(--navy-700);
  font-size: .84rem;
  font-weight: 600;
}

.capability-card li {
  margin: 9px 0;
}

.capability-card li::before {
  content: "—";
  margin-right: 8px;
  color: var(--teal-500);
}

@media (max-width: 980px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .capability-card {
    padding: 28px;
  }
}
