:root {
  --blue: #2d63ae;
  --blue-2: #2688c2;
  --navy: #0f2d59;
  --navy-2: #13386f;
  --teal: #1ca4ac;
  --orange: #f6a21c;
  --orange-deep: #f08b00;
  --green: #33b36b;
  --ink: #10233d;
  --muted: #69788f;
  --line: #dbe5f1;
  --soft: #f4f8fc;
  --soft-2: #eef4fa;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(15, 45, 89, .16);
  --shadow-sm: 0 16px 44px rgba(15, 45, 89, .09);
  --shadow-card: 0 18px 46px rgba(17, 43, 82, .12);
  --radius: 8px;
  font-family: Arial, Helvetica, sans-serif;
  color-scheme: light;
}

html[data-theme="dark"] {
  --blue: #80a8ff;
  --blue-2: #49b2e1;
  --navy: #eaf2ff;
  --navy-2: #dce9ff;
  --teal: #50d1d2;
  --orange: #ffb43b;
  --orange-deep: #ff9c0f;
  --green: #57cf86;
  --ink: #edf4ff;
  --muted: #afbdd2;
  --line: #28456b;
  --soft: #0f1f35;
  --soft-2: #132842;
  --white: #0b1728;
  --shadow: 0 24px 80px rgba(0, 0, 0, .34);
  --shadow-sm: 0 16px 44px rgba(0, 0, 0, .24);
  --shadow-card: 0 18px 46px rgba(0, 0, 0, .3);
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 18px;
  top: -60px;
  z-index: 1000;
  background: var(--orange);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 700;
}

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

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

.top-strip {
  background: #112c57;
  color: var(--white);
  font-size: 13px;
}

.top-strip__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  overflow-wrap: anywhere;
}

.top-strip a {
  text-decoration: none;
  color: var(--white);
  opacity: .96;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid rgba(219, 229, 241, .9);
  backdrop-filter: blur(16px);
  transition: box-shadow .28s ease, background-color .28s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 18px 50px rgba(13, 36, 73, .12);
  background: rgba(255, 255, 255, .985);
}

html[data-theme="dark"] body {
  background: #091320;
}

html[data-theme="dark"] .site-header {
  background: rgba(9, 19, 32, .94);
  border-bottom-color: rgba(44, 69, 108, .92);
}

html[data-theme="dark"] .site-header.is-scrolled {
  background: rgba(9, 19, 32, .985);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
}

.nav-shell {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 254px;
  height: auto;
}

.brand-logo--dark {
  display: none;
}

html[data-theme="dark"] .brand-logo--light {
  display: none;
}

html[data-theme="dark"] .brand-logo--dark {
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.primary-nav a,
.nav-group > a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: color .22s ease, transform .22s ease;
}

html[data-theme="dark"] .primary-nav a,
html[data-theme="dark"] .nav-group > a,
html[data-theme="dark"] .top-strip a,
html[data-theme="dark"] .top-strip span {
  color: #edf4ff;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"],
.nav-group:hover > a {
  color: var(--blue);
  transform: translateY(-1px);
}

.nav-cta {
  border: 1px solid rgba(246, 162, 28, .85);
  color: var(--navy) !important;
  background: rgba(255, 247, 232, .92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .75);
}

html[data-theme="dark"] .nav-cta {
  background: rgba(255, 180, 59, .1);
  color: #fff3db !important;
  border-color: rgba(255, 180, 59, .5);
}

.nav-group {
  position: relative;
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: rgba(255, 255, 255, .98);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 12px;
  display: none;
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  display: grid;
}

.nav-menu a {
  padding: 10px 11px;
  min-height: 0;
  border-radius: 6px;
}

.nav-menu a:hover {
  background: var(--soft);
}

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

html[data-theme="dark"] .nav-toggle {
  background: #132842;
  border-color: #33506f;
}

html[data-theme="dark"] .nav-toggle span {
  background: #edf4ff;
}

.theme-toggle {
  min-height: 42px;
  border: 1px solid rgba(45, 99, 174, .18);
  background: linear-gradient(180deg, rgba(244, 248, 252, .96), rgba(236, 243, 250, .96));
  color: var(--navy);
  border-radius: 999px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(15, 45, 89, .08);
}

.theme-toggle span {
  min-width: 58px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  transition: background-color .2s ease, color .2s ease;
}

.theme-toggle__sun {
  background: rgba(45, 99, 174, .12);
}

html[data-theme="dark"] .theme-toggle {
  background: linear-gradient(180deg, rgba(20, 40, 66, .95), rgba(16, 31, 53, .95));
  border-color: rgba(130, 168, 255, .2);
  color: #edf4ff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .24);
}

html[data-theme="dark"] .theme-toggle__sun {
  background: transparent;
}

html[data-theme="dark"] .theme-toggle__moon {
  background: rgba(128, 168, 255, .2);
}

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

.hero {
  min-height: calc(100vh - 124px);
  position: relative;
  color: var(--white);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 26%, rgba(255, 255, 255, .08) 0, rgba(255, 255, 255, 0) 22%),
    radial-gradient(circle at 82% 18%, rgba(28, 164, 172, .26) 0, rgba(28, 164, 172, 0) 20%),
    linear-gradient(116deg, #153769 0%, #235d9c 52%, #2a93bc 100%);
}

html[data-theme="dark"] .hero {
  background:
    radial-gradient(circle at 18% 26%, rgba(255, 255, 255, .04) 0, rgba(255, 255, 255, 0) 22%),
    radial-gradient(circle at 82% 18%, rgba(73, 178, 225, .18) 0, rgba(73, 178, 225, 0) 22%),
    linear-gradient(116deg, #0d1a2b 0%, #15345f 46%, #185982 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 520px;
  height: 520px;
  top: -180px;
  right: -110px;
  background: radial-gradient(circle, rgba(255, 255, 255, .16), rgba(255, 255, 255, 0) 68%);
}

.hero::after {
  width: 440px;
  height: 440px;
  left: -140px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(246, 162, 28, .16), rgba(246, 162, 28, 0) 70%);
}

.hero__grid,
.detail-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .96fr);
  gap: 54px;
  align-items: center;
  padding: 68px 0 82px;
}

