:root {
  --deep-teal: #053D4D;
  --tech-teal: #074D61;
  --bright-lime: #8DB51F;
  --soft-lime: #B5D95A;
  --charcoal: #102A33;
  --muted: #5B6F75;
  --line: #D7E1E3;
  --bg: #F7FAFA;
  --white: #FFFFFF;
  --amber: #D99A18;
  --red: #B42318;
  --green: #2F8A3C;
  --shadow: 0 18px 42px rgba(5, 61, 77, .12);
  --radius: 8px;
  --radius-sm: 6px;
  --font: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--bg);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: var(--tech-teal);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .99);
  border-bottom: 3px solid rgba(141, 181, 31, .82);
  box-shadow: 0 10px 28px rgba(5, 61, 77, .08);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 7px 12px 7px 9px;
  border: 1px solid rgba(7, 77, 97, .16);
  border-left: 4px solid var(--bright-lime);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--white), #FBFDFD);
  box-shadow: 0 12px 26px rgba(5, 61, 77, .1);
}

.brand-link img {
  width: 268px;
  height: auto;
  display: block;
  filter: drop-shadow(0 3px 5px rgba(5, 61, 77, .1));
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--deep-teal);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--deep-teal);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13.5px;
  font-weight: 750;
}

.main-nav a {
  position: relative;
  color: var(--deep-teal);
  text-decoration: none;
}

.main-nav a:not(.nav-cta) {
  padding: 10px 0;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--bright-lime);
  opacity: 0;
  transform: scaleX(.35);
  transform-origin: center;
  transition: opacity .18s ease, transform .18s ease;
}

.main-nav a:not(.nav-cta):hover::after,
.main-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.main-nav a[aria-current="page"] {
  color: var(--deep-teal);
}

.nav-cta {
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--deep-teal);
  background: var(--deep-teal);
  color: var(--white) !important;
  box-shadow: 0 10px 22px rgba(5, 61, 77, .18);
}

.nav-cta:hover {
  border-color: var(--bright-lime);
  background: var(--tech-teal);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(247, 250, 250, .98), rgba(247, 250, 250, .88)),
    url("../media/brand-pattern.svg") center/cover;
}

.hero {
  padding: 86px 0 68px;
}

.page-hero {
  padding: 70px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 46px;
  align-items: center;
}

.hero-grid > *,
.split > *,
.cta-grid > * {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--tech-teal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bright-lime);
  box-shadow: 0 0 0 5px rgba(141, 181, 31, .16);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--charcoal);
  line-height: 1.08;
}

h1 {
  max-width: 840px;
  font-size: clamp(42px, 5.7vw, 72px);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
}

h3 {
  font-size: 21px;
}

h4 {
  font-size: 16px;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.narrow {
  max-width: 760px;
}

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

.button {
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.button-primary {
  background: var(--tech-teal);
  color: var(--white);
}

.button-secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--tech-teal);
}

.button-lime {
  background: var(--bright-lime);
  color: var(--charcoal);
}

.hero-visual {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 26px;
}

.service-focus {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.service-focus::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 217, 90, .22), rgba(181, 217, 90, 0) 66%);
}

.service-focus-top {
  position: relative;
  z-index: 1;
  padding: 34px 34px 28px;
  background: linear-gradient(135deg, var(--deep-teal), var(--tech-teal));
  color: rgba(255, 255, 255, .78);
}

.service-focus-top h2 {
  max-width: 470px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 40px);
}

.service-focus-top p {
  max-width: 480px;
  margin: 16px 0 0;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--soft-lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.focus-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  padding: 8px 28px 26px;
  background: var(--white);
}

.focus-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.focus-item:last-child {
  border-bottom: 0;
}

.focus-item span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(141, 181, 31, .14);
  color: var(--tech-teal);
  font-size: 13px;
  font-weight: 900;
}

.focus-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--charcoal);
  font-size: 17px;
}

.focus-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.ops-board {
  display: grid;
  gap: 14px;
}

.ops-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.ops-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
}

.ops-title img {
  width: 44px;
  height: 44px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(141, 181, 31, .14);
  color: var(--deep-teal);
  font-size: 12px;
  font-weight: 850;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bright-lime);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.metric {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}

