:root {
  color-scheme: light;
  --ink: #071118;
  --ink-soft: #27343d;
  --muted: #64717b;
  --line: #dce3e8;
  --paper: #ffffff;
  --paper-soft: #f4f7f9;
  --paper-blue: #eef3fb;
  --red: #005bac;
  --red-dark: #004a8f;
  --cyan: #0078d4;
  --cyan-soft: #deeaf8;
  --navy: #001e3c;
  --navy-2: #002d5a;
  --shadow: 0 24px 70px rgba(7, 17, 24, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

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

.section {
  padding: clamp(70px, 8vw, 116px) clamp(18px, 4vw, 54px);
}

.section > * {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 16% 18%, rgba(0, 120, 212, 0.26), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(0, 91, 172, 0.22), transparent 32%),
    linear-gradient(135deg, #001020 0%, #001e3c 48%, #002d5a 100%);
}

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

.hero {
  min-height: clamp(560px, 62vh, 680px);
  display: grid;
  align-items: center;
  padding-right: clamp(18px, 4vw, 54px);
  padding-left: clamp(18px, 4vw, 54px);
  padding-top: clamp(34px, 4vw, 56px);
  padding-bottom: clamp(36px, 4vw, 56px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(520px, 0.98fr) minmax(360px, 0.76fr);
  align-items: center;
  width: 100%;
  max-width: 1360px;
  gap: clamp(28px, 4vw, 56px);
  margin-right: auto;
  margin-left: auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #6eb5ff;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-sub {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 650;
  line-height: 1.35;
}

.hero-lede {
  max-width: 690px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.6vw, 18px);
}

.trust-badge {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-actions,
.hero-metrics,
.signal-row,
.form-row {
  display: flex;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff !important;
  background: var(--red) !important;
  box-shadow: 0 16px 32px rgba(0, 91, 172, 0.28) !important;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark) !important;
}

.button-secondary {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
}

.hero-metrics {
  flex-wrap: wrap;
  gap: 16px;
  margin: 46px 0 0;
}

.hero-metrics div {
  width: min(100%, 198px);
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.hero-metrics dt {
  color: #fff;
  font-size: 17px;
  font-weight: 850;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 580px;
  justify-self: end;
  padding: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.35);
}

.hero-visual::after {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 42%;
  height: 36%;
  content: "";
  background: linear-gradient(135deg, rgba(0, 91, 172, 0.9), rgba(0, 120, 212, 0.78));
  border-radius: 8px;
  filter: blur(22px);
  opacity: 0.45;
  z-index: 0;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.section-heading {
  max-width: var(--max);
}

.section-heading:not(.split) h2,
.section-heading:not(.split) p:not(.eyebrow) {
  max-width: none;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-dark .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: 34px;
  max-width: var(--max);
}

.intro {
  padding-top: 74px;
  padding-bottom: 74px;
}

.signal-row {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.signal-row span {
  padding: 10px 14px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 750;
  background: var(--paper-blue);
  border: 1px solid #cde6ea;
  border-radius: 999px;
}

.country-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.country-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 750;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(7, 17, 24, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.country-tags span::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
}

.card-grid,
.product-grid,
.enablement-grid {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

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

.card,
.product-card,
.contact-card,
.apply-contact-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(7, 17, 24, 0.06);
}

.card,
.product-card {
  min-height: 100%;
  padding: 26px;
}

.card-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 24px;
  color: var(--red);
  font-size: 13px;
  font-weight: 850;
  background: #e8f1fb;
  border: 1px solid #b8d0f0;
  border-radius: 8px;
}

.card p,
.feature p,
.product-card p,
.product-card li,
.region-panel p,
.region-list span,
.contact-card p,
.privacy-note {
  color: var(--muted);
}

.why-heading {
  text-align: left;
  max-width: var(--max);
  margin: 0 auto 38px;
}

.why-heading h2 {
  margin-top: 10px;
}

.why-cards {
  margin-top: 0;
}

.why-card {
  text-align: left;
  padding: 32px 26px;
}

.why-icon-img {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 0 18px;
}

.why-icon {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 36px;
  line-height: 1;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 110px;
}

.text-link {
  display: inline-flex !important;
  margin-top: 26px !important;
  color: var(--red) !important;
  font-weight: 850 !important;
}

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

.feature {
  padding: 28px 0 28px 28px;
  border-left: 3px solid var(--red);
  border-bottom: 1px solid var(--line);
}

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

.enablement-grid article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.enablement-grid p {
  color: rgba(255, 255, 255, 0.7);
}

.region {
  background: linear-gradient(90deg, #fff 0%, #fff 52%, var(--paper-blue) 52%, var(--paper-blue) 100%);
}

.region-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.64fr);
  gap: 44px;
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.region-list li {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.region-list strong,
.region-list span {
  display: block;
}

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

.product-type-label {
  margin: 14px 0 4px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-tagline {
  margin: 0 0 6px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 700;
}

.product-card > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.product-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.product-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding-left: 19px;
}

.apply-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: clamp(30px, 4vw, 48px);
}

.apply-panel-left {
  padding: 32px 36px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(7, 17, 24, 0.06);
}

.apply-panel-left h3,
.apply-panel-right h3 {
  margin-bottom: 18px;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
}

.apply-checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.apply-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 16px;
}

.apply-checklist li::before {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}

.apply-panel-right {
  padding: 32px 36px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(7, 17, 24, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.apply-email-link {
  color: var(--red);
  font-size: 17px;
  font-weight: 750;
  transition: opacity 180ms ease;
}

.apply-email-link:hover {
  opacity: 0.75;
}

.apply-email-text {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 500;
}

.apply-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
}

.button-secondary-dark {
  color: var(--ink);
  background: var(--paper-soft);
  border-color: var(--line);
}

.button-secondary-dark:hover,
.button-secondary-dark:focus-visible {
  background: var(--line);
}

.apply-contact-kicker {
  margin: 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.apply-contact-email {
  color: var(--ink);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 750;
  transition: color 180ms ease;
}

.apply-contact-email:hover {
  color: var(--red);
}

.contact-card {
  margin-top: 28px;
  padding: 24px;
}

.contact-card a {
  color: var(--red);
  font-weight: 750;
}

.office-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.office-list li {
  display: grid;
  gap: 3px;
  padding: 16px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.office-list strong {
  color: var(--red);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.office-list span {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.office-hours {
  color: var(--muted) !important;
  font-size: 12px !important;
  margin-top: 4px;
}

.partner-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

.apply-contact-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(7, 17, 24, 0.06);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.apply-contact-panel h3 {
  font-size: 24px;
  color: var(--ink);
}

.apply-contact-panel p {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
}

.apply-email-btn {
  align-self: flex-start;
  font-size: 16px;
  padding: 15px 28px;
}

.apply-note {
  font-size: 13px;
  color: var(--muted);
}

.page-anchors {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-anchors a {
  display: block !important;
  padding: 8px 14px !important;
  color: var(--ink-soft) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid var(--line) !important;
  border-radius: 6px !important;
  box-shadow: 0 2px 8px rgba(7, 17, 24, 0.08) !important;
  backdrop-filter: blur(8px) !important;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease !important;
  white-space: nowrap !important;
}

.page-anchors a:hover,
.page-anchors a:focus-visible,
.page-anchors a.active {
  color: #fff !important;
  background: var(--red) !important;
  border-color: var(--red) !important;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(18px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.site-footer strong,
.site-footer a {
  color: #fff;
}

.site-footer p {
  margin: 4px 0 0;
}

@media (max-width: 1320px) {
  .page-anchors {
    display: none;
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .feature-layout,
  .region-panel,
  .apply-panel {
    grid-template-columns: 1fr;
  }

  .apply-panel-left {
    border-right: none;
  }

  .office-list {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 620px;
    justify-self: start;
  }

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

  .sticky-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .hero {
    min-height: 1200px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-actions .button,
  .hero-metrics div {
    width: 100%;
  }

  .section-heading.split,
  .card-grid.four,
  .product-grid,
  .enablement-grid {
    grid-template-columns: 1fr;
  }

  .region {
    background: var(--paper-blue);
  }

  .page-anchors {
    display: none;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 460px) {
  .hero-visual {
    padding: 8px;
  }

  .card,
  .product-card,
  .contact-card,
  .apply-contact-panel {
    padding: 20px;
  }
}
