:root {
  color-scheme: light;
  --blue: #0068b5;
  --blue-dark: #004f8f;
  --blue-soft: #eaf5ff;
  --cyan: #00aeef;
  --ink: #171a20;
  --ink-2: #2f3947;
  --muted: #5c6672;
  --soft: #f4f5f7;
  --soft-2: #eef1f5;
  --paper: #ffffff;
  --line: #d7dde5;
  --line-dark: rgba(255, 255, 255, 0.22);
  --dark: #101820;
  --dark-2: #07111c;
  --amber: #c77800;
  --success: #007c5f;
  --danger: #b42342;
  --shadow: 0 18px 44px rgba(16, 24, 32, 0.14);
  --radius: 6px;
  --header-h: 72px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open,
body.search-open,
body.mega-open {
  overflow: hidden;
}

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

button {
  color: inherit;
}

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

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

p {
  line-height: 1.6;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(0, 104, 181, 0.32);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: #fff;
  background: var(--blue);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.content-wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.q-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-h);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(16, 24, 32, 0.02);
}

.header-inner {
  display: flex;
  align-items: stretch;
  height: 100%;
  padding: 0 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 166px;
  padding-right: 24px;
}

.brand img {
  width: 158px;
  height: auto;
}

.top-nav {
  display: flex;
  align-items: stretch;
  flex: 1;
  min-width: 0;
}

.top-nav button,
.top-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  color: #303844;
  background: transparent;
  font-size: 0.94rem;
  font-weight: 600;
  cursor: pointer;
}

.top-nav button:hover,
.top-nav a:hover,
.top-nav .is-active {
  color: var(--blue);
}

.top-nav .is-active::before {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 0;
  left: 14px;
  height: 3px;
  background: var(--blue);
}

.has-caret::after {
  content: "";
  width: 7px;
  height: 7px;
  margin: 3px 0 0 8px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg);
}

.header-tools {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 4px;
  margin-left: 8px;
}