.metric strong {
  display: block;
  font-size: 26px;
  line-height: 1;
  color: var(--deep-teal);
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 11px;
  align-items: start;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--bright-lime);
}

.section {
  padding: 72px 0;
}

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

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 30px;
}

.section-head p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card-accent {
  border-top: 4px solid var(--bright-lime);
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(7, 77, 97, .22);
  box-shadow: 0 14px 32px rgba(5, 61, 77, .09);
}

.card h3,
.card h4 {
  margin-bottom: 9px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.card a {
  display: inline-flex;
  margin-top: 14px;
  font-weight: 850;
  text-decoration: none;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 232px;
  flex-direction: column;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--bright-lime), rgba(7, 77, 97, .18));
  opacity: .72;
}

.service-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(7, 77, 97, .13);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(7, 77, 97, .09), rgba(141, 181, 31, .15));
  color: var(--tech-teal);
  box-shadow: 0 10px 24px rgba(5, 61, 77, .07);
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.service-card.card-accent .service-icon,
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--deep-teal), var(--tech-teal));
  color: var(--white);
}

.service-card:hover .service-icon {
  transform: translateY(-1px);
}

.service-card h3 {
  margin-top: 0;
}

.service-card p {
  flex: 1;
}

.service-card a {
  align-items: center;
  gap: 7px;
  margin-top: 18px;
}

.service-card a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.panel {
  border-radius: var(--radius);
  padding: 34px;
  background: var(--deep-teal);
  color: rgba(255, 255, 255, .78);
}

.panel h2,
.panel h3,
.panel h4 {
  color: var(--white);
}

.panel p {
  color: rgba(255, 255, 255, .78);
}

.panel .button-secondary {
  border-color: rgba(255, 255, 255, .25);
}

.process {
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.process-step {
  position: relative;
  min-height: 154px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 20px;
}

.process-step::before {
  counter-increment: process;
  content: "0" counter(process);
  display: block;
  margin-bottom: 18px;
  color: var(--bright-lime);
  font-weight: 900;
}

.process-step p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.feature-row strong {
  color: var(--deep-teal);
}

.feature-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.feature-label .service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 0;
}

.feature-label .service-icon svg {
  width: 23px;
  height: 23px;
}

.feature-row p {
  margin: 0;
  color: var(--muted);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.story-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.story-card .tag {
  margin-bottom: 16px;
}

.story-card p {
  flex: 1;
}

.tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(141, 181, 31, .12);
  color: var(--tech-teal);
  font-size: 12px;
  font-weight: 850;
}

.cta-band {
  padding: 54px 0;
  background: var(--deep-teal);
  color: rgba(255, 255, 255, .78);
}

.cta-band h2 {
  color: var(--white);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.site-footer {
  padding: 48px 0 28px;
  background: var(--charcoal);
  color: rgba(255, 255, 255, .68);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 30px;
}

.site-footer img {
  width: 240px;
  padding: 8px;
  border-radius: var(--radius);
  background: var(--white);
}

.site-footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 16px;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, .74);
  text-decoration: none;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 13px;
}

