:root {
  --brand-orange: #E75025;
  --brand-navy: #191745;
  --brand-navy-deep: #181745;
  --brand-white: #F7F6F1;
  --text-primary: #171724;
  --text-secondary: #5B6172;
  --surface-muted: #F7F8FA;
  --surface-line: #E7EAF0;
  --surface-soft-orange: #FFF3EE;
  --surface-soft-navy: #F1F2F8;
  --shadow-soft: 0 20px 60px rgba(25, 23, 69, 0.12);
  --shadow-card: 0 16px 44px rgba(25, 23, 69, 0.1);
  --header-flow-offset: 104px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-primary);
  background: var(--brand-white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}




body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
  cursor: pointer;
}

ul,
dl,
dd {
  margin: 0;
}

.container {
  width: min(100% - 48px, 1220px);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--brand-navy);
  color: var(--brand-white);
  padding: 10px 14px;
  border-radius: 8px;
}

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

.site-header {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(100% - 48px, 1220px);
  margin: 0;
}

.site-header.is-scrolled {
  box-shadow: none;
}

.header-inner {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  gap: 20px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(231, 234, 240, 0.96);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(25, 23, 69, 0.085);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.menu-toggle {
  position: relative;
  z-index: 1;
}

.site-header.is-scrolled .header-inner {
  box-shadow: 0 18px 48px rgba(25, 23, 69, 0.14);
}

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

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

.site-nav {
  position: absolute;
  inset: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  padding: 0;
  pointer-events: auto;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 9px;
  background: transparent;
  color: var(--brand-navy);
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0;
}

.nav-link:hover,
.nav-link:focus-visible,
.has-panel:focus-within > .nav-link {
  color: var(--brand-orange);
  outline: none;
}

.has-panel > .nav-link::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.mega-panel {
  position: fixed;
  top: 58px;
  left: 50%;
  width: min(1120px, calc(100vw - 32px));
  padding-top: 10px;
  transform: translateX(-50%) translateY(8px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 220ms;
}

.narrow-panel {
  width: min(560px, calc(100vw - 48px));
}

.has-panel.open .mega-panel {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
  padding: 22px;
  background: var(--brand-white);
  border: 1px solid var(--surface-line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.mega-grid.two-col {
  grid-template-columns: 1fr 1fr;
}

.solutions-mega {
  grid-template-columns: minmax(230px, 0.95fr) minmax(285px, 1.08fr) minmax(300px, 1.12fr);
  gap: 24px;
}

.mega-column {
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
}

.mega-group {
  min-width: 0;
}

.mega-group + .mega-group {
  padding-top: 18px;
  border-top: 1px solid rgba(25, 23, 69, 0.1);
}

.mega-title {
  margin: 0 0 10px;
  color: var(--brand-orange);
  font-size: 13px;
  font-weight: 700;
}

.mega-grid a {
  display: block;
  padding: 6px 0;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 560;
  line-height: 1.35;
}

.mega-grid a:hover,
.mega-grid a:focus-visible {
  color: var(--brand-orange);
  outline: none;
}

.mega-tree,
.mega-tree ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mega-tree > li + li {
  margin-top: 9px;
}

.mega-tree > li > a {
  padding: 6px 9px;
  background: rgba(25, 23, 69, 0.045);
  border-radius: 6px;
  color: var(--brand-navy);
  font-weight: 650;
}

.mega-tree ul {
  margin: 6px 0 2px 16px;
  padding-left: 14px;
  border-left: 1px solid rgba(25, 23, 69, 0.13);
}

.mega-tree ul li {
  position: relative;
}

.mega-tree ul li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: -17px;
  width: 5px;
  height: 5px;
  background: rgba(25, 23, 69, 0.5);
  border-radius: 50%;
}

.mega-tree ul a {
  padding: 4px 0;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 540;
}

.mega-tree ul ul {
  margin-top: 3px;
  margin-left: 12px;
}

.mega-highlight {
  align-self: start;
  padding: 16px;
  background: var(--surface-soft-orange);
  border: 1px solid rgba(231, 80, 37, 0.2);
  border-radius: 8px;
}

.mega-highlight span {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-orange);
  font-size: 13px;
  font-weight: 680;
}

.mega-highlight strong {
  display: block;
  color: var(--brand-navy);
  font-size: 18px;
  line-height: 1.25;
}

.mega-highlight p {
  margin: 10px 0 8px;
  color: var(--text-secondary);
  font-size: 14px;
}

.nav-actions {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: auto;
}

.language-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--brand-navy);
  border: 1px solid var(--surface-line);
  border-radius: 8px;
  font-weight: 700;
}

.language-link:hover,
.language-link:focus-visible {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  outline: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--brand-orange);
  color: var(--brand-white);
  box-shadow: 0 12px 28px rgba(231, 80, 37, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--brand-orange);
}

.button-secondary {
  background: var(--brand-white);
  color: var(--brand-navy);
  border: 1px solid rgba(25, 23, 69, 0.18);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--brand-white);
  border: 1px solid var(--surface-line);
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--brand-navy);
  border-radius: 999px;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 440px;
  height: calc(100svh - 330px);
  max-height: 580px;
  overflow: hidden;
  isolation: isolate;
  background: var(--brand-white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 260px;
  background:
    linear-gradient(180deg, rgba(247, 246, 241, 0) 0%, rgba(247, 246, 241, 0.48) 42%, rgba(247, 246, 241, 0.86) 72%, var(--brand-white) 100%);
  pointer-events: none;
  z-index: 1;
}


.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.pixel-world {
  background:
    radial-gradient(circle at 50% 100%, rgba(231, 80, 37, 0.28), rgba(231, 80, 37, 0) 36%),
    radial-gradient(circle at 50% 108%, rgba(25, 23, 69, 0.25), rgba(25, 23, 69, 0) 48%),
    linear-gradient(180deg, var(--brand-white), var(--surface-soft-orange));
}

.pixel-globe-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transform: translateY(var(--header-flow-offset));
}

.pixel-globe-glow {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(247, 246, 241, 0) 0%, rgba(247, 246, 241, 0.68) 24%, rgba(247, 246, 241, 0.34) 56%, rgba(247, 246, 241, 0.08) 100%),
    linear-gradient(90deg, rgba(247, 246, 241, 0.26), rgba(247, 246, 241, 0.02));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 0;
  text-align: center;
  transform: translateY(calc(-76px + var(--header-flow-offset)));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-orange);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.eyebrow.on-dark {
  color: var(--brand-orange);
}

.hero-slider {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(100%, 780px);
}

.hero-slides {
  display: grid;
  width: 100%;
  min-height: 184px;
}

.hero-slide {
  grid-area: 1 / 1;
  display: grid;
  justify-items: center;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease, visibility 520ms ease;
  visibility: hidden;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.hero-slide-title {
  max-width: 720px;
  margin: 0;
  color: var(--brand-navy);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: 0;
  text-shadow: 0 14px 38px rgba(255, 255, 255, 0.86);
}

.hero-subcopy {
  max-width: 560px;
  margin: 0;
  color: rgba(25, 23, 69, 0.72);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  text-shadow: 0 12px 32px rgba(255, 255, 255, 0.86);
}

.hero-slide-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 4px;
}

