﻿:root {
  --navy: #06182f;
  --navy-2: #0b2442;
  --ink: #111827;
  --muted: #667085;
  --line: #e4e7ec;
  --soft: #f5f7fb;
  --white: #ffffff;
  --blue: #175cd3;
  --teal: #0f766e;
  --green: #16a34a;
  --gold: #f59e0b;
  --accent: #b7ff2a;
  --shadow: 0 22px 70px rgba(6, 24, 47, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 24, 47, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 24, 47, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  padding: 16px clamp(22px, 5vw, 82px);
  border-bottom: 1px solid rgba(228, 231, 236, 0.78);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.brand img {
  display: block;
  width: 138px;
  max-height: 92px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #344054;
  font-size: 0.95rem;
  font-weight: 800;
}

.site-nav a {
  text-decoration: none;
}

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

.site-nav a.active {
  color: var(--blue);
}

.site-nav a.active::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--blue);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  padding: 9px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px;
  background: var(--navy);
}

.hero {
  min-height: calc(100vh - 84px);
  padding: clamp(46px, 7vw, 86px) clamp(22px, 5vw, 82px);
  background:
    radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 28%),
    radial-gradient(circle at 48% 72%, rgba(23, 92, 211, 0.28), transparent 34%),
    linear-gradient(130deg, rgba(6, 24, 47, 0.99), rgba(8, 28, 52, 0.97) 54%, rgba(15, 118, 110, 0.9)),
    var(--navy);
  color: var(--white);
}

.hero-grid {
  display: grid;
  max-width: 1480px;
  min-height: calc(100vh - 210px);
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.74fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: #7dd3fc;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--blue);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 1020px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 5vw, 5.45rem);
  line-height: 1;
  font-weight: 900;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.6vw, 4.4rem);
  line-height: 1.04;
  font-weight: 900;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.28;
}

.hero-text {
  max-width: 780px;
  margin: 26px 0 0;
  color: #d1d9e6;
  font-size: clamp(1.05rem, 1.65vw, 1.32rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-action,
.secondary-action,
.platform-card a,
.contact-form button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0 22px;
  font-weight: 900;
  text-decoration: none;
}

.primary-action,
.platform-card a,
.contact-form button {
  border: 0;
  background: var(--accent);
  color: #071a33;
  cursor: pointer;
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.hero-board {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.28);
  padding: clamp(22px, 3vw, 34px);
}

.board-header,
.board-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.board-header span,
.board-footer span {
  color: #d6deea;
  font-weight: 800;
}

.board-header strong {
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  padding: 8px 10px;
  color: var(--accent);
  font-size: 0.84rem;
}

.board-metrics {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  gap: 10px;
  margin: 26px 0;
}

.board-metrics article {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 24, 47, 0.46);
  padding: 16px;
}

.board-metrics span {
  display: block;
  min-height: 38px;
  color: #b8c4d6;
  font-size: 0.83rem;
  font-weight: 800;
}

.board-metrics strong {
  display: block;
  margin-top: 10px;
  color: var(--white);
  font-size: 2.6rem;
}

.board-chart {
  display: flex;
  height: 230px;
  align-items: end;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  padding: 20px;
}

.board-chart div {
  flex: 1;
  min-width: 0;
  background: linear-gradient(180deg, var(--accent), var(--teal));
}

.board-footer {
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 18px;
}

.cred-strip {
  display: grid;
  max-width: 1480px;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin: -34px auto 0;
  padding: 0 clamp(22px, 5vw, 82px);
}

.cred-strip span {
  min-height: 86px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 24px 18px;
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(6, 24, 47, 0.08);
}

.section,
.contact-section {
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(78px, 9vw, 132px) clamp(22px, 5vw, 82px);
}

.split-head,
.platform-layout,
.research-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.split-head p,
.platform-layout p,
.research-panel p,
.contact-section p,
.service-grid p,
.platform-card p,
.research-list span {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  border: 1px solid var(--line);
  background: var(--line);
}

.belief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.belief-grid article {
  border-top: 5px solid var(--navy);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(6, 24, 47, 0.08);
  padding: 28px;
}

.belief-grid strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 2.2rem);
  line-height: 1.1;
  font-weight: 900;
}

.belief-grid p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.68;
}