.form-shell {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-body {
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

label,
.label {
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font: inherit;
  color: var(--charcoal);
  background: var(--white);
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(141, 181, 31, .26);
  border-color: var(--bright-lime);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.check-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.check-option input {
  width: auto;
  min-height: auto;
  margin-top: 4px;
}

.steps {
  display: flex;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}

.step-indicator {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.step-indicator.is-active {
  background: rgba(141, 181, 31, .16);
  color: var(--deep-teal);
}

.form-step {
  display: none;
}

.form-step.is-active {
  display: block;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.notice {
  border-left: 4px solid var(--bright-lime);
  border-radius: var(--radius-sm);
  background: var(--bg);
  padding: 14px 16px;
  color: var(--muted);
}

.success-message {
  display: none;
  margin-top: 18px;
  border: 1px solid rgba(47, 138, 60, .25);
  border-radius: var(--radius-sm);
  background: rgba(47, 138, 60, .08);
  padding: 14px 16px;
  color: var(--charcoal);
}

.success-message.is-visible {
  display: block;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--tech-teal);
  background: var(--bg);
}

.resource-list {
  display: grid;
  gap: 14px;
}

.resource-item {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.resource-item p {
  margin: 4px 0 0;
  color: var(--muted);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.news-card:hover {
  transform: translateY(-2px);
  border-color: rgba(7, 77, 97, .22);
  box-shadow: 0 14px 32px rgba(5, 61, 77, .09);
}

.news-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--bg);
}

.news-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.news-card-body h2 {
  font-size: 22px;
  line-height: 1.18;
}

.news-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.news-date,
.article-date-line {
  color: var(--tech-teal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.news-read {
  margin-top: auto;
  color: var(--tech-teal);
  font-weight: 850;
}

.article-hero-section {
  padding: 58px 0;
  background:
    linear-gradient(105deg, rgba(247, 250, 250, .98), rgba(247, 250, 250, .88)),
    url("../media/brand-pattern.svg") center/cover;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, .96fr);
  gap: 38px;
  align-items: center;
}

.article-hero-grid h1 {
  font-size: clamp(36px, 4.8vw, 58px);
}

.article-image-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.article-image-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: start;
}

.article-copy {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 34px;
}

.article-copy h2 {
  margin-top: 28px;
  font-size: 28px;
}

.article-copy h2:first-child {
  margin-top: 0;
}

.article-copy p {
  color: var(--muted);
}

.article-lede {
  margin-top: 0;
  color: var(--charcoal) !important;
  font-size: 19px;
}

.source-note {
  margin: 24px 0;
}

.article-aside {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
}

.article-aside p {
  color: var(--muted);
  font-size: 14px;
}

.product-body {
  background: #F4F8F8;
}

.product-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(215, 225, 227, .82);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
}

.product-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.product-brand {
  display: inline-flex;
  flex-direction: column;
  color: var(--charcoal);
  text-decoration: none;
}

.product-brand strong {
  color: var(--deep-teal);
  font-size: 28px;
  line-height: 1;
  letter-spacing: .01em;
}

.product-brand span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.product-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 850;
}

.product-nav a {
  color: var(--charcoal);
  text-decoration: none;
}

.product-cta {
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bright-lime);
  color: var(--charcoal) !important;
}

.product-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 68px;
  background:
    linear-gradient(120deg, rgba(5, 61, 77, .97), rgba(7, 77, 97, .91)),
    url("../media/brand-pattern.svg") center/cover;
  color: rgba(255, 255, 255, .78);
}

.product-hero h1,
.product-hero h2,
.product-hero h3 {
  color: var(--white);
}

.product-hero .eyebrow {
  color: var(--soft-lime);
}

.product-hero .lead {
  color: rgba(255, 255, 255, .78);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  gap: 46px;
  align-items: center;
}

.product-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.product-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
  font-weight: 850;
}

.product-visual {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 22px 58px rgba(0, 0, 0, .26);
}

.product-visual img {
  display: block;
  width: 100%;
}

.product-logo-word {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: var(--deep-teal);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: .01em;
}

.product-logo-word span {
  color: var(--bright-lime);
}

.product-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.proof-stat {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
}

.proof-stat strong {
  display: block;
  color: var(--deep-teal);
  font-size: 28px;
  line-height: 1;
}

.proof-stat span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
}

.product-footer {
  padding: 34px 0;
  background: var(--deep-teal);
  color: rgba(255, 255, 255, .72);
}

.product-footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.product-footer a {
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 1040px) {
  .service-grid,
  .story-grid,
  .news-grid,
  .product-proof {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 1080px) {
  .header-inner {
    min-height: 82px;
  }

  .brand-link {
    padding: 6px 10px 6px 8px;
  }

  .brand-link img {
    width: 226px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    inset: 82px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 12px 20px 22px;
  }

  body.nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    color: var(--charcoal);
    padding: 12px 0;
  }

  .main-nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    width: max-content;
    min-width: 164px;
    margin-top: 8px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand-link img {
    width: 210px;
  }

  .hero-grid,
  .product-hero-grid,
  .split,
  .cta-grid,
  .article-hero-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 12px;
  }

  .form-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-row {
    grid-template-columns: 1fr;
  }

  .product-header-inner,
  .product-nav,
  .product-footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-nav {
    width: 100%;
    gap: 12px;
  }
}