.hero-slide-nav {
  position: absolute;
  top: 92px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100vw - 120px, 930px);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.hero-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}

.hero-arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 64px;
  padding: 0;
  color: var(--brand-navy);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  opacity: 0.72;
  pointer-events: auto;
  transition: transform 240ms ease, color 240ms ease, opacity 240ms ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  color: var(--brand-orange);
  opacity: 1;
  outline: none;
}

.hero-arrow-prev:hover,
.hero-arrow-prev:focus-visible {
  transform: translateX(-3px);
}

.hero-arrow-next:hover,
.hero-arrow-next:focus-visible {
  transform: translateX(3px);
}

.hero-dot {
  position: relative;
  width: 10px;
  height: 10px;
  padding: 0;
  overflow: hidden;
  background: rgba(25, 23, 69, 0.18);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: width 280ms ease, background 280ms ease, transform 280ms ease;
}

.hero-dot:hover,
.hero-dot:focus-visible {
  background: rgba(25, 23, 69, 0.3);
  transform: translateY(-1px);
}

.hero-dot.active {
  width: 46px;
  background: rgba(25, 23, 69, 0.14);
}

.hero-dot span {
  position: absolute;
  inset: 0;
  display: block;
  background: var(--brand-navy);
  border-radius: inherit;
  opacity: 0;
  transform: scaleX(var(--progress, 0));
  transform-origin: left center;
  transition: opacity 180ms ease;
}

.hero-dot.active span {
  opacity: 1;
}

.hero-copy {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--text-secondary);
  font-size: 20px;
  line-height: 1.55;
}

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

.metrics-band {
  position: relative;
  margin-top: -35px;
  background:
    linear-gradient(180deg, var(--brand-white) 0%, rgba(255, 243, 238, 0.44) 100%);
  border-bottom: 1px solid rgba(25, 23, 69, 0.07);
}

.metrics-grid {
  width: min(100% - 32px, 1360px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  padding: 26px 0 38px;
}

.metric-item {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: start;
  gap: 14px;
  min-height: 138px;
  padding: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(25, 23, 69, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(25, 23, 69, 0.06);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 420ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.metrics-band.is-visible .metric-item {
  opacity: 1;
  transform: translateY(0);
}

.metrics-band.is-visible .metric-item:nth-child(2) {
  transition-delay: 80ms;
}

.metrics-band.is-visible .metric-item:nth-child(3) {
  transition-delay: 160ms;
}

.metrics-band.is-visible .metric-item:nth-child(4) {
  transition-delay: 240ms;
}

.metrics-band.is-visible .metric-item:nth-child(5) {
  transition-delay: 320ms;
}

.metric-item:hover {
  border-color: rgba(231, 80, 37, 0.18);
  box-shadow: 0 22px 56px rgba(25, 23, 69, 0.09);
  transform: translateY(-3px);
}

.metrics-band.is-visible .metric-item:hover {
  transform: translateY(-3px);
}

.metric-icon {
  width: 58px;
  height: 58px;
  margin-top: 2px;
  object-fit: contain;
  transition: transform 260ms ease;
}

.metric-item:hover .metric-icon {
  transform: translateY(-2px) scale(1.04);
}

.metric-copy {
  display: grid;
  gap: 4px;
  align-self: start;
  min-width: 0;
}

.metric-item strong {
  color: var(--brand-orange);
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.metric-item span {
  color: var(--brand-navy);
  font-weight: 650;
}

.metric-item p {
  max-width: 220px;
  margin: 2px 0 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.45;
}

@media (min-width: 1440px) {
  .hero-content {
    transform: translateY(calc(-95px + var(--header-flow-offset)));
  }
}

.section {
  padding: 96px 0;
}

.solutions {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(231, 80, 37, 0.08), rgba(231, 80, 37, 0) 30%),
    radial-gradient(circle at 92% 16%, rgba(25, 23, 69, 0.08), rgba(25, 23, 69, 0) 32%),
    linear-gradient(180deg, var(--brand-white) 0%, rgba(255, 243, 238, 0.42) 100%);
  isolation: isolate;
}

.solutions::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(25, 23, 69, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 23, 69, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  opacity: 0.46;
  pointer-events: none;
}

.solutions > .container {
  position: relative;
  z-index: 1;
}

.featured-solutions {
  background: var(--surface-muted);
}

.why {
  position: relative;
  overflow: hidden;
  background: var(--brand-white);
}

.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(247, 246, 241, 0) 0%, rgba(247, 246, 241, 0.34) 58%, var(--brand-white) 100%),
    url("img/mountains-with-fog.jpg") center 40% / cover no-repeat;
  opacity: 0.64;
  pointer-events: none;
}

.why > .container {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading.compact {
  max-width: 720px;
}

.section-heading h2,
.architecture h2,
.contact-cta h2 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 34px;
  font-weight: 620;
  line-height: 1.24;
  letter-spacing: 0;
}

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

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

.solution-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(25, 23, 69, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(25, 23, 69, 0.055);
  backdrop-filter: blur(12px);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, background-color 240ms ease;
}

.solution-card > * {
  position: relative;
  z-index: 1;
}

.solution-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(231, 80, 37, 0.22);
  box-shadow: 0 26px 68px rgba(25, 23, 69, 0.1);
}

.solution-card-featured {
  border-color: rgba(231, 80, 37, 0.28);
  box-shadow: 0 24px 66px rgba(25, 23, 69, 0.085);
}

.card-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  transition: transform 240ms ease;
}

.solution-card:hover .card-mark {
  transform: translateY(-2px);
}

.card-mark img {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.solution-card h3,
.feature-item h3,
.sector-panel h3,
.value-grid h3,
.resource-grid h3 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 22px;
  font-weight: 620;
  line-height: 1.25;
  letter-spacing: 0;
}

.solution-card p {
  margin: 14px 0 0;
  color: var(--text-secondary);
}

.solution-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.solution-card li {
  position: relative;
  padding-left: 18px;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 560;
}

.solution-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  background: var(--brand-orange);
  border-radius: 50%;
}

.solution-card a,
.feature-item a,
.resource-grid a {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 22px;
  color: var(--brand-orange);
  font-weight: 680;
}

.solution-card a::after,
.feature-item a::after,
.resource-grid a::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

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

.feature-item {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  align-items: center;
  gap: 34px;
  padding: 18px;
  background: var(--brand-white);
  border: 1px solid var(--surface-line);
  border-radius: 8px;
}

.feature-item:nth-child(even) {
  grid-template-columns: 1fr 0.82fr;
}

.feature-item:nth-child(even) img {
  order: 2;
}

.feature-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--surface-line);
}

