:root {
  --ink: #0b1726;
  --ink-2: #24344a;
  --muted: #657184;
  --line: #dbe3ed;
  --line-strong: #b8c5d3;
  --surface: #ffffff;
  --surface-2: #f4f7fa;
  --surface-3: #e9eef4;
  --blue: #0e4e8f;
  --blue-dark: #082f5d;
  --red: #a52924;
  --amber: #d08a21;
  --steel: #6e7d8e;
  --shadow: 0 14px 34px rgba(13, 32, 55, 0.12);
  --radius: 6px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(184, 197, 211, 0.75);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 178px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  border: 1px solid var(--line-strong);
  background: #fff;
}

.brand-mark span:nth-child(1) {
  background: var(--red);
}

.brand-mark span:nth-child(2) {
  background: var(--ink);
}

.brand-mark span:nth-child(3) {
  background: var(--steel);
}

.brand-mark span:nth-child(4) {
  background: var(--blue);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
}

.brand-tag {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  padding: 24px 0 22px;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--blue);
  border-color: var(--red);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  flex: 0 0 auto;
  white-space: nowrap;
}

.nav-links .nav-cta {
  min-width: 104px;
  padding: 0 18px;
  border-bottom: 0;
}

.nav-cta:hover,
.nav-cta.is-active {
  background: var(--blue-dark);
}

.hero {
  position: relative;
  min-height: 78vh;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}

.hero--compact {
  min-height: 52vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 20, 35, 0.92), rgba(7, 20, 35, 0.63) 52%, rgba(7, 20, 35, 0.25));
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  min-height: inherit;
  margin: 0 auto;
  padding: 110px 0 74px;
  display: grid;
  align-content: center;
  gap: 32px;
}

.hero-kicker,
.section-kicker,
.eyebrow {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-kicker {
  color: #ffcbc7;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 930px;
  margin-bottom: 18px;
  font-size: 64px;
  line-height: 1.03;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero--compact h1 {
  max-width: 820px;
  font-size: 52px;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 0;
  color: #d9e4ef;
  font-size: 20px;
  overflow-wrap: break-word;
}

.hero-actions,
.cta-row,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
}

.button-primary {
  background: var(--red);
  color: #fff;
}

.button-primary:hover {
  background: #8b211d;
}

.button-secondary {
  background: #fff;
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--surface-3);
}

.button-outline {
  border-color: var(--line-strong);
  background: #fff;
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.proof-strip {
  width: min(var(--max), calc(100% - 40px));
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.proof-item {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-number {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.proof-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.band {
  padding: 86px 0;
}

.band-tight {
  padding: 60px 0;
}

.band-muted {
  background: var(--surface-2);
}

.band-dark {
  background: var(--ink);
  color: #fff;
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.46fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 36px;
}

.section-head h2,
.single-head h2 {
  margin-bottom: 0;
  font-size: 42px;
  line-height: 1.12;
  overflow-wrap: break-word;
}

.section-head p,
.single-head p {
  color: var(--muted);
  margin-bottom: 0;
}

.band-dark .section-head p,
.band-dark .single-head p,
.band-dark .muted {
  color: #b8c6d6;
}

.single-head {
  max-width: 820px;
  margin-bottom: 36px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.card-body {
  padding: 24px;
}

.card h3 {
  margin-bottom: 9px;
  font-size: 22px;
  line-height: 1.24;
  overflow-wrap: break-word;
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.card-media {
  aspect-ratio: 16 / 10;
  background: var(--surface-3);
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 900;
}

.feature-card {
  min-height: 100%;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
  overflow-wrap: break-word;
}

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

.numbered {
  counter-reset: item;
}

.numbered .feature-card {
  position: relative;
  padding-top: 64px;
}

.numbered .feature-card::before {
  counter-increment: item;
  content: "0" counter(item);
  position: absolute;
  top: 22px;
  left: 24px;
  color: var(--red);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 40px;
  align-items: center;
}

.split-image {
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-3);
}

.split-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.image-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
}

.image-grid img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  border-radius: var(--radius);
}

.image-grid img:first-child {
  grid-row: span 2;
}

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

.tag-list li,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.band-dark .pill,
.band-dark .tag-list li {
  border-color: rgba(255, 255, 255, 0.18);
  color: #eef5fb;
  background: rgba(255, 255, 255, 0.08);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.spec-table th,
.spec-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 28%;
  color: var(--ink);
  background: var(--surface-2);
  font-size: 14px;
  text-transform: uppercase;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: #fff;
}

.process-step {
  padding: 26px 22px;
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.process-step strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 14px;
  text-transform: uppercase;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.quote-band {
  background: var(--blue-dark);
  color: #fff;
}

.quote-box {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.42fr);
  gap: 36px;
  align-items: center;
}

.quote-box h2 {
  margin-bottom: 12px;
  font-size: 40px;
  line-height: 1.16;
  overflow-wrap: break-word;
}

.quote-box p {
  margin-bottom: 0;
  color: #d3dfec;
}

.form {
  display: grid;
  gap: 14px;
}

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

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

.field label {
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

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

.form-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-card h2,
.form-card h3 {
  margin-bottom: 12px;
}

.form-status {
  min-height: 24px;
  margin: 8px 0 0;
  color: var(--blue);
  font-weight: 800;
}

.download-lock {
  display: grid;
  gap: 18px;
  padding: 26px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.insight-item {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.insight-date {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.insight-item h3 {
  margin-bottom: 8px;
}

.site-footer {
  background: #071423;
  color: #e8f0f8;
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 52px 0 34px;
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 44px;
}

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

.footer-title {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 8px;
  color: #b8c6d6;
  font-size: 14px;
}

.footer-bottom {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9cabbc;
  font-size: 13px;
}

.muted {
  color: var(--muted);
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.media-shadow {
  box-shadow: var(--shadow);
}

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

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 12px;
  }

  .nav-links .nav-cta {
    width: 100%;
    min-width: 0;
  }

  h1 {
    font-size: 48px;
  }

  .hero--compact h1 {
    font-size: 42px;
  }

  .section-head,
  .split,
  .quote-box,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

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

  .process-step {
    border-bottom: 1px solid var(--line);
  }

  .process-step:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .header-inner,
  .hero-inner,
  .container,
  .proof-strip,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 28px, var(--max));
    max-width: calc(100vw - 28px);
  }

  .hero {
    min-height: 82vh;
  }

  .hero--compact {
    min-height: 48vh;
  }

  .hero-inner {
    padding: 78px 0 56px;
  }

  h1,
  .hero--compact h1 {
    font-size: 36px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .proof-strip,
  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid,
  .image-grid,
  .footer-grid,
  .process {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    margin-top: 0;
    border-left: 0;
    border-right: 0;
  }

  .proof-item,
  .process-step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child,
  .process-step:last-child {
    border-bottom: 0;
  }

  .band {
    padding: 64px 0;
  }

  .section-head h2,
  .single-head h2,
  .quote-box h2 {
    font-size: 28px;
  }

  .split-image {
    min-height: 280px;
  }

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

@media (max-width: 430px) {
  .brand {
    min-width: auto;
  }

  .brand-tag {
    display: none;
  }

  h1,
  .hero--compact h1 {
    font-size: 32px;
  }

  .section-head h2,
  .single-head h2,
  .quote-box h2 {
    font-size: 27px;
  }

  .button {
    width: 100%;
  }
}