@media (max-width: 620px) {
  .hero,
  .page-hero {
    padding: 46px 0 38px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 38px);
  }

  .lead {
    font-size: 18px;
  }

  .service-focus-top {
    padding: 28px 24px 24px;
  }

  .focus-list {
    padding: 6px 22px 22px;
  }

  .actions .button,
  .form-actions .button {
    width: 100%;
  }

  .service-grid,
  .story-grid,
  .news-grid,
  .product-proof,
  .process,
  .metric-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column-reverse;
  }
}

@media (max-width: 480px) {
  .header-inner {
    gap: 12px;
  }

  .brand-link img {
    width: 190px;
  }
}

/* Clean visual refresh: restrained colour, white space, and lighter product cards. */
body {
  background: linear-gradient(180deg, #FFFFFF 0%, #F7FAFA 58%, #F2F7F8 100%);
}

.site-header {
  background: rgba(248, 251, 251, .92);
  border-bottom: 1px solid rgba(16, 42, 51, .1);
  box-shadow: none;
}

.header-inner {
  min-height: 84px;
}

.brand-link {
  padding: 6px 8px;
  border: 1px solid rgba(7, 77, 97, .16);
  border-left: 1px solid rgba(7, 77, 97, .16);
  border-radius: 10px;
  background: rgba(255, 255, 255, .94);
  box-shadow: none;
}

.brand-link img {
  width: 242px;
  filter: none;
}

.main-nav {
  gap: 18px;
  color: #647985;
  font-weight: 720;
}

.main-nav a {
  color: #586F7B;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--deep-teal);
}

.main-nav a:not(.nav-cta)::after {
  bottom: 2px;
  height: 2px;
  background: var(--bright-lime);
}

.nav-cta,
.button-primary {
  border-radius: 999px;
  background: var(--deep-teal);
  color: var(--white) !important;
  box-shadow: none;
}

.nav-cta:hover,
.button-primary:hover {
  background: var(--tech-teal);
}

.button {
  border-radius: 999px;
}

.button-secondary {
  background: var(--white);
  border-color: rgba(16, 42, 51, .14);
  color: var(--deep-teal);
}

.button-lime {
  border-color: rgba(141, 181, 31, .28);
  background: rgba(141, 181, 31, .14);
  color: var(--deep-teal);
}

.hero,
.page-hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(247, 250, 250, .96)),
    url("../media/brand-pattern.svg") center/cover;
}

.hero {
  padding: 92px 0 64px;
}

.eyebrow {
  color: var(--deep-teal);
}

h1 {
  font-size: clamp(42px, 5vw, 68px);
}

.lead {
  color: #5D7280;
}

.hero-visual,
.card,
.panel,
.process-step,
.article-aside,
.form-shell,
.proof-stat {
  border-color: rgba(16, 42, 51, .12);
  box-shadow: 0 18px 44px rgba(7, 77, 97, .07);
}

.service-focus::after {
  display: none;
}

.service-focus-top {
  border-bottom: 1px solid rgba(16, 42, 51, .1);
  background: #FFFFFF;
  color: #5D7280;
}

.service-focus-top h2 {
  color: var(--charcoal);
}

.service-focus-top p {
  color: #5D7280;
}

.hero-kicker {
  color: var(--deep-teal);
}

.focus-list {
  background: #F8FBFB;
}

.focus-item span {
  background: rgba(141, 181, 31, .16);
  color: var(--deep-teal);
}

.card,
.process-step,
.form-shell,
.article-aside {
  background: rgba(255, 255, 255, .96);
}

.card-accent {
  border-top-color: rgba(141, 181, 31, .62);
}

.panel {
  border: 1px solid rgba(16, 42, 51, .12);
  background: #FFFFFF;
  color: #5D7280;
}

.panel h2,
.panel h3,
.panel h4 {
  color: var(--charcoal);
}

.panel p {
  color: #5D7280;
}

.check-list li {
  color: #5D7280;
}

.cta-band {
  border-top: 1px solid rgba(16, 42, 51, .1);
  border-bottom: 1px solid rgba(16, 42, 51, .1);
  background: #F5F9FA;
  color: #5D7280;
}