.feature-item span,
.resource-grid span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--brand-orange);
  font-size: 14px;
  font-weight: 680;
}

.feature-item p,
.value-grid p,
.resource-grid p {
  margin: 14px 0 0;
  color: var(--text-secondary);
}

.sectors {
  background:
    linear-gradient(180deg, var(--brand-white) 0%, rgba(25, 23, 69, 0.035) 100%);
}

.sector-shell {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
}

.sector-tabs {
  display: grid;
  gap: 9px;
  align-self: start;
}

.sector-tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 8px 16px 8px 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.74);
  color: var(--brand-navy);
  border: 1px solid rgba(25, 23, 69, 0.08);
  border-radius: 8px;
  text-align: left;
  font-weight: 650;
  box-shadow: 0 10px 28px rgba(25, 23, 69, 0.045);
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, color 220ms ease, transform 220ms ease;
}

.sector-tab::before {
  content: "";
  position: absolute;
  inset: 8px auto 8px 0;
  width: 3px;
  background: var(--brand-orange);
  border-radius: 0 999px 999px 0;
  opacity: 0;
  transform: scaleY(0.45);
  transition: opacity 220ms ease, transform 220ms ease;
}

.sector-tab img {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  object-fit: contain;
  transition: transform 220ms ease;
}

.sector-tab span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.sector-tab:hover,
.sector-tab:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-navy);
  border-color: rgba(231, 80, 37, 0.24);
  box-shadow: 0 14px 34px rgba(25, 23, 69, 0.07);
  outline: none;
}

.sector-tab:hover img,
.sector-tab:focus-visible img {
  transform: translateY(-1px);
}

.sector-tab.active {
  background: rgba(231, 80, 37, 0.075);
  color: var(--brand-navy);
  border-color: rgba(231, 80, 37, 0.28);
  box-shadow: 0 16px 36px rgba(231, 80, 37, 0.11);
}

.sector-tab.active::before {
  opacity: 1;
  transform: scaleY(1);
}

.sector-tab.active img {
  transform: translateY(-1px);
}

.sector-panels {
  display: grid;
  align-items: start;
  min-height: 424px;
  padding: 38px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(25, 23, 69, 0.08);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(25, 23, 69, 0.08);
  backdrop-filter: blur(12px);
}

.sector-panel {
  grid-area: 1 / 1;
  display: none;
  max-width: 780px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.sector-panel.is-rendered,
.sector-panel.active {
  display: block;
}

.sector-panel.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.panel-kicker {
  margin: 0 0 10px;
  color: var(--brand-orange);
  font-weight: 680;
}

.sector-panel p:not(.panel-kicker) {
  margin: 16px 0 0;
  color: var(--text-secondary);
  font-size: 18px;
}

.sector-panel ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.sector-panel li {
  padding: 16px;
  background: rgba(25, 23, 69, 0.035);
  border: 1px solid rgba(25, 23, 69, 0.07);
  border-radius: 8px;
  color: var(--brand-navy);
  font-weight: 620;
}

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

.value-grid article,
.resource-grid article {
  padding: 24px;
  background: var(--brand-white);
  border: 1px solid var(--surface-line);
  border-radius: 8px;
}

.value-grid article {
  min-height: 245px;
}

.architecture {
  padding: 40px 0;
  background: var(--brand-navy);
  color: var(--brand-white);
}

.architecture-inner {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  align-items: center;
  gap: 64px;
}

.architecture h2,
.contact-cta h2 {
  color: var(--brand-white);
}

.architecture p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

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

.architecture-map span {
  display: grid;
  place-items: center;
  min-height: 86px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--brand-white);
  font-weight: 620;
}

.architecture-map span:nth-child(2n) {
  background: rgba(231, 80, 37, 0.2);
  border-color: rgba(231, 80, 37, 0.38);
}

.resources {
  background: var(--brand-white);
}

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

.resource-grid article {
  min-height: 230px;
  display: flex;
  flex-direction: column;
}

.contact-cta {
  padding: 96px 0;
  background:
    linear-gradient(135deg, rgba(25, 23, 69, 0.98), rgba(24, 23, 69, 0.96)),
    var(--brand-navy);
  color: var(--brand-white);
}

.contact-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-lines a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--brand-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-weight: 650;
}

.contact-lines a:hover,
.contact-lines a:focus-visible {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  outline: none;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: 16px;
  height: 100%;
  padding: 22px;
  background: var(--brand-white);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.contact-form h3 {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  color: var(--brand-navy);
  font-size: 24px;
  line-height: 1.2;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--brand-navy);
  font-size: 14px;
  font-weight: 650;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--text-primary);
  background: var(--brand-white);
  border: 1px solid var(--surface-line);
  border-radius: 8px;
  outline: none;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(231, 80, 37, 0.16);
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.contact-form-status {
  display: none;
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.contact-form-status.is-visible {
  display: block;
}

.contact-form-status.is-success {
  color: #0f5132;
  background: #e7f6ed;
  border: 1px solid #badbcc;
}

.contact-form-status.is-error {
  color: #842029;
  background: #f8d7da;
  border: 1px solid #f5c2c7;
}

.checkbox {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary) !important;
  font-weight: 700 !important;
}

.checkbox input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--brand-orange);
}

.office-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 16px;
  height: 100%;
}

.office-card {
  display: grid;
  grid-template-rows: auto minmax(96px, 1fr) auto;
  min-height: 0;
  padding: 22px;
  background: var(--brand-white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.office-card-wide {
  grid-column: 1 / -1;
}

.office-card h3 {
  margin: 0 0 12px;
  color: var(--brand-navy);
  font-size: 20px;
  line-height: 1.24;
}

.office-card p {
  margin: 10px 0 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.55;
}

.office-address {
  align-self: start;
}

.office-phone,
.office-email {
  align-self: end;
}

.office-phone {
  padding-top: 12px;
}

.office-email {
  margin-top: 6px !important;
}

.office-card strong {
  color: var(--brand-navy);
}

.office-card a {
  color: var(--brand-orange);
  font-weight: 650;
}

.contact-map {
  height: 320px;
  margin-top: 28px;
  overflow: hidden;
  background: var(--brand-white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: calc(150px + var(--header-flow-offset)) 0 96px;
  background:
    linear-gradient(180deg, rgba(247, 246, 241, 0.42) 0%, rgba(247, 246, 241, 0.68) 58%, var(--brand-white) 100%),
    url("img/mountains-with-fog.jpg") center 40% / cover no-repeat,
    radial-gradient(circle at 12% 18%, rgba(231, 80, 37, 0.09), rgba(231, 80, 37, 0) 30%),
    radial-gradient(circle at 88% 20%, rgba(25, 23, 69, 0.08), rgba(25, 23, 69, 0) 34%),
    linear-gradient(180deg, rgba(247, 246, 241, 0.98) 0%, rgba(255, 243, 238, 0.42) 100%),
    var(--brand-white);
  isolation: isolate;
}

.about-hero::before,
.about-story::before,
.about-principles::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(25, 23, 69, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 23, 69, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0));
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0));
  opacity: 0.42;
  pointer-events: none;
}