.hero__copy {
  max-width: 660px;
}

.eyebrow {
  display: inline-flex;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: .03em;
}

.hero h1,
.page-hero h1,
.detail-hero h1,
.article-hero h1 {
  margin: 14px 0 18px;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.03;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero p,
.page-hero p,
.detail-hero p,
.article-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, .9);
  margin: 0 0 18px;
  overflow-wrap: anywhere;
}

.hero__lead {
  font-size: 21px;
}

.hero__visual {
  position: relative;
  isolation: isolate;
}

.hero__visual img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 32px 85px rgba(0, 0, 0, .26);
  border: 1px solid rgba(255, 255, 255, .18);
  animation: float-card 7s ease-in-out infinite;
}

.hero-card {
  position: absolute;
  max-width: 220px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 40px rgba(7, 22, 49, .2);
}

.hero-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.hero-card span {
  display: block;
  color: rgba(255, 255, 255, .84);
  font-size: 13px;
  line-height: 1.55;
}

.hero-card--top {
  top: 34px;
  right: -28px;
  animation: float-badge 5.8s ease-in-out infinite;
}

.hero-card--bottom {
  left: -26px;
  bottom: 26px;
  animation: float-badge 6.4s ease-in-out infinite reverse;
}

.action-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1.2;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(180deg, #ffb52e, #f39a10);
  color: var(--ink);
  box-shadow: 0 14px 26px rgba(246, 162, 28, .26);
}

.btn-secondary {
  background: linear-gradient(180deg, var(--blue), #235395);
  color: var(--white);
  box-shadow: 0 16px 28px rgba(45, 99, 174, .22);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, .56);
  background: rgba(255, 255, 255, .05);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}

.text-link {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: " →";
}

.metrics-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: linear-gradient(180deg, rgba(219, 229, 241, .8), rgba(219, 229, 241, .45));
}

.metric {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 251, 255, .94));
  padding: 30px 24px;
}

.metric::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  opacity: .72;
}

.metric strong {
  display: block;
  color: var(--blue);
  font-size: 36px;
  line-height: 1.08;
}

.metric span {
  color: var(--muted);
  font-weight: 700;
}

html[data-theme="dark"] .metric {
  background: linear-gradient(180deg, rgba(14, 28, 47, .98), rgba(18, 40, 66, .96));
}

.marquee-band {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: rgba(255, 255, 255, .88);
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.marquee-track {
  display: flex;
  gap: 42px;
  width: max-content;
  padding: 16px 0;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #ffcc72);
}

.section {
  padding: 92px 0;
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(244, 248, 252, .95), rgba(238, 244, 250, .95));
}

html[data-theme="dark"] .section-muted {
  background: linear-gradient(180deg, rgba(12, 27, 44, .98), rgba(14, 32, 52, .98));
}

.section-blue {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, .11), rgba(255, 255, 255, 0) 26%),
    linear-gradient(135deg, #102c58, #245fa5);
  color: var(--white);
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 36px;
}