.capability-kicker {
  margin-top: 62px;
}

.service-grid article {
  min-height: 300px;
  background: var(--white);
  padding: 28px;
}

.service-grid span {
  display: block;
  margin-bottom: 48px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 900;
}

.service-grid h3 {
  margin-bottom: 14px;
}

.platform-section {
  max-width: none;
  background: var(--white);
}

.platform-section > * {
  max-width: 1480px;
  margin-right: auto;
  margin-left: auto;
}

.platform-card {
  border-left: 5px solid var(--accent);
  background: var(--navy);
  box-shadow: var(--shadow);
  padding: 30px;
  color: var(--white);
}

.platform-card-top {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.platform-card-top span {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-card-top strong {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
}

.platform-card p {
  color: #d0d8e5;
}

.platform-card a {
  margin-top: 20px;
}

.product-suite {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.product-tile {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  background: #f8fafc;
  padding: 24px;
  text-decoration: none;
  transition:
    background 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.product-tile:hover {
  z-index: 1;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.product-tile-muted {
  color: inherit;
}

.product-tile span {
  display: block;
  color: var(--teal);
  font-size: 1rem;
  font-weight: 900;
}

.product-tile strong {
  display: block;
  margin-top: 36px;
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.15;
}

.product-tile p {
  margin: 14px 0 24px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

.product-tile em {
  margin-top: auto;
  color: var(--blue);
  font-style: normal;
  font-weight: 900;
}

.product-row article {
  min-height: 130px;
  background: #f8fafc;
  padding: 24px;
}

.product-row strong {
  display: block;
  color: var(--teal);
  font-size: 1.6rem;
}

.product-row span {
  display: block;
  margin-top: 16px;
  color: var(--navy);
  font-weight: 900;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 42px;
}

.industry-grid span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  padding: 18px;
  color: var(--navy);
  font-weight: 900;
}

.proof-section {
  max-width: none;
  background:
    linear-gradient(135deg, rgba(6, 24, 47, 0.98), rgba(6, 24, 47, 0.92)),
    var(--navy);
  color: var(--white);
}

.proof-section > * {
  max-width: 1480px;
  margin-right: auto;
  margin-left: auto;
}

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

.proof-section .split-head p {
  color: #cbd5e1;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.16);
}

.proof-grid article {
  min-height: 330px;
  background: rgba(255, 255, 255, 0.06);
  padding: 30px;
}

.proof-grid span {
  display: block;
  min-height: 42px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.55;
  text-transform: uppercase;
}

.proof-grid h3 {
  margin-top: 38px;
  color: var(--white);
  font-size: 1.75rem;
}

.proof-grid p {
  color: #d7dee9;
  font-size: 1rem;
  line-height: 1.7;
}

.proof-grid a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--accent);
  font-weight: 900;
  text-decoration: none;
}

.research-section {
  align-items: stretch;
}

.research-panel {
  background: var(--navy);
  padding: clamp(28px, 5vw, 54px);
  color: var(--white);
}

.research-panel h2 {
  color: var(--white);
}

.research-panel p {
  color: #d0d8e5;
}

.research-list {
  display: grid;
  gap: 12px;
}

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

.research-list strong {
  display: block;
  color: var(--navy);
  font-size: 1.14rem;
}

.research-list span {
  display: block;
  margin-top: 10px;
}

.contact-section {
  position: relative;
  align-items: center;
  max-width: 1584px;
  grid-template-columns: minmax(380px, 0.74fr) minmax(720px, 1.08fr);
  gap: clamp(34px, 4.4vw, 64px);
  margin-top: clamp(18px, 3vw, 38px);
  margin-bottom: clamp(34px, 5vw, 70px);
  padding: clamp(46px, 5vw, 72px) clamp(42px, 5vw, 72px);
  border: 1px solid #d8e6f7;
  border-radius: 18px;
  background:
    linear-gradient(155deg, rgba(255,255,255,0.48) 0 21%, transparent 21% 100%),
    radial-gradient(ellipse at 17% 115%, rgba(116, 175, 255, 0.24), transparent 55%),
    radial-gradient(circle at 13% 24%, rgba(23, 92, 211, 0.12), transparent 28%),
    radial-gradient(circle at 78% 15%, rgba(15, 118, 110, 0.08), transparent 30%),
    linear-gradient(145deg, #edf6ff 0%, #f7fbff 46%, #ffffff 100%);
  box-shadow: 0 18px 50px rgba(18, 48, 92, 0.08), 0 2px 8px rgba(18, 48, 92, 0.04);
  overflow: visible;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 48%;
  background:
    linear-gradient(150deg, rgba(255,255,255,0.42), transparent 58%),
    radial-gradient(ellipse at 40% 105%, rgba(23, 92, 211, 0.12), transparent 52%);
  pointer-events: none;
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-copy {
  max-width: 620px;
}

.contact-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #074db3;
}

.contact-copy .eyebrow::after {
  content: "";
  width: 72px;
  height: 2px;
  background: #2a71d0;
}

.contact-copy h2 {
  color: #070d52;
  max-width: 610px;
  font-size: clamp(3.1rem, 4.7vw, 4.65rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.contact-copy p {
  max-width: 560px;
  margin-top: 22px;
  color: #41516d;
  font-size: 1.08rem;
  line-height: 1.58;
}

.contact-line {
  margin-top: 20px !important;
  color: #102449;
  font-size: 0.98rem !important;
  font-weight: 850;
}

.contact-focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
  margin-top: 34px;
}

.contact-focus-grid span {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #112656;
  font-weight: 720;
  font-size: 0.98rem;
}

.contact-focus-grid b {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 999px;
  background: #e4f0ff;
  color: #064db3;
  box-shadow: inset 0 0 0 1px rgba(6,77,179,.08), 0 10px 22px rgba(6,77,179,.08);
}

.contact-focus-grid svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid #bfd0e8;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 18px 50px rgba(18, 48, 92, 0.08), 0 2px 8px rgba(18, 48, 92, 0.04);
  padding: clamp(28px, 3vw, 38px);
  border-radius: 18px;
}

.form-head {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: start;
  margin-bottom: 8px;
}

.form-head h3 {
  position: relative;
  color: #070d52;
  font-size: clamp(1.8rem, 2.2vw, 2.3rem);
  line-height: 1;
}

.form-head h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 10px;
  background: #0b63c7;
}

.form-head p,
.field-help {
  margin: 0;
  color: #4f5f7a;
  font-size: 0.84rem;
  line-height: 1.55;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: #070d52;
  font-weight: 900;
  font-size: 0.9rem;
  line-height: 1.2;
}

.label-text {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  min-height: 17px;
  color: #070d52 !important;
}

.label-text b {
  color: #c5162e;
  font-size: 0.92em;
  line-height: 1;
}

.contact-form label > span:not(.label-text) {
  color: #b42318;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #c9d6e8;
  border-radius: 8px;
  background: var(--white);
  min-height: 46px;
  padding: 12px 15px;
  font: inherit;
  color: #070d52;
  font-weight: 650;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #071a52 50%),
    linear-gradient(135deg, #071a52 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7f8da6;
  opacity: 1;
  font-weight: 650;
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover,
.contact-phone-field .iti__tel-input:hover {
  border-color: #9eb7d8;
}

.contact-form textarea {
  min-height: 92px;
  padding-top: 14px;
  resize: vertical;
}

.contact-phone-field {
  width: 100%;
}

.contact-phone-field .iti {
  display: block;
  width: 100%;
  height: 46px;
  z-index: 30;
}

.contact-phone-field .iti__tel-input {
  width: 100%;
  min-height: 46px;
  height: 46px;
  border: 1px solid #c9d6e8;
  border-radius: 8px;
  background: #ffffff;
  color: #070d52;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 46px;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 15px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.contact-phone-field .iti__tel-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23, 92, 211, 0.16);
}

.contact-phone-field .iti__country-container {
  top: 0;
  bottom: 0;
  height: 46px;
  display: flex;
  align-items: center;
  border-right: 1px solid #d8e2f0;
}

.contact-phone-field .iti__selected-country {
  min-width: 104px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  border-radius: 8px 0 0 8px;
  background: #f8fbff;
}

.contact-phone-field .iti__selected-country-primary {
  display: inline-flex;
  height: 46px;
  align-items: center;
  gap: 7px;
  line-height: 1;
}

.contact-phone-field .iti__selected-dial-code {
  color: #10234a;
  font-weight: 750;
  line-height: 1;
}

.contact-phone-field .iti__arrow {
  margin-left: 5px;
  transform: translateY(1px);
}

.contact-phone-field .iti button {
  width: auto;
  min-width: 0;
  height: 46px;
  min-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  background: transparent;
  border: 0;
  border-radius: 8px 0 0 8px;
  box-shadow: none;
}

.iti__dropdown-content,
.iti--container .iti__dropdown-content {
  z-index: 99999;
  max-height: 300px;
  overflow: hidden;
  border: 1px solid #c9d6e8 !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  box-shadow: 0 18px 45px rgba(6, 24, 47, 0.16) !important;
}

.iti__search-input {
  width: calc(100% - 16px) !important;
  height: 42px !important;
  margin: 8px !important;
  padding: 0 36px 0 38px !important;
  border: 1px solid #d4deeb !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  color: #10234a !important;
  font: inherit !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  outline: 0 !important;
}

.iti__search-input:focus {
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 3px rgba(23, 92, 211, 0.12) !important;
}

.iti__search-input::placeholder {
  color: #7f8da6 !important;
}

.iti__country-list {
  max-height: 238px !important;
  overflow-y: auto !important;
  background: #ffffff !important;
}

.iti__country {
  min-height: 42px;
  padding: 9px 12px !important;
  color: #10234a;
  font-size: 0.9rem;
  font-weight: 560;
}

.iti__country:hover,
.iti__country.iti__highlight {
  background: #f0f6ff !important;
}

.iti__country.iti__active {
  background: #eaf2ff !important;
  color: #062b78 !important;
}

.iti__country.iti__active::before {
  content: "✓";
  display: inline-block;
  width: 16px;
  margin-right: 4px;
  color: #064db3;
  font-weight: 900;
}

.iti__dial-code {
  color: #697891 !important;
  font-weight: 520 !important;
}

.iti__flag {
  transform: scale(1.08);
  transform-origin: center;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.privacy-check input:focus-visible,
.success-secondary:focus-visible,
.success-primary:focus-visible {
  outline: 3px solid rgba(23, 92, 211, 0.24);
  outline-offset: 2px;
  border-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(23, 92, 211, 0.12);
}

.contact-form label.has-error input,
.contact-form label.has-error textarea,
.contact-form label.has-error select,
.contact-form label.has-error .iti__tel-input {
  border-color: #c5162e;
  box-shadow: 0 0 0 3px rgba(197, 22, 46, 0.1);
}

.field-error {
  display: block;
  min-height: 16px;
  color: #b42318 !important;
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.35;
}

.privacy-check {
  display: grid !important;
  grid-template-columns: 19px minmax(0, 1fr) !important;
  gap: 11px !important;
  align-items: flex-start;
  color: var(--muted) !important;
  margin-top: 8px;
  font-size: 0.86rem !important;
  font-weight: 600 !important;
  line-height: 1.5;
}

.privacy-check input {
  width: 19px;
  min-width: 19px;
  height: 19px;
  min-height: 0;
  margin-top: 1px;
  accent-color: #064db3;
  padding: 0;
  border-radius: 4px;
  display: block;
}

.privacy-check span {
  display: block;
  padding-top: 0;
  color: var(--muted) !important;
}

.privacy-check a {
  color: var(--blue);
  font-weight: 800;
}

.contact-form button {
  min-height: 58px;
  display: inline-flex;
  gap: 13px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, #064db3, #082b7a);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(6, 77, 179, 0.26);
  font-size: 1rem;
}

.contact-form button span[aria-hidden="true"] {
  font-size: 1.26rem;
  line-height: 1;
  transform: translateY(-1px);
}

.contact-form button:hover {
  background: linear-gradient(135deg, #075ecf, #092f86);
}

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

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.form-status.success {
  color: #0f766e;
}

.form-status.error {
  color: #b42318;
}

.contact-success-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
}

.success-mark {
  display: inline-flex;
  width: 74px;
  height: 74px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #d1fadf;
  color: #067647;
  font-size: 2.2rem;
  font-weight: 900;
}

.contact-success-card h3 {
  margin-top: 22px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.contact-success-card p {
  color: var(--navy);
}

.success-primary,
.success-secondary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 900;
}

.success-primary {
  width: 100%;
  margin-top: 16px;
  background: linear-gradient(135deg, #064db3, #082b7a);
  color: var(--white);
  text-decoration: none;
}

.success-secondary {
  margin-top: 12px;
  border: 0;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  text-decoration: underline;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  background: var(--navy);
  padding: 34px clamp(22px, 5vw, 82px);
  color: #cbd5e1;
}

.site-footer img {
  width: 150px;
  max-height: 116px;
  height: auto;
  object-fit: contain;
  padding: 10px;
  border-radius: 16px;
  background: #ffffff;
}

.site-footer span {
  display: block;
  margin-top: 10px;
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  color: #cbd5e1;
}

.legal-page {
  background: #f7f9fc;
}

.legal-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 64px);
}

.legal-hero {
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 10%, rgba(183, 255, 42, 0.18), transparent 28%),
    linear-gradient(135deg, #06182f, #0b2442 58%, #0f766e);
  box-shadow: var(--shadow);
  padding: clamp(30px, 6vw, 58px);
  color: var(--white);
}

.legal-hero h1 {
  max-width: 780px;
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 4.6rem);
}

.legal-hero p {
  max-width: 820px;
  color: #d1d9e6;
  font-size: 1.03rem;
  line-height: 1.75;
}

.legal-content {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.legal-content article,
.legal-note {
  border: 1px solid var(--line);
  background: var(--white);
  padding: clamp(22px, 4vw, 34px);
}

.legal-content h2 {
  margin-bottom: 12px;
  font-size: clamp(1.32rem, 2.4vw, 2rem);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 22px;
}

.legal-content a {
  color: var(--blue);
  font-weight: 800;
}

.legal-note {
  border-left: 5px solid var(--accent);
  background: #fbfdf7;
}

.legal-note strong {
  color: var(--navy);
}

@media (max-width: 1080px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    background: var(--white);
    padding: 14px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .hero-grid,
  .split-head,
  .platform-layout,
  .research-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-section {
    margin: 26px 16px;
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .contact-section::before {
    width: 100%;
  }

  .contact-copy {
    max-width: 720px;
  }

  .hero {
    min-height: auto;
  }

  .cred-strip,
  .belief-grid,
  .service-grid,
  .product-suite,
  .product-row,
  .industry-grid,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  body::before {
    background-size: 44px 44px;
  }

  .site-header {
    min-height: 72px;
    padding: 12px 16px;
  }

  .brand img {
    width: 120px;
    max-height: 82px;
  }

  .hero,
  .section,
  .contact-section {
    overflow-x: hidden;
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 42px;
  }

  .hero-grid {
    gap: 28px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  h1 {
    font-size: 2.42rem;
    line-height: 1.03;
  }

  h2 {
    font-size: 1.86rem;
    line-height: 1.12;
  }

  .hero-text,
  .split-head p,
  .platform-layout p,
  .research-panel p,
  .contact-section p,
  .service-grid p,
  .platform-card p,
  .research-list span {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
  }

  .form-head,
  .privacy-check {
    display: grid !important;
  }

  .contact-focus-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .primary-action,
  .secondary-action,
  .platform-card a,
  .contact-form button {
    width: 100%;
  }

  .hero-board {
    padding: 18px;
  }

  .board-header,
  .board-footer {
    display: grid;
  }

  .board-chart {
    height: 170px;
  }

  .board-metrics,
  .cred-strip,
  .belief-grid,
  .service-grid,
  .product-suite,
  .product-row,
  .industry-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .cred-strip {
    margin-top: 0;
    padding-top: 16px;
  }

  .service-grid article,
  .belief-grid article,
  .proof-grid article,
  .product-tile {
    min-height: auto;
  }

  .proof-grid h3 {
    margin-top: 24px;
    font-size: 1.38rem;
  }

  .product-tile strong {
    margin-top: 24px;
    font-size: 1.24rem;
  }

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

  .legal-nav {
    display: flex;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: 110px;
    max-height: 76px;
  }

  h1 {
    font-size: 2.12rem;
  }

  h2 {
    font-size: 1.64rem;
  }

  .board-metrics strong {
    font-size: 2.1rem;
  }
}