.about-hero > .container,
.about-story > .container,
.about-principles > .container {
  position: relative;
  z-index: 1;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.78fr);
  gap: 70px;
  align-items: center;
}

.about-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--brand-navy);
  font-size: 42px;
  font-weight: 620;
  line-height: 1.16;
  letter-spacing: 0;
}

.about-hero p:not(.eyebrow) {
  max-width: 670px;
  margin: 24px 0 0;
  color: rgba(25, 23, 69, 0.78);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.55;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.about-visual {
  display: grid;
  gap: 14px;
}

.about-visual-card {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(25, 23, 69, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(25, 23, 69, 0.07);
  backdrop-filter: blur(12px);
}

.about-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(231, 80, 37, 0.12), rgba(231, 80, 37, 0) 38%);
  opacity: 0.68;
  pointer-events: none;
}

.about-visual-card.main {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(25, 23, 69, 0.08);
}

.about-visual-card span {
  position: relative;
  z-index: 1;
  color: var(--brand-orange);
  font-size: 14px;
  font-weight: 680;
}

.about-visual-card strong {
  position: relative;
  z-index: 1;
  color: var(--brand-navy);
  font-size: 20px;
  line-height: 1.25;
}

.about-visual-card.main strong {
  color: var(--brand-navy);
}

.about-story {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--brand-white) 0%, rgba(25, 23, 69, 0.028) 100%);
  isolation: isolate;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.about-copy p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 19px;
  line-height: 1.72;
}

.about-principles {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 18%, rgba(231, 80, 37, 0.08), rgba(231, 80, 37, 0) 34%),
    linear-gradient(180deg, rgba(255, 243, 238, 0.34) 0%, var(--brand-white) 100%);
  isolation: isolate;
}

.about-cta {
  padding: 78px 0;
  background: var(--brand-navy);
  color: var(--brand-white);
}

.about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.about-cta h2 {
  max-width: 720px;
  margin: 0;
  color: var(--brand-white);
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: 0;
}

.about-cta p:not(.eyebrow) {
  max-width: 660px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.solution-page-hero,
.solution-detail,
.solution-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.solution-page-hero {
  padding: calc(148px + var(--header-flow-offset)) 0 84px;
  background:
    radial-gradient(circle at 12% 18%, rgba(231, 80, 37, 0.09), rgba(231, 80, 37, 0) 30%),
    radial-gradient(circle at 88% 18%, rgba(25, 23, 69, 0.08), rgba(25, 23, 69, 0) 34%),
    linear-gradient(180deg, var(--brand-white) 0%, rgba(255, 243, 238, 0.42) 100%);
}

.solution-page-hero::before,
.solution-detail::before,
.solution-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(25, 23, 69, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 23, 69, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  opacity: 0.42;
  pointer-events: none;
}

.solution-page-hero > .container,
.solution-detail > .container,
.solution-band > .container {
  position: relative;
  z-index: 1;
}

.solution-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 56px;
  align-items: center;
}

.solution-page-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--brand-navy);
  font-size: 44px;
  font-weight: 620;
  line-height: 1.14;
  letter-spacing: 0;
}

.solution-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--text-secondary);
  font-size: 20px;
  line-height: 1.62;
}

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

.solution-hero-panel {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(25, 23, 69, 0.08);
  border-radius: 8px;
  box-shadow: 0 20px 56px rgba(25, 23, 69, 0.08);
  backdrop-filter: blur(12px);
}

.solution-hero-panel strong {
  display: block;
  color: var(--brand-navy);
  font-size: 20px;
  font-weight: 620;
  line-height: 1.25;
}

.solution-hero-panel span {
  color: var(--brand-orange);
  font-size: 13px;
  font-weight: 680;
}

.partner-proof {
  position: relative;
  padding: 34px 0;
  background: var(--brand-white);
}

.partner-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(25, 23, 69, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(25, 23, 69, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0, transparent 70%);
  pointer-events: none;
}

.partner-proof-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(231, 80, 37, 0.26);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(25, 23, 69, 0.075);
}

.partner-proof h2 {
  max-width: 820px;
  margin: 0;
  color: var(--brand-navy);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.18;
}

.partner-proof p:not(.eyebrow) {
  max-width: 850px;
  margin: 14px 0 0;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.62;
}

.ey-partner-proof::before {
  background-image:
    linear-gradient(90deg, rgba(255, 230, 0, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 230, 0, 0.12) 1px, transparent 1px);
}

.ey-partner-proof .partner-proof-inner {
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  box-shadow: 0 22px 60px rgba(25, 23, 69, 0.075);
}

.ey-partner-proof .eyebrow {
  color: var(--text-secondary);
}

.ey-partner-proof h2 {
  color: var(--brand-navy);
}

.ey-partner-proof p:not(.eyebrow) {
  color: var(--text-secondary);
}

.ey-partner-proof .button-primary {
  color: #2E2E38;
  background: #FFE600;
  box-shadow: 0 12px 28px rgba(255, 230, 0, 0.18);
}

.ey-partner-proof .button-primary:hover,
.ey-partner-proof .button-primary:focus-visible {
  color: #2E2E38;
  background: #FFFFFF;
}

.grc-chart-section {
  position: relative;
  padding: 78px 0 84px;
  overflow: hidden;
  background: var(--surface-soft-navy);
}

.grc-chart-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(25, 23, 69, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 23, 69, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.grc-chart-section > .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 30px 64px;
  align-items: center;
}

.grc-chart-intro {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 0;
  text-align: left;
}

.grc-chart-intro h2 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 34px;
  font-weight: 620;
  line-height: 1.2;
}

.grc-chart-intro p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.65;
}

.grc-chart-visual {
  display: grid;
  grid-column: 1;
  place-items: center;
  width: min(100%, 360px);
  margin: 8px auto 0;
}

.grc-chart-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  font-family: inherit;
}

.grc-chart-slice {
  cursor: pointer;
  opacity: 0.84;
  outline: none;
  transform-box: view-box;
  transform-origin: center;
  transition:
    transform 200ms ease-in-out,
    filter 200ms ease-in-out,
    opacity 200ms ease-in-out;
}

.grc-chart-slice circle {
  fill: none;
  stroke-width: 48;
  stroke-linecap: round;
  stroke-dasharray: 29.5 70.5;
  transform: rotate(-90deg);
  transform-origin: 130px 130px;
  transition: stroke-width 300ms ease;
}

.grc-chart-slice text {
  fill: var(--brand-white);
  font-size: 11.5px;
  font-weight: 650;
  letter-spacing: 0;
  pointer-events: none;
}

.grc-chart-slice-governance circle {
  stroke: var(--brand-navy);
  stroke-dashoffset: 0;
}