.icon-button,
.menu-toggle,
.icon-control {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.icon-button:hover,
.menu-toggle:hover,
.icon-control:hover {
  background: var(--soft-2);
}

.search-icon,
.globe-icon,
.user-icon {
  position: relative;
  display: block;
}

.search-icon {
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: -4px;
  width: 9px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.globe-icon {
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.globe-icon::before,
.globe-icon::after {
  content: "";
  position: absolute;
  inset: 4px 2px;
  border-right: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
  border-radius: 999px;
}

.globe-icon::after {
  inset: 8px 1px auto;
  height: 0;
  border: 0;
  border-top: 1.5px solid currentColor;
  border-radius: 0;
}

.user-icon {
  width: 19px;
  height: 19px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.user-icon::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 5px;
  width: 5px;
  height: 5px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
}

.user-icon::after {
  content: "";
  position: absolute;
  right: 3px;
  bottom: 3px;
  left: 3px;
  height: 6px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.menu-toggle {
  display: none;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 2px 0;
  background: currentColor;
}

.mega-panel,
.search-panel {
  position: fixed;
  z-index: 90;
  top: var(--header-h);
  right: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.mega-panel.is-open,
.search-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-panel {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mega-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 48px;
  padding: 34px 0 38px;
}

.mega-copy h2 {
  max-width: 520px;
  margin: 8px 0 0;
  font-size: 2rem;
  line-height: 1.12;
}

.mega-copy p {
  margin: 0;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mega-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mega-column {
  display: grid;
  align-content: start;
  gap: 6px;
}

.mega-column strong {
  min-height: 32px;
  color: var(--ink);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.mega-column a {
  min-height: 42px;
  padding: 8px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  font-weight: 600;
}

.mega-column a:hover {
  color: var(--blue);
}

.search-panel {
  background: rgba(255, 255, 255, 0.99);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.search-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 30px 0;
}

.search-inner label {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.search-inner input {
  min-height: 54px;
  border: 1px solid var(--line);
  padding: 0 16px;
  color: var(--ink);
  background: var(--soft);
}

.search-inner button {
  min-height: 54px;
  border: 0;
  padding: 0 20px;
  color: #fff;
  background: var(--blue);
  font-weight: 700;
  cursor: pointer;
}

.search-quick {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.search-quick a {
  color: var(--blue);
  font-weight: 700;
}

main {
  min-height: 60vh;
}

.home-hero {
  position: relative;
  min-height: 650px;
  margin-top: var(--header-h);
  overflow: hidden;
  background: var(--dark);
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  display: grid;
  align-items: end;
  padding: 0 0 92px;
  opacity: 0;
  visibility: hidden;
  background-image:
    linear-gradient(90deg, rgba(7, 17, 28, 0.86) 0%, rgba(7, 17, 28, 0.38) 46%, rgba(7, 17, 28, 0.05) 100%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-panel {
  width: min(560px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  padding: 32px;
  color: #fff;
  background: rgba(0, 104, 181, 0.94);
}

.hero-panel h1 {
  margin: 0;
  font-size: clamp(2.65rem, 5.2vw, 5.6rem);
  line-height: 0.98;
}

.hero-panel p:not(.eyebrow) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

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

.hero-panel .eyebrow,
.dark-band .eyebrow,
.career-band .eyebrow {
  color: #8fe5ff;
}

.primary-link,
.text-link,
.editorial-card span,
.accordion a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 44px;
  color: var(--blue);
  font-weight: 700;
}

.primary-link {
  margin-top: 22px;
  padding: 0 18px;
  color: #fff;
  background: var(--blue);
}

.hero-panel .primary-link,
.dark-band .primary-link,
.career-band .primary-link {
  color: var(--blue);
  background: #fff;
}

.primary-link::after,
.text-link::after,
.editorial-card span::after,
.accordion a::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.hero-control-band {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 74px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, calc(100% - 92px));
}

.hero-tabs button {
  position: relative;
  min-height: 74px;
  border: 0;
  border-left: 1px solid var(--line);
  padding: 12px 18px;
  color: var(--muted);
  background: transparent;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.hero-tabs button:last-child {
  border-right: 1px solid var(--line);
}

.hero-tabs button.is-active {
  color: var(--ink);
}

.hero-tabs button.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--blue);
}

.hero-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: transparent;
}

.hero-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--cyan);
  transform-origin: left;
  animation: hero-progress 7600ms linear infinite;
}

body.hero-paused .hero-progress span {
  animation-play-state: paused;
}

.pause-glyph {
  position: relative;
  display: block;
  width: 16px;
  height: 18px;
  border-right: 4px solid currentColor;
  border-left: 4px solid currentColor;
}

.icon-control.is-paused .pause-glyph {
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid currentColor;
  border-right: 0;
}

.quick-links {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

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

.quick-grid a {
  display: grid;
  align-content: start;
  min-height: 132px;
  padding: 24px 22px;
  border-left: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.45;
}

.quick-grid a:last-child {
  border-right: 1px solid var(--line);
}

.quick-grid a:hover {
  color: var(--blue);
  background: #fff;
}

.quick-grid span {
  margin-bottom: 8px;
  color: var(--blue);
  font-weight: 800;
}

.section {
  padding: 82px 0;
}

.muted-band,
.news-band,
.resources-band {
  background: var(--soft);
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.page-hero h1,
.statement-band h2,
.feature-copy h2,
.split-layout h2,
.career-band h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 1.05;
}

.dark-band h2,
.career-band h2 {
  color: #fff;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -6px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.editorial-card {
  display: grid;
  min-height: 420px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.editorial-card.large {
  grid-column: span 2;
}

.editorial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.editorial-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.editorial-card.large img {
  height: 300px;
}

.editorial-card div {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
}

.editorial-card p {
  margin: 0;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.editorial-card h2,
.editorial-card h3 {
  margin: 0;
  font-size: 1.32rem;
  line-height: 1.18;
}

.editorial-card.large h2,
.editorial-card.large h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
}

.statement-band {
  padding: 72px 0;
  color: #fff;
  background: var(--blue);
}

.statement-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 52px;
  align-items: start;
}

.statement-band h2 {
  color: #fff;
}

.statement-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
}

.tile-grid {
  display: grid;
  gap: 22px;
}

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

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

.product-tile,
.support-tile,
.process-card,
.tile-grid.compact article {
  display: grid;
  align-content: start;
  min-height: 270px;
  padding: 24px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 180ms ease, border-color 180ms ease;
}

.product-tile:hover,
.support-tile:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
}

.product-tile span,
.support-tile span,
.process-card span,
.tile-grid.compact article span,
.product-detail span {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-tile h2,
.product-tile h3,
.support-tile h2,
.process-card h2,
.tile-grid.compact article h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.16;
}

.product-tile p,
.support-tile p,
.process-card p,
.tile-grid.compact article p {
  margin: 0;
  color: var(--muted);
}

.split-feature {
  background: #fff;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 58px;
  align-items: center;
}

.split-layout > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
}

.feature-copy p,
.split-layout p,
.page-hero p,
.contact-aside p {
  color: var(--muted);
  font-size: 1.05rem;
}

.resource-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.resource-list a {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  min-height: 78px;
  padding: 22px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.2;
}

.resource-list.light {
  border-color: var(--line-dark);
}

.resource-list.light a {
  color: #fff;
  border-color: var(--line-dark);
}

.resource-list span {
  color: var(--blue);
  font-size: 0.86rem;
}

.resource-list.light span {
  color: #8fe5ff;
}

.page-hero {
  margin-top: var(--header-h);
}

.simple-hero {
  padding: 92px 0 72px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.legal-hero {
  padding-bottom: 58px;
}

.simple-hero .content-wrap {
  max-width: 920px;
  margin-left: max(24px, calc((100vw - 1180px) / 2));
}

.page-hero h1 {
  max-width: 880px;
}

.page-hero p:not(.eyebrow):not(.breadcrumb) {
  max-width: 760px;
}

.breadcrumb {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--blue);
}

.image-hero {
  min-height: 560px;
  display: grid;
  align-items: end;
  padding: 92px 0 54px;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(7, 17, 28, 0.88) 0%, rgba(7, 17, 28, 0.5) 54%, rgba(7, 17, 28, 0.12) 100%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.page-hero-panel {
  width: min(620px, 100%);
  padding: 30px;
  background: rgba(0, 104, 181, 0.94);
}

.page-hero-panel h1,
.page-hero-panel p {
  color: #fff;
}

.page-hero-panel .eyebrow {
  color: #8fe5ff;
}

.product-index {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.product-index aside {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: grid;
  gap: 4px;
  padding: 20px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.product-index aside h2 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.product-index aside a {
  min-height: 42px;
  color: var(--blue);
  font-weight: 700;
}

.product-stack {
  display: grid;
  gap: 24px;
}

.product-detail {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
}

.product-detail h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
}

.product-detail p,
.product-detail li {
  color: var(--muted);
}

.product-detail ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.events-layout {
  align-items: start;
}

.accordion {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.accordion article {
  border-bottom: 1px solid var(--line-dark);
}

.accordion button {
  width: 100%;
  min-height: 76px;
  border: 0;
  padding: 18px 0;
  color: #fff;
  background: transparent;
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.accordion button::after {
  content: "+";
  float: right;
  color: #8fe5ff;
}

.accordion article.is-open button::after {
  content: "-";
}

.accordion article > div {
  display: none;
  padding: 0 0 24px;
}

.accordion article.is-open > div {
  display: block;
}

.accordion h3 {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.accordion p {
  color: rgba(255, 255, 255, 0.82);
}

.partner-groups {
  display: grid;
  gap: 42px;
}

.partner-groups article {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr);
  gap: 28px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.partner-groups h2 {
  margin: 0 0 12px;
  font-size: 1.75rem;
  line-height: 1.12;
}

.partner-groups p {
  margin: 0;
  color: var(--muted);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.logo-grid li {
  display: grid;
  place-items: center;
  min-height: 104px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.logo-grid img {
  max-width: 132px;
  max-height: 42px;
  object-fit: contain;
}

.founder-layout {
  align-items: start;
}

.portrait-card {
  margin: 0;
  background: var(--dark);
  border: 1px solid var(--line);
}

.portrait-card img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center top;
}

.portrait-card figcaption {
  display: grid;
  gap: 4px;
  padding: 18px;
  color: #fff;
}

.portrait-card span {
  color: rgba(255, 255, 255, 0.72);
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.mini-metrics span {
  display: grid;
  gap: 8px;
  min-height: 102px;
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

.mini-metrics strong {
  color: var(--blue);
}

.career-band {
  min-height: 520px;
  display: grid;
  align-items: center;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(7, 17, 28, 0.88), rgba(7, 17, 28, 0.44)),
    url("/assets/hero-qivron-adaptive.png");
  background-position: center;
  background-size: cover;
}

.career-band p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.investor-panel {
  color: #fff;
  background: var(--blue);
}

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

.metric-grid article {
  display: grid;
  gap: 8px;
  min-height: 160px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.metric-grid strong {
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
}

.metric-grid span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 42px;
  align-items: start;
}

.contact-aside h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.05;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.field-row {
  display: flex;
  gap: 16px;
}

label {
  display: grid;
  flex: 1;
  gap: 8px;
  color: var(--ink-2);
  font-size: 0.92rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #bac4d0;
  border-radius: 0;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--soft);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 104, 181, 0.14);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 0;
  padding: 0 20px;
  font-weight: 800;
  cursor: pointer;
}

.form-button {
  color: #fff;
  background: var(--blue);
}

.form-button:hover {
  background: var(--blue-dark);
}

.full {
  width: 100%;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-note.success {
  color: var(--success);
}

.form-note.error {
  color: var(--danger);
}

.legal-copy {
  background: #fff;
}

.legal-copy .content-wrap {
  max-width: 860px;
  margin-left: max(24px, calc((100vw - 1180px) / 2));
}

.legal-copy h2 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.legal-copy p {
  margin: 0 0 28px;
  color: var(--muted);
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: var(--dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) repeat(4, minmax(0, 1fr));
  gap: 34px;
  padding: 42px 0;
}

.footer-brand {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
}

.footer-brand img {
  width: 168px;
}

.footer-top p {
  max-width: 320px;
  margin: 0;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column strong {
  color: #fff;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.footer-column a {
  min-height: 32px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.legal-links a:hover {
  color: #fff;
}

@keyframes hero-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (max-width: 1120px) {
  .header-inner {
    padding: 0 16px;
  }

  .top-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-content: start;
    overflow-y: auto;
    padding: 10px 18px 28px;
    background: #fff;
    border-top: 1px solid var(--line);
  }

  body.nav-open .top-nav {
    display: grid;
  }

  .top-nav button,
  .top-nav a {
    width: 100%;
    min-height: 54px;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding: 0 4px;
  }

  .top-nav .is-active::before {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .brand {
    flex: 1;
  }

  .mega-inner,
  .split-layout,
  .statement-layout,
  .product-index,
  .partner-groups article,
  .contact-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .mega-links,
  .editorial-grid,
  .quick-grid,
  .tile-grid.four,
  .tile-grid.three,
  .metric-grid,
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-index aside {
    position: static;
  }

  .footer-top {
    gap: 24px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 64px;
  }

  .content-wrap {
    width: calc(100% - 28px);
  }

  .header-inner {
    padding: 0 10px 0 14px;
  }

  .brand {
    min-width: 0;
    padding-right: 10px;
  }

  .brand img {
    width: 136px;
  }

  .header-tools {
    gap: 0;
  }

  .icon-button,
  .menu-toggle,
  .icon-control {
    width: 42px;
    height: 42px;
  }

  .mega-panel {
    display: none;
  }

  .search-inner {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: 610px;
  }

  .hero-slide {
    padding-bottom: 120px;
    background-position: center;
  }

  .hero-panel {
    width: calc(100% - 28px);
    margin: 0 auto;
    padding: 24px;
  }

  .hero-panel h1 {
    font-size: 2.55rem;
    line-height: 1.03;
  }

  .hero-tabs {
    width: calc(100% - 42px);
    display: flex;
    overflow-x: auto;
  }

  .hero-tabs button {
    flex: 0 0 180px;
    min-height: 70px;
    padding: 12px;
  }

  .quick-grid,
  .editorial-grid,
  .tile-grid.four,
  .tile-grid.three,
  .metric-grid,
  .mini-metrics,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .quick-grid a,
  .quick-grid a:last-child {
    min-height: 104px;
    border-right: 1px solid var(--line);
  }

  .section {
    padding: 62px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-heading h2,
  .page-hero h1,
  .statement-band h2,
  .feature-copy h2,
  .split-layout h2,
  .career-band h2 {
    font-size: 2.3rem;
  }

  .editorial-card.large {
    grid-column: auto;
  }

  .editorial-card,
  .product-tile,
  .support-tile,
  .process-card,
  .tile-grid.compact article {
    min-height: 0;
  }

  .editorial-card img,
  .editorial-card.large img {
    height: 220px;
  }

  .statement-band {
    padding: 58px 0;
  }

  .image-hero {
    min-height: 500px;
    padding: 72px 0 36px;
  }

  .page-hero-panel {
    padding: 22px;
  }

  .simple-hero {
    padding: 70px 0 54px;
  }

  .simple-hero .content-wrap,
  .legal-copy .content-wrap {
    margin: 0 auto;
  }

  .resource-list a {
    grid-template-columns: 38px minmax(0, 1fr);
    font-size: 1.15rem;
  }

  .field-row {
    flex-direction: column;
  }

  .contact-form {
    padding: 20px;
  }

  .portrait-card img {
    min-height: 420px;
  }
}

@media (max-width: 420px) {
  .hero-panel h1 {
    font-size: 2.1rem;
  }

  .section-heading h2,
  .page-hero h1,
  .statement-band h2,
  .feature-copy h2,
  .split-layout h2,
  .career-band h2 {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