.cta-band h2 {
  color: var(--charcoal);
}

.site-footer {
  background: #102A33;
}

.site-footer img {
  box-shadow: none;
}

.product-body {
  --product-navy: #071E49;
  --product-blue: #0057D9;
  --product-cyan: #16C7D8;
  --product-soft: #EAF8FC;
  background: linear-gradient(180deg, #FFFFFF 0%, #F3F7FA 58%, #EEF6FA 100%);
  color: #102027;
}

.product-header {
  background: rgba(248, 251, 251, .9);
  border-bottom: 1px solid rgba(16, 32, 39, .08);
  box-shadow: none;
}

.product-header-inner {
  min-height: 84px;
}

.product-brand {
  flex-direction: row;
  align-items: center;
  gap: 13px;
}

.product-brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border: 1px solid rgba(0, 87, 217, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .78);
}

.product-brand-copy {
  display: grid;
  margin-top: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.product-brand strong {
  color: #102027;
  font-size: 16px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-brand span span,
.product-brand-copy > span {
  margin-top: 1px;
  color: #64748B;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.product-nav {
  gap: 20px;
  font-size: 15px;
  font-weight: 700;
}

.product-nav a {
  color: #64748B;
}

.product-nav a:hover {
  color: var(--product-navy);
}

.product-cta {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--product-navy);
  color: #FFFFFF !important;
}

.product-hero {
  padding: 86px 0 42px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F7FBFD 100%);
  color: #102027;
}

.product-hero h1,
.product-hero h2,
.product-hero h3 {
  color: #102027;
}

.product-hero .eyebrow {
  color: var(--product-navy);
}

.product-hero .lead {
  color: #64748B;
}

.product-note {
  margin: 14px 0 0;
  color: #102027;
  font-weight: 700;
}

.product-trust-row {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.product-pill {
  min-height: auto;
  border: 0;
  border-radius: 0;
  padding: 0 0 0 22px;
  background: transparent;
  color: #102027;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

.product-pill::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--product-cyan);
  box-shadow: 0 0 0 5px rgba(22, 199, 216, .14);
}

.product-visual {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(16, 32, 39, .12);
  border-radius: 8px;
  background: #FFFFFF;
  box-shadow: 0 20px 50px rgba(7, 30, 73, .12);
}

.product-visual img {
  border: 1px solid rgba(16, 32, 39, .08);
  border-radius: 8px;
}

.product-snapshot {
  padding: 18px;
  border: 1px solid rgba(0, 87, 217, .18);
  border-radius: 8px;
  background: #FFFFFF;
}

.product-snapshot p {
  margin: 0 0 10px;
  color: var(--product-navy);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.product-snapshot strong {
  color: #102027;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 500;
}

.product-logo-word {
  color: var(--product-navy);
}

.product-logo-word span {
  color: var(--product-cyan);
}

.proof-stat {
  border-color: rgba(16, 32, 39, .1);
}

.proof-stat strong {
  color: var(--product-navy);
}

.product-footer {
  border-top: 1px solid rgba(16, 32, 39, .1);
  background: #FFFFFF;
  color: #64748B;
}

.product-footer a {
  color: var(--product-navy);
}

@media (max-width: 1080px) {
  .main-nav {
    background: #FFFFFF;
  }

  .nav-cta {
    border-radius: 999px;
  }
}

@media (max-width: 860px) {
  .product-header-inner {
    flex-direction: row;
    align-items: center;
  }

  .product-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}

@media (max-width: 620px) {
  .hero,
  .product-hero,
  .page-hero {
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 38px);
  }

  .brand-link img {
    width: 210px;
  }

  .product-brand-logo {
    width: 54px;
    height: 54px;
  }

  .product-brand strong {
    font-size: 14px;
  }

  .product-visual {
    padding: 14px;
  }
}

@media (max-width: 700px) {
  .product-header-inner {
    min-height: 78px;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .product-nav {
    display: none;
  }
}

@media (max-width: 430px) {
  .product-brand {
    gap: 9px;
  }

  .product-brand-logo {
    width: 48px;
    height: 48px;
  }

  .product-brand-copy > span {
    font-size: 12px;
  }

  .product-cta {
    padding: 0 13px;
  }
}