.grc-chart-slice-risk circle {
  stroke: var(--brand-orange);
  stroke-dashoffset: -33.333;
}

.grc-chart-slice-compliance circle {
  stroke: #FFE600;
  stroke-dashoffset: -66.666;
}

.grc-chart-slice-compliance text {
  fill: #2E2E38;
}

.grc-chart-slice-governance.is-active {
  transform: translate(5px, -3px);
}

.grc-chart-slice-risk.is-active {
  transform: translate(0, 6px);
}

.grc-chart-slice-compliance.is-active {
  transform: translate(-5px, -3px);
}

.grc-chart-slice.is-active {
  opacity: 1;
  filter: drop-shadow(0 13px 12px rgba(25, 23, 69, 0.16));
}

.grc-chart-slice:focus-visible circle {
  stroke-width: 52;
}

.grc-chart-core-label {
  fill: var(--brand-navy);
  font-size: 27px;
  font-weight: 700;
  pointer-events: none;
}

.grc-chart-details {
  display: grid;
  grid-column: 2;
  min-width: 0;
  margin-top: 8px;
}

.grc-chart-detail {
  --grc-detail-accent: var(--brand-navy);
  grid-area: 1 / 1;
  min-width: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition:
    opacity 300ms ease,
    transform 420ms cubic-bezier(0.2, 0.82, 0.2, 1),
    visibility 0s linear 420ms;
}

.grc-chart-detail[data-grc-detail="risk"] {
  --grc-detail-accent: var(--brand-orange);
}

.grc-chart-detail[data-grc-detail="compliance"] {
  --grc-detail-accent: #C2AE00;
}

.grc-chart-detail.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 70ms;
}

.grc-chart-detail-heading {
  display: grid;
  gap: 7px;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(25, 23, 69, 0.1);
}

.grc-chart-detail-heading span {
  color: var(--grc-detail-accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.grc-chart-detail-heading h3 {
  max-width: 640px;
  margin: 0;
  color: var(--brand-navy);
  font-size: 24px;
  font-weight: 620;
  line-height: 1.25;
  text-align: left;
}

.grc-chart-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}

.grc-chart-benefits section {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.76);
  border-left: 3px solid var(--grc-detail-accent);
  border-radius: 6px;
  box-shadow: 0 12px 34px rgba(25, 23, 69, 0.04);
}

.grc-chart-benefits h4 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.35;
}

.grc-chart-benefits p {
  margin: 9px 0 0;
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.62;
}

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

.solution-pills li {
  padding: 8px 11px;
  background: rgba(25, 23, 69, 0.055);
  border-radius: 999px;
  color: var(--brand-navy);
  font-size: 13px;
  font-weight: 620;
}

.solution-detail {
  padding: 88px 0;
  background: var(--brand-white);
}

.solution-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}

.solution-summary {
  position: sticky;
  top: 118px;
}

.solution-summary h2,
.solution-band h2 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 34px;
  font-weight: 620;
  line-height: 1.2;
  letter-spacing: 0;
}

.solution-summary p,
.solution-band p {
  margin: 18px 0 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.65;
}

.solution-feature-grid {
  display: grid;
  gap: 16px;
}

.solution-feature-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(25, 23, 69, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(25, 23, 69, 0.055);
}

.solution-feature-card h3 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 21px;
  line-height: 1.25;
}

.solution-feature-card p {
  margin: 12px 0 0;
  color: var(--text-secondary);
  line-height: 1.58;
}

.solution-checks {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.solution-checks li {
  position: relative;
  padding-left: 18px;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 560;
}

.solution-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background: var(--brand-orange);
  border-radius: 50%;
}

.solution-feature-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--brand-orange);
  font-size: 14px;
  font-weight: 680;
}

.solution-feature-link:hover,
.solution-feature-link:focus-visible {
  color: var(--brand-navy);
  outline: none;
}

.solution-band {
  padding: 82px 0;
  background:
    linear-gradient(180deg, rgba(255, 243, 238, 0.32) 0%, var(--brand-white) 100%);
}

.solution-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.solution-flow article {
  padding: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(25, 23, 69, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(25, 23, 69, 0.055);
}

.solution-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  background: var(--brand-navy);
  color: var(--brand-white);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 680;
}

.solution-flow h3 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 18px;
  font-weight: 620;
}

.solution-flow p {
  margin: 10px 0 0;
  font-size: 15px;
}

.solution-cta {
  padding: 74px 0;
  background: var(--brand-navy);
  color: var(--brand-white);
}

.solution-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 34px;
}

.solution-cta h2 {
  max-width: 760px;
  margin: 0;
  color: var(--brand-white);
  font-size: 34px;
  line-height: 1.2;
}

.solution-cta p {
  max-width: 680px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.58;
}

.solution-page-hero.grc-hero {
  min-height: clamp(760px, 100svh, 1080px);
  padding: 0;
  overflow: hidden;
  background: #11102F;
}

.solution-page-hero.grc-hero::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 9, 30, 0.08) 0%, rgba(10, 9, 30, 0.12) 42%, rgba(10, 9, 30, 0.78) 100%);
  -webkit-mask-image: none;
  mask-image: none;
  opacity: 1;
}

.grc-hero-media {
  position: absolute;
  inset: -3% -4vw -2%;
  z-index: 0;
  overflow: hidden;
  background: url("img/grc-arena-reporting-meeting.png") center / cover no-repeat;
}

.grc-hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.grc-video-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  min-height: clamp(760px, 100svh, 1080px);
  padding-top: calc(var(--header-flow-offset) + 96px);
  padding-bottom: 32px;
}