.section-heading h2,
.section-copy h2,
.two-column h2,
.contact-panel h2,
.article-aside h2 {
  margin: 10px 0 12px;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.12;
}

.section-heading p,
.section-copy p,
.two-column p,
.mini-card p,
.solution-card p,
.resource-card p,
.post-card p {
  color: var(--muted);
}

.section-heading.on-dark h2,
.section-heading.on-dark p {
  color: var(--white);
}

.split-grid,
.contact-grid,
.article-grid,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
  gap: 54px;
  align-items: start;
}

.visual-panel img {
  border-radius: 18px;
  box-shadow: var(--shadow);
}

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

.check-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: .44em;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--teal));
}

.check-list li::after {
  content: "";
  position: absolute;
  top: .73em;
  left: 6px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

.solution-tabs {
  background: rgba(255, 255, 255, .98);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.tab-list {
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fbfdff, #f4f8fc);
}

.tab-button {
  min-height: 62px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  padding: 0 18px;
  font-weight: 800;
  color: var(--navy);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .22s ease, color .22s ease;
}

.tab-button.is-active {
  background: linear-gradient(180deg, var(--blue), #22528f);
  color: var(--white);
}

.tab-panel {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .84fr);
  gap: 42px;
  align-items: center;
  padding: 36px;
}

.tab-panel.is-active {
  display: grid;
}

.tab-panel h3 {
  margin: 10px 0;
  font-size: 35px;
  line-height: 1.13;
  color: var(--navy);
}

.tab-panel img {
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.card-grid {
  display: grid;
  gap: 24px;
}

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

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

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

.solution-card,
.resource-card,
.post-card,
.mini-card,
.value-item,
.contact-panel,
.quote-panel,
.article-aside,
.stack-list article {
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(219, 229, 241, .95);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

html[data-theme="dark"] .solution-card,
html[data-theme="dark"] .resource-card,
html[data-theme="dark"] .post-card,
html[data-theme="dark"] .mini-card,
html[data-theme="dark"] .contact-panel,
html[data-theme="dark"] .article-body,
html[data-theme="dark"] .article-aside,
html[data-theme="dark"] .stack-list article,
html[data-theme="dark"] .solution-tabs,
html[data-theme="dark"] .gallery-grid figure,
html[data-theme="dark"] .contact-form {
  background: rgba(14, 27, 45, .98);
  border-color: #28456b;
}

html[data-theme="dark"] .tab-list {
  background: linear-gradient(180deg, #11263f, #0f2137);
}

html[data-theme="dark"] .service-cloud span {
  background: rgba(15, 30, 50, .96);
  border-color: #33506f;
  color: #edf4ff;
}

html[data-theme="dark"] .image-card::after {
  background: linear-gradient(180deg, rgba(6, 16, 29, .08) 18%, rgba(6, 16, 29, .95));
}

html[data-theme="dark"] .text-link {
  color: #95b7ff;
}

html[data-theme="dark"] .cta-band {
  background: linear-gradient(90deg, #f2a51f, #f7bd52);
}

.solution-card,
.resource-card,
.post-card {
  overflow: hidden;
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}

.solution-card:hover,
.resource-card:hover,
.post-card:hover,
.image-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 56px rgba(15, 45, 89, .14);
}

.solution-card img,
.resource-card img,
.post-card img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0d1f39;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.solution-card div,
.resource-card div,
.post-card div {
  padding: 24px;
}

.solution-card h2,
.resource-card h2,
.post-card h2,
.solution-card h3,
.resource-card h3,
.post-card h3,
.mini-card h2,
.mini-card h3,
.value-item h3,
.stack-list h3 {
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.2;
}

.post-card span {
  color: var(--orange);
  font-weight: 800;
  font-size: 13px;
}

.image-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 18px;
  text-decoration: none;
  color: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  filter: saturate(1.04);
  transition: transform .7s ease;
}

.image-card:hover img {
  transform: scale(1.05);
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 31, 61, .04) 18%, rgba(10, 31, 61, .92));
}

.image-card span {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.15;
}

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

.value-item {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .2);
  color: var(--white);
  padding: 24px;
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.value-item h3,
.value-item p {
  color: var(--white);
}

.service-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-cloud span {
  border: 1px solid rgba(194, 210, 229, .95);
  background: rgba(255, 255, 255, .95);
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 800;
  color: var(--navy);
  box-shadow: 0 8px 18px rgba(15, 45, 89, .04);
  transition: transform .2s ease, border-color .2s ease;
}

.service-cloud span:hover {
  transform: translateY(-2px);
  border-color: rgba(45, 99, 174, .34);
}

.page-hero,
.detail-hero,
.article-hero {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, .1), rgba(255, 255, 255, 0) 26%),
    linear-gradient(135deg, #12315d, #276aad);
  color: var(--white);
  padding: 90px 0 84px;
}

.detail-hero__grid {
  padding: 0;
}

.detail-hero img {
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .24);
}