.grc-hero-heading {
  max-width: 1120px;
  animation: grc-hero-copy-in 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.grc-hero h1 {
  max-width: 1020px;
  color: #FFFFFF;
  font-size: 38px;
  line-height: 1.18;
  text-shadow: 0 3px 20px rgba(6, 5, 24, 0.28);
}

.grc-hero-lead-row {
  max-width: 1080px;
  margin-top: 22px;
}

.grc-hero-lead-row .solution-lead {
  max-width: 1020px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.58;
  text-shadow: 0 2px 16px rgba(6, 5, 24, 0.24);
}

.grc-integrated-showcase {
  grid-column: 1 / -1;
  margin-top: 18px;
}

.grc-product-showcase {
  --grc-showcase-bleed: clamp(24px, 4vw, 64px);
  --grc-showcase-double-bleed: clamp(48px, 8vw, 128px);
  position: relative;
  width: calc(100% + var(--grc-showcase-double-bleed));
  margin-left: calc(var(--grc-showcase-bleed) * -1);
  margin-right: calc(var(--grc-showcase-bleed) * -1);
  isolation: isolate;
  animation: grc-showcase-in 900ms 100ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes grc-hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes grc-showcase-in {
  from {
    opacity: 0;
    transform: translate3d(26px, 10px, 0) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.grc-product-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 2.4 / 1;
}

.grc-product-slide {
  position: absolute;
  inset: 0 8%;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 16px, 0) scale(0.88);
  filter: blur(5px) saturate(0.7);
  transition:
    transform 680ms cubic-bezier(0.2, 0.78, 0.2, 1),
    opacity 460ms ease,
    filter 560ms ease;
  will-change: transform, opacity, filter;
}

.grc-product-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #FFFFFF;
  border: 1px solid rgba(25, 23, 69, 0.08);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(25, 23, 69, 0.13);
}

.grc-product-slide.grc-product-slide-contain img {
  object-fit: contain;
}

.grc-product-slide.is-active {
  z-index: 3;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: none;
}

.grc-product-slide.is-prev {
  z-index: 1;
  opacity: 0.44;
  transform: translate3d(-9%, 18px, 0) scale(0.92);
  filter: blur(4px) saturate(0.72);
}

.grc-product-slide.is-next {
  z-index: 2;
  opacity: 0.44;
  transform: translate3d(9%, 18px, 0) scale(0.92);
  filter: blur(4px) saturate(0.72);
}

.grc-product-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 72px;
  padding: 0;
  color: var(--brand-navy);
  background: transparent;
  border: 0;
  font-size: 58px;
  font-weight: 400;
  line-height: 1;
  opacity: 0.74;
  text-shadow: 0 2px 14px rgba(247, 246, 241, 0.92);
  transform: translateY(-50%);
  transition: color 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.grc-product-arrow:hover,
.grc-product-arrow:focus-visible {
  color: var(--brand-orange);
  opacity: 1;
  outline: none;
}

.grc-product-arrow-prev {
  left: 0;
}

.grc-product-arrow-next {
  right: 0;
}

.grc-product-arrow-prev:hover,
.grc-product-arrow-prev:focus-visible {
  transform: translate(-3px, -50%);
}

.grc-product-arrow-next:hover,
.grc-product-arrow-next:focus-visible {
  transform: translate(3px, -50%);
}

.grc-product-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.grc-product-indicators button {
  position: relative;
  width: 9px;
  height: 9px;
  padding: 0;
  overflow: hidden;
  background: rgba(25, 23, 69, 0.18);
  border-radius: 999px;
  transition: width 280ms ease, background 280ms ease, transform 280ms ease;
}

.grc-product-indicators button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand-navy);
  border-radius: inherit;
  opacity: 0;
  transform: scaleX(var(--progress, 0));
  transform-origin: left center;
  transition: opacity 180ms ease;
}

.grc-product-indicators button:hover,
.grc-product-indicators button:focus-visible {
  background: rgba(25, 23, 69, 0.3);
  transform: translateY(-1px);
}

.grc-product-indicators button.is-active {
  width: 38px;
  background: rgba(25, 23, 69, 0.14);
}

.grc-product-indicators button.is-active::before {
  opacity: 1;
}

.grc-product-indicators button:focus-visible {
  outline: 2px solid var(--brand-navy);
  outline-offset: 2px;
}

.grc-visual-slot {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 340px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(rgba(25, 23, 69, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 23, 69, 0.05) 1px, transparent 1px),
    var(--surface-soft-navy);
  background-size: 28px 28px;
  border: 1px solid rgba(25, 23, 69, 0.1);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(25, 23, 69, 0.08);
}

.grc-visual-slot::before {
  content: "";
  position: absolute;
  inset: 20% 12% 18%;
  background: rgba(247, 246, 241, 0.72);
  border: 1px solid rgba(25, 23, 69, 0.08);
  border-radius: 6px;
  box-shadow: 0 18px 48px rgba(25, 23, 69, 0.08);
}

.grc-visual-slot span,
.grc-visual-slot strong {
  position: relative;
  z-index: 1;
}

.grc-visual-slot span {
  margin-bottom: 4px;
  color: var(--brand-orange);
  font-size: 12px;
  font-weight: 680;
  text-transform: uppercase;
}

.grc-visual-slot strong {
  max-width: 430px;
  color: var(--brand-navy);
  font-size: 17px;
  font-weight: 620;
  line-height: 1.4;
}

.grc-visual-slot-hero {
  min-height: 430px;
}

.grc-section {
  position: relative;
  padding: 92px 0;
  overflow: hidden;
  background: var(--brand-white);
}

.grc-section-soft {
  background: var(--surface-soft-navy);
}

.grc-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px;
  align-items: center;
}

.grc-section-copy h2,
.grc-section-heading h2 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 34px;
  font-weight: 620;
  line-height: 1.2;
}

.grc-section-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.72;
}

.grc-integrated-section .grc-split {
  grid-template-columns: 1fr;
  gap: 36px;
}

.grc-interface-visual {
  position: relative;
  align-self: center;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 7px;
  overflow: hidden;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(25, 23, 69, 0.08);
  border-radius: 8px;
  box-shadow:
    0 28px 70px rgba(25, 23, 69, 0.13),
    0 8px 22px rgba(25, 23, 69, 0.07);
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.grc-interface-visual:hover {
  transform: translateY(-4px);
  box-shadow:
    0 34px 82px rgba(25, 23, 69, 0.16),
    0 10px 26px rgba(25, 23, 69, 0.08);
}

.grc-interface-visual img {
  display: block;
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 6px;
}

.grc-actions-split {
  grid-template-columns: 1fr;
  gap: 36px;
}

.grc-integrated-section .grc-section-copy,
.grc-actions-split .grc-section-copy {
  max-width: 900px;
}

.grc-actions-split .grc-section-copy {
  order: -1;
}

.grc-section-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 38px;
}

.grc-section-heading > p {
  margin: 0;
  max-width: 820px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.68;
}

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

.grc-capability-grid article {
  min-height: 190px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(25, 23, 69, 0.075);
  border-radius: 8px;
}

.grc-capability-grid span {
  color: var(--brand-orange);
  font-size: 13px;
  font-weight: 700;
}

.grc-capability-grid h3 {
  margin: 20px 0 0;
  color: var(--brand-navy);
  font-size: 18px;
  font-weight: 620;
}

.grc-capability-grid p {
  margin: 10px 0 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.58;
}

.grc-lifecycle {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
  padding: 30px 24px 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(25, 23, 69, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(25, 23, 69, 0.055);
}

.grc-lifecycle span {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 0 12px;
  text-align: center;
}

.grc-lifecycle span:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 23px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: rgba(25, 23, 69, 0.18);
}

.grc-lifecycle strong {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(100%, 180px);
  min-height: 48px;
  padding: 9px 16px;
  color: var(--brand-white);
  background: var(--brand-orange);
  border: 5px solid var(--brand-white);
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(231, 80, 37, 0.18), 0 8px 20px rgba(231, 80, 37, 0.16);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.3;
}

.grc-lifecycle small {
  max-width: 180px;
  margin-top: 6px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.45;
}

.grc-content-stack {
  display: grid;
  gap: 108px;
}

.grc-key-points {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.grc-key-points li {
  display: grid;
  gap: 6px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(25, 23, 69, 0.08);
  border-radius: 8px;
}

.grc-key-points strong {
  color: var(--brand-navy);
  font-size: 17px;
  font-weight: 620;
}

.grc-key-points span {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

.grc-split-reverse .grc-visual-slot {
  order: 0;
}

.grc-section-navy {
  color: var(--brand-white);
  background: var(--brand-navy);
}

.grc-section-navy .grc-section-copy h2,
.grc-section-navy .grc-section-copy p:not(.eyebrow) {
  color: var(--brand-white);
}

.grc-section-navy .grc-section-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.grc-report-list {
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.grc-report-list h3,
.grc-benefits h3 {
  margin: 0;
  color: inherit;
  font-size: 21px;
  font-weight: 620;
}

.grc-report-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin-top: 22px;
  padding: 0;
  list-style: none;
}

.grc-report-list li {
  position: relative;
  padding-left: 15px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.48;
}

.grc-report-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--brand-orange);
  border-radius: 50%;
}

.grc-reporting-feature {
  margin-top: 72px;
  padding-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.grc-reporting-copy {
  max-width: 1080px;
}

.grc-reporting-copy h2 {
  margin: 10px 0 0;
  color: var(--brand-white);
  font-size: 34px;
  font-weight: 620;
  line-height: 1.2;
}

.grc-reporting-copy p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.72;
}

.grc-reporting-copy .eyebrow {
  margin: 0;
  color: var(--brand-orange);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.grc-reporting-visual {
  margin: 36px 0 0;
  aspect-ratio: 2.15 / 1;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 28px 72px rgba(4, 3, 21, 0.28);
}

.grc-reporting-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  border-radius: inherit;
}

.grc-visual-slot-wide {
  min-height: 380px;
  margin-top: 64px;
}

.grc-visual-slot-dark {
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.055);
  background-size: 30px 30px;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.grc-visual-slot-dark::before {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.grc-visual-slot-dark strong {
  color: var(--brand-white);
}

.grc-benefits {
  padding: 30px;
  color: var(--brand-navy);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(25, 23, 69, 0.08);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(25, 23, 69, 0.065);
}

.grc-benefits .solution-checks {
  gap: 12px;
  margin-top: 22px;
}

.site-footer {
  background: var(--brand-navy);
  color: rgba(255, 255, 255, 0.78);
  padding: 58px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
}

.footer-grid img {
  width: 165px;
  height: auto;
  margin-bottom: 16px;
}

.footer-grid p {
  margin: 0;
  max-width: 330px;
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: var(--brand-white);
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
}

.footer-grid a {
  display: block;
  width: fit-content;
  margin-top: 9px;
}

.footer-grid a:hover,
.footer-grid a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--brand-orange);
  outline: none;
}

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

@media (max-width: 1100px) {
  .brand img {
    width: 128px;
  }

  .nav-link {
    padding: 0 7px;
    font-size: 13px;
  }

  .hero-slide-title {
    max-width: 660px;
    font-size: 32px;
  }

  .section-heading h2,
  .architecture h2,
  .contact-cta h2 {
    font-size: 32px;
  }

  .hero-copy {
    max-width: 640px;
    font-size: 18px;
  }

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

  .mega-grid {
    padding: 18px;
  }

  .solutions-mega {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.08fr) minmax(0, 1.12fr);
    gap: 16px;
  }

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

  .grc-split {
    gap: 48px;
  }

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