.mini-card,
.quote-panel,
.article-aside,
.contact-panel,
.stack-list article {
  padding: 24px;
}

.quote-panel {
  background: linear-gradient(135deg, #143567, #0f2d59);
  color: var(--white);
}

.quote-panel h2,
.quote-panel p {
  color: var(--white);
}

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

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, .98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease;
}

.gallery-grid figure:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(15, 45, 89, .13);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 16px 18px;
  font-weight: 800;
  color: var(--navy);
}

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

.article-grid {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.article-body {
  background: rgba(255, 255, 255, .98);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.article-body img {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 24px;
}

.article-body p {
  color: #344154;
  font-size: 18px;
}

.article-aside {
  position: sticky;
  top: 120px;
}

.article-aside a {
  display: block;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.contact-grid {
  grid-template-columns: 380px minmax(0, 1fr);
}

.contact-panel a {
  display: block;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
  margin: 10px 0;
}

.contact-form {
  background: rgba(255, 255, 255, .98);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  padding: 28px;
}

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

label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(45, 99, 174, .5);
  box-shadow: 0 0 0 4px rgba(45, 99, 174, .1);
}

textarea {
  resize: vertical;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.notice {
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 18px;
  font-weight: 800;
}

.notice.success {
  background: #e7f6ef;
  color: #0e6042;
}

.notice.error {
  background: #fff0ef;
  color: #a12d21;
}

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

.cta-band {
  background: linear-gradient(90deg, #f6a21c, #f6b540);
  color: var(--ink);
  padding: 48px 0;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  margin: 8px 0 0;
  width: min(760px, 100%);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.16;
  color: var(--ink);
}

.cta-band .eyebrow {
  color: var(--navy);
}

.site-footer {
  background: linear-gradient(180deg, #0d1d33, #11233e);
  color: rgba(255, 255, 255, .78);
  padding: 68px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .8fr .7fr 1fr;
  gap: 34px;
}

.footer-logo {
  width: 240px;
  margin-bottom: 18px;
}

.site-footer h2 {
  color: var(--white);
  font-size: 18px;
  margin: 0 0 16px;
}

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

.site-footer a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .13);
  margin-top: 44px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-ready .reveal {
  opacity: .001;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes float-badge {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .primary-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    align-items: stretch;
    flex-direction: column;
    background: rgba(255, 255, 255, .99);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 12px;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .nav-group {
    display: grid;
  }

  .nav-group > a,
  .primary-nav a {
    min-height: 46px;
    padding: 0 12px;
  }

  .nav-menu {
    position: static;
    display: grid;
    box-shadow: none;
    border: 0;
    padding: 0 0 8px 18px;
    min-width: 0;
  }

  .hero__grid,
  .detail-hero__grid,
  .split-grid,
  .two-column,
  .article-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card--top {
    right: 14px;
  }

  .hero-card--bottom {
    left: 14px;
  }

  .card-grid.three,
  .industry-grid,
  .gallery-grid,
  .value-grid,
  .card-grid.four,
  .card-grid.two-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .top-strip__inner {
    justify-content: center;
    gap: 10px 16px;
    padding: 8px 0;
  }

  .nav-shell {
    min-height: 78px;
  }

  .brand img {
    width: 210px;
  }

  .hero__grid,
  .detail-hero__grid {
    gap: 30px;
    padding: 44px 0 56px;
  }

  .hero h1,
  .page-hero h1,
  .detail-hero h1,
  .article-hero h1 {
    font-size: 38px;
  }

  .hero__lead {
    font-size: 18px;
  }

  .hero-card {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .metrics-grid,
  .form-row.two,
  .card-grid.three,
  .industry-grid,
  .gallery-grid,
  .value-grid,
  .card-grid.four,
  .card-grid.two-up,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .page-hero,
  .detail-hero,
  .article-hero {
    padding: 62px 0;
  }

  .tab-panel {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .tab-panel h3 {
    font-size: 28px;
  }

  .cta-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .marquee-track {
    gap: 28px;
  }
}

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

  .btn {
    width: 100%;
  }

  .action-row {
    align-items: stretch;
  }
}