@media (max-width: 920px) {
  :root {
    --header-flow-offset: 88px;
  }

  body.menu-open .site-header {
    height: 100svh;
    overflow-y: auto;
  }

  .site-header {
    top: 8px;
    left: 50%;
    width: min(100% - 32px, 1220px);
    margin: 0;
  }

  .container {
    width: min(100% - 32px, 1220px);
  }

  .header-inner {
    min-height: 56px;
    align-items: flex-start;
    padding: 8px 10px;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    bottom: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 18px;
    background: var(--brand-white);
    border: 1px solid var(--surface-line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    pointer-events: auto;
    transform: none;
  }

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

  .nav-list {
    display: grid;
    gap: 6px;
    pointer-events: auto;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    min-height: 38px;
    padding: 0 10px;
  }

  .nav-actions {
    position: static;
    transform: none;
    align-items: stretch;
  }

  .nav-actions .button {
    width: 100%;
  }

  .mega-panel,
  .narrow-panel {
    position: static;
    width: 100%;
    padding-top: 0;
    transform: none;
    display: none;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    margin-top: 8px;
  }

  .has-panel.open .mega-panel {
    display: block;
    transform: none;
  }

  .mega-grid,
  .mega-grid.two-col {
    grid-template-columns: 1fr;
    padding: 16px;
    box-shadow: none;
  }

  .hero {
    height: auto;
    min-height: 440px;
    max-height: none;
    padding: 52px 0 38px;
  }

  .pixel-globe-glow {
    left: 50%;
    bottom: -40%;
    width: min(112vw, 720px);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.38) 52%, rgba(255, 255, 255, 0.1) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.02));
  }

  .hero-slide-title {
    max-width: 600px;
    font-size: 30px;
    line-height: 1.22;
  }

  .hero-slide-nav {
    width: min(100vw - 56px, 780px);
    top: 88px;
  }

  .hero-arrow {
    width: 42px;
    height: 58px;
    font-size: 50px;
  }

  .hero-content {
    transform: translateY(calc(-62px + var(--header-flow-offset)));
  }

  .section {
    padding: 68px 0;
  }

  .section-heading h2,
  .architecture h2,
  .contact-cta h2 {
    font-size: 30px;
    line-height: 1.22;
  }

  .feature-item,
  .feature-item:nth-child(even),
  .sector-shell,
  .architecture-inner,
  .contact-grid,
  .about-hero-grid,
  .about-story-grid,
  .solution-hero-grid,
  .solution-detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-item:nth-child(even) img {
    order: 0;
  }

  .sector-tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .sector-tab {
    flex: 0 0 auto;
    min-width: 184px;
    text-align: left;
  }

  .sector-panel ul,
  .architecture-map,
  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero {
    padding: calc(120px + var(--header-flow-offset)) 0 72px;
  }

  .about-hero h1 {
    font-size: 34px;
  }

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

  .partner-proof-inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .solution-page-hero {
    padding: calc(126px + var(--header-flow-offset)) 0 72px;
  }

  .solution-page-hero h1 {
    font-size: 36px;
  }

  .solution-summary {
    position: static;
  }

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

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

  .grc-split,
  .grc-section-heading {
    grid-template-columns: 1fr;
  }

  .solution-page-hero.grc-hero,
  .grc-video-hero-content {
    min-height: 700px;
  }

  .grc-video-hero-content {
    padding-top: calc(var(--header-flow-offset) + 78px);
    padding-bottom: 36px;
  }

  .grc-hero-media {
    inset: -2% -7vw;
  }

  .grc-integrated-showcase {
    margin-top: 12px;
  }

  .grc-product-stage {
    aspect-ratio: 2.4 / 1;
  }

  .grc-product-showcase {
    --grc-showcase-bleed: 0px;
    --grc-showcase-double-bleed: 0px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .grc-product-slide {
    inset: 0 6%;
  }

  .grc-product-arrow {
    width: 42px;
    font-size: 52px;
  }

  .grc-visual-slot-hero {
    min-height: 360px;
  }

  .grc-section {
    padding: 74px 0;
  }

  .grc-section-heading {
    gap: 20px;
  }

  .grc-split {
    gap: 38px;
  }

  .grc-integrated-section .grc-split,
  .grc-actions-split {
    grid-template-columns: 1fr;
  }

  .grc-interface-visual {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .grc-content-stack {
    gap: 78px;
  }

  .grc-chart-section {
    padding: 74px 0 80px;
  }

  .grc-chart-section > .container {
    grid-template-columns: minmax(245px, 0.72fr) minmax(0, 1.28fr);
    gap: 26px 34px;
  }

  .grc-chart-visual {
    width: min(100%, 300px);
  }

  .grc-chart-detail-heading h3 {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 148px;
  }

  .hero {
    min-height: 410px;
  }

  .hero-slide-title {
    font-size: 24px;
  }

  .hero-slide-nav {
    width: calc(100vw - 24px);
    top: 84px;
  }

  .hero-arrow {
    width: 34px;
    height: 48px;
    font-size: 42px;
    opacity: 0.62;
  }

  .section-heading h2,
  .architecture h2,
  .contact-cta h2 {
    font-size: 24px;
  }

  .hero-content {
    transform: translateY(calc(-32px + var(--header-flow-offset)));
  }

  .hero-subcopy {
    max-width: 330px;
    font-size: 14px;
  }

  .about-hero h1 {
    font-size: 28px;
  }

  .solution-page-hero h1 {
    font-size: 30px;
  }

  .solution-page-hero.grc-hero,
  .grc-video-hero-content {
    min-height: 640px;
  }

  .grc-video-hero-content {
    padding-top: calc(var(--header-flow-offset) + 62px);
    padding-bottom: 24px;
  }

  .grc-hero-media {
    inset: -1.5% -12vw;
  }

  .solution-lead,
  .solution-summary p,
  .partner-proof p:not(.eyebrow),
  .solution-band p,
  .solution-cta p {
    font-size: 16px;
  }

  .partner-proof-inner {
    padding: 22px;
  }

  .hero-copy,
  .about-hero p:not(.eyebrow),
  .about-copy p,
  .section-heading p:not(.eyebrow),
  .sector-panel p:not(.panel-kicker),
  .architecture p:not(.eyebrow),
  .contact-cta p,
  .about-cta p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions,
  .about-actions,
  .contact-lines {
    display: grid;
  }

  .hero-actions .button,
  .about-actions .button,
  .contact-lines a {
    width: 100%;
  }

  .solution-grid,
  .resource-grid,
  .value-grid,
  .metrics-grid,
  .office-panel,
  .sector-panel ul,
  .architecture-map,
  .solution-flow,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-map {
    height: 260px;
  }

  .sector-panels {
    min-height: 0;
    padding: 24px;
  }

  .solution-card {
    min-height: 0;
  }

  .contact-cta,
  .about-cta,
  .solution-cta {
    padding: 68px 0;
  }

  .about-cta h2,
  .solution-cta h2,
  .solution-summary h2,
  .solution-band h2 {
    font-size: 26px;
  }

  .footer-bottom {
    display: grid;
  }

  .grc-section-copy h2,
  .grc-section-heading h2 {
    font-size: 26px;
  }

  .grc-section-copy p:not(.eyebrow),
  .grc-section-heading > p {
    font-size: 16px;
  }

  .grc-reporting-feature {
    margin-top: 52px;
    padding-top: 46px;
  }

  .grc-reporting-copy h2 {
    font-size: 26px;
  }

  .grc-reporting-copy p {
    font-size: 16px;
  }

  .grc-reporting-visual {
    margin-top: 26px;
  }

  .grc-visual-slot,
  .grc-visual-slot-hero,
  .grc-visual-slot-wide {
    min-height: 280px;
  }

  .grc-visual-slot {
    padding: 20px;
  }

  .grc-capability-grid,
  .grc-lifecycle,
  .grc-report-list ul {
    grid-template-columns: 1fr;
  }

  .grc-capability-grid article {
    min-height: 0;
  }

  .grc-lifecycle {
    gap: 8px;
    padding: 24px 20px;
  }

  .grc-lifecycle span {
    grid-template-columns: 136px minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: center;
    justify-items: stretch;
    gap: 14px;
    padding: 0 0 22px;
    text-align: left;
  }

  .grc-lifecycle strong {
    grid-column: 1;
    width: 100%;
    text-align: center;
  }

  .grc-lifecycle small {
    grid-column: 2;
    align-self: center;
    margin-top: 0;
  }

  .grc-lifecycle span:not(:last-child)::after {
    top: 48px;
    bottom: -8px;
    left: 67px;
    width: 2px;
    height: auto;
  }

  .grc-report-list,
  .grc-benefits {
    padding: 22px;
  }

  .grc-visual-slot-wide {
    margin-top: 42px;
  }

  .grc-chart-section {
    padding: 66px 0 72px;
  }

  .grc-chart-section > .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .grc-chart-intro,
  .grc-chart-visual,
  .grc-chart-details {
    grid-column: 1;
  }

  .grc-chart-intro h2 {
    font-size: 26px;
  }

  .grc-chart-intro p:not(.eyebrow) {
    font-size: 16px;
  }

  .grc-chart-visual {
    width: min(100%, 300px);
    margin-top: 12px;
  }

  .grc-chart-details {
    margin-top: 12px;
  }

  .grc-chart-detail-heading h3 {
    font-size: 21px;
  }

  .grc-chart-benefits {
    grid-template-columns: 1fr;
  }

  .grc-product-stage {
    aspect-ratio: 2.4 / 1;
  }

  .grc-product-slide {
    inset: 0 5%;
  }

  .grc-product-slide.is-prev {
    transform: translate3d(-6%, 10px, 0) scale(0.94);
    filter: blur(3px) saturate(0.76);
  }

  .grc-product-slide.is-next {
    transform: translate3d(6%, 10px, 0) scale(0.94);
    filter: blur(3px) saturate(0.76);
  }

  .grc-product-arrow {
    width: 32px;
    height: 54px;
    font-size: 44px;
  }

  .grc-product-indicators {
    margin-top: 14px;
  }

  .grc-integrated-showcase {
    margin-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .grc-hero-heading,
  .grc-product-showcase {
    animation: none;
  }

  .grc-interface-visual {
    transition: none;
  }

  .grc-hero-video {
    display: none;
  }

  .grc-chart-slice,
  .grc-chart-detail,
  .grc-product-slide {
    transition: none;
  }
}
