:root {
  --ink: #07131f;
  --ink-soft: #344653;
  --muted: #62717b;
  --line: #d7ddda;
  --paper: #ffffff;
  --paper-warm: #f5f4ef;
  --mist: #eef3f1;
  --navy: #0d2436;
  --blue: #005bea;
  --teal: #1aa892;
  --gold: #c99a3b;
  --plum: #4d3d6d;
  --danger: #b54b3b;
  --shadow: 0 18px 45px rgba(7, 19, 31, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: Graphik, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--blue);
  border-radius: 4px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(215, 221, 218, 0.9);
  backdrop-filter: saturate(1.2) blur(12px);
  transition: box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-compact {
  background: rgba(255, 255, 255, 0.985);
  border-color: rgba(174, 185, 183, 0.95);
  box-shadow: 0 16px 36px rgba(7, 19, 31, 0.11);
}

.utility-bar {
  color: #e8eeed;
  background: var(--navy);
  font-size: 13px;
}

.utility-inner,
.nav-shell,
.site-nav,
.hero-actions,
.footer-bottom {
  display: flex;
  align-items: center;
}

.utility-inner {
  min-height: 34px;
  justify-content: space-between;
  gap: 24px;
}

.utility-inner nav {
  display: flex;
  gap: 22px;
}

.utility-inner a {
  color: #f5f7f6;
}

.utility-inner a:hover,
.site-nav a:hover,
.footer-grid a:hover {
  color: var(--blue);
}

.nav-shell {
  min-height: 74px;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand strong {
  font-size: 20px;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  justify-content: center;
  gap: 30px;
  color: var(--ink);
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 26px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 10px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
}

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

.nav-toggle .nav-toggle-label {
  width: auto;
  height: auto;
  background: transparent;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.language-switch button {
  min-width: 42px;
  min-height: 34px;
  padding: 7px 10px;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 800;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.language-switch button.is-active {
  color: var(--paper);
  background: var(--navy);
}

.header-cta,
.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.header-cta {
  color: var(--paper);
  background: var(--blue);
  white-space: nowrap;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button::after,
.header-cta::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.28) 45%, transparent 70%);
  content: "";
  opacity: 0;
  transform: translateX(-120%);
}

.button:hover::after,
.header-cta:hover::after {
  animation: sheen 900ms ease forwards;
}

.button span[aria-hidden="true"] {
  margin-left: 6px;
}

.button-primary {
  color: var(--paper);
  background: var(--blue);
}

.button-secondary {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.button-light {
  color: var(--ink);
  background: var(--paper);
}

.hero {
  position: relative;
  min-height: 78svh;
  color: var(--paper);
  background-image: url("assets/hero-market-suite.jpg");
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(4, 13, 21, 0.64);
}

.hero-market-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.82;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: 78svh;
  max-width: 780px;
  padding: 76px 0 82px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9de5d4;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 72px;
  font-weight: 600;
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.1;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.25;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  color: #edf4f2;
  font-size: 20px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.metrics-band {
  position: relative;
  overflow-x: clip;
  background: var(--paper-warm);
  border-bottom: 1px solid var(--line);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.metrics-grid div {
  position: relative;
  overflow: hidden;
  min-height: 138px;
  padding: 26px 28px;
  background: var(--paper-warm);
}

.metrics-grid div::after {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--gold));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.metrics-grid div.is-visible::after {
  transform: scaleX(1);
}

.metrics-grid strong,
.metrics-grid span {
  display: block;
}

.metrics-grid strong {
  color: var(--blue);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
}

.metrics-grid span {
  margin-top: 10px;
  color: var(--ink-soft);
  font-weight: 600;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section.scroll-scene::before,
.metrics-band.scroll-scene::before {
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  top: 42px;
  z-index: 1;
  width: 96px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--gold));
  content: "";
  opacity: calc(0.18 + var(--scroll-progress, 0) * 0.82);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
}

.section.scroll-scene,
.metrics-band.scroll-scene {
  --scroll-progress: 0;
  overflow-x: clip;
}

.business-section.scroll-scene::before,
.compliance-section.scroll-scene::before {
  background: linear-gradient(90deg, #9de5d4, rgba(255, 255, 255, 0.7), var(--gold));
}

.scroll-layer {
  max-width: 100%;
  backface-visibility: hidden;
  transform-origin: center;
  will-change: transform, opacity, filter, clip-path;
}

.scroll-layer.reveal-item {
  transition: filter 80ms linear;
}

.scroll-layer.is-scroll-layer-visible {
  pointer-events: auto;
}

.scroll-scene[data-scroll-entrance="light-speed"] .scroll-layer {
  transform-origin: center left;
}

.scroll-scene[data-scroll-entrance="split"] .scroll-layer:nth-child(even) {
  transform-origin: center right;
}

.scroll-scene[data-scroll-entrance="zoom"] .scroll-layer {
  transform-origin: center bottom;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 74px;
  align-items: start;
}

.intro-copy {
  color: var(--ink-soft);
  font-size: 19px;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

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

.solutions-section {
  border-top: 1px solid var(--line);
}

.finder {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 28px;
}

.search-field {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-weight: 700;
}

.search-field input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #aeb9b7;
  border-radius: 4px;
}

.search-field input:focus,
.segment-control button:focus,
.nav-toggle:focus,
.language-switch button:focus,
.button:focus,
.header-cta:focus {
  outline: 3px solid rgba(0, 91, 234, 0.24);
  outline-offset: 2px;
}

.segment-control {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.segment-control button,
.insight-tabs button {
  min-height: 44px;
  padding: 10px 14px;
  color: var(--ink-soft);
  background: var(--mist);
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
}

.segment-control button.is-active,
.insight-tabs button.is-active {
  color: var(--paper);
  background: var(--navy);
}

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

.solution-card,
.business-card,
.timeline article,
.leader-grid article,
.insight-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.solution-card {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 326px;
  padding: 24px;
  align-content: start;
  box-shadow: 0 10px 25px rgba(7, 19, 31, 0.05);
  transform-style: preserve-3d;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.solution-card::after,
.business-card::after,
.leader-grid article::after,
.insight-item::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(125deg, transparent 14%, rgba(255, 255, 255, 0.24) 42%, transparent 70%);
  background-position: var(--spot-x, 50%) var(--spot-y, 50%);
  background-size: 185% 185%;
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.solution-card:hover,
.leader-grid article:hover,
.insight-item:hover {
  border-color: rgba(0, 91, 234, 0.35);
  box-shadow: 0 24px 45px rgba(7, 19, 31, 0.12);
}

.solution-card:hover::after,
.business-card:hover::after,
.leader-grid article:hover::after,
.insight-item:hover::after {
  opacity: 1;
}

.solution-card[data-theme="blue"] {
  border-top: 4px solid var(--blue);
}

.solution-card[data-theme="teal"] {
  border-top: 4px solid var(--teal);
}

.solution-card[data-theme="gold"] {
  border-top: 4px solid var(--gold);
}

.solution-card[data-theme="plum"] {
  border-top: 4px solid var(--plum);
}

.solution-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 8px;
  color: var(--ink-soft);
  background: var(--mist);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
}

.solution-card p {
  color: var(--ink-soft);
}

.solution-card ul {
  display: grid;
  gap: 8px;
  margin: 6px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.solution-card li {
  position: relative;
  padding-left: 18px;
}

.solution-card li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 9px;
  background: currentColor;
  border-radius: 50%;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  color: var(--ink-soft);
  background: var(--mist);
  border-radius: var(--radius);
}

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

.platform-layout,
.global-layout,
.insights-layout,
.compliance-layout,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.platform-image img,
.global-layout img,
.insights-copy img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.platform-copy p,
.global-layout p,
.insights-copy p,
.compliance-layout p {
  color: var(--ink-soft);
  font-size: 18px;
}

.feature-list,
.region-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.feature-list div,
.region-list div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

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

.feature-list span,
.region-list span {
  margin-top: 4px;
  color: var(--muted);
}

.business-section {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--navy);
}

.business-section::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 96px 96px;
  content: "";
  opacity: calc(0.08 + var(--scroll-progress, 0) * 0.18);
  transform: translate3d(var(--scene-grid-x, 0px), var(--scene-grid-y, 0px), 0);
}

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

.business-section .section-kicker {
  color: #9de5d4;
}

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

.business-card {
  position: relative;
  overflow: hidden;
  min-height: 294px;
  padding: 24px;
  color: #edf4f2;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.2);
  transition: background 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.business-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(157, 229, 212, 0.5);
  transform: translateY(-4px);
}

.business-card span {
  display: block;
  margin-bottom: 48px;
  color: #9de5d4;
  font-weight: 800;
}

.business-card p {
  color: #cfdbd9;
}

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

.roadmap-section {
  background: var(--paper-warm);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 24px;
}

.timeline::before,
.timeline::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 2px;
  height: 2px;
  content: "";
}

.timeline::before {
  background: rgba(7, 19, 31, 0.14);
}

.timeline::after {
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--gold));
  transform: scaleX(var(--timeline-progress, 0));
  transform-origin: left;
}

.timeline article {
  min-height: 255px;
  padding: 24px;
}

.timeline span {
  display: block;
  margin-bottom: 34px;
  color: var(--blue);
  font-weight: 800;
}

.timeline p,
.leader-grid span,
.insight-item p {
  color: var(--muted);
}

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

.insights-copy img {
  margin-top: 28px;
}

.insight-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

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

.insight-item {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 8px;
  padding: 22px;
}

.insight-item span {
  color: var(--danger);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.insight-item h3 {
  margin-bottom: 0;
}

.insight-item a {
  color: var(--blue);
  font-weight: 800;
}

.leadership-section {
  background: var(--mist);
}

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

.leader-grid article {
  position: relative;
  overflow: hidden;
  min-height: 235px;
  padding: 24px;
}

.leader-grid p {
  margin-bottom: 18px;
  color: var(--blue);
  font-weight: 700;
}

.leader-grid span {
  display: block;
}

.compliance-section {
  color: var(--paper);
  background: #111111;
}

.compliance-section .section-kicker {
  color: #9de5d4;
}

.compliance-layout p {
  color: #d7e1df;
}

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

.check-list li {
  position: relative;
  padding-left: 20px;
  color: #edf4f2;
}

.contact-section {
  padding: 70px 0;
  background: var(--paper-warm);
}

.contact-panel {
  position: relative;
  overflow: hidden;
  padding: 40px;
  color: var(--paper);
  background: var(--navy);
  border-radius: var(--radius);
}

.contact-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0%, rgba(26, 168, 146, 0.16) 50%, transparent 100%),
    repeating-linear-gradient(90deg, transparent 0 62px, rgba(255, 255, 255, 0.045) 62px 63px);
  content: "";
  opacity: 0.75;
}

.contact-panel > * {
  position: relative;
  z-index: 1;
}

.reveal-item {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.stagger-group > * {
  transition-delay: calc(var(--reveal-delay, 0ms) + var(--stagger-index, 0) * 70ms);
}

@keyframes sheen {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }

  18% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

.contact-panel h2 {
  margin-bottom: 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer {
  padding: 64px 0 26px;
  color: #d8e2df;
  background: #07131f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1fr;
  gap: 44px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand .brand-mark {
  background: var(--blue);
}

.footer-brand strong,
.footer-grid h2 {
  color: var(--paper);
}

.footer-grid h2 {
  margin: 0 0 12px;
  font-size: 15px;
}

.footer-grid p {
  color: #aab7b4;
}

.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid a {
  color: #d8e2df;
}

.footer-bottom {
  justify-content: space-between;
  gap: 16px;
  margin-top: 44px;
  padding-top: 22px;
  color: #aab7b4;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 36px;
  }

  .header-cta {
    display: none;
  }

  .language-switch {
    margin-left: auto;
  }

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

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

  .platform-layout,
  .global-layout,
  .insights-layout,
  .compliance-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .section.scroll-scene,
  .metrics-band.scroll-scene {
    overflow-x: hidden;
  }

  .section.scroll-scene::before,
  .metrics-band.scroll-scene::before {
    left: 16px;
    top: 28px;
    width: 72px;
  }

  .scroll-layer {
    transform-origin: center top;
  }

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

  .utility-bar {
    display: none;
  }

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

  .brand {
    min-width: auto;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    padding-left: 36px;
  }

  .nav-toggle > span:not(.nav-toggle-label) {
    position: absolute;
    left: 11px;
  }

  .nav-toggle > span:nth-child(1) {
    top: 13px;
  }

  .nav-toggle > span:nth-child(2) {
    top: 20px;
  }

  .nav-toggle > span:nth-child(3) {
    top: 27px;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 16px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(7, 19, 31, 0.11);
  }

  .site-nav.is-open {
    display: flex;
    animation: mobileMenuIn 180ms ease both;
  }

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

  .hero,
  .hero-content {
    min-height: 76svh;
  }

  .hero-content {
    padding: 64px 0 72px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.04;
  }

  h2 {
    font-size: 30px;
  }

  .hero-copy,
  .intro-copy,
  .platform-copy p,
  .global-layout p,
  .insights-copy p,
  .compliance-layout p {
    font-size: 17px;
  }

  .metrics-grid,
  .split-layout,
  .finder,
  .solution-grid,
  .business-grid,
  .timeline,
  .leader-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid div {
    min-height: auto;
  }

  .section {
    padding: 68px 0;
  }

  .contact-section {
    padding: 48px 0;
  }

  .contact-panel {
    padding: 28px;
  }

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

@keyframes mobileMenuIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

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

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

  .hero-market-canvas {
    display: none;
  }

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

  .scroll-layer {
    clip-path: none !important;
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .timeline::after,
  .section.scroll-scene::before,
  .metrics-band.scroll-scene::before {
    transform: scaleX(1);
  }
}

@media (max-width: 520px) {
  .brand strong {
    font-size: 18px;
  }

  .language-switch button {
    min-width: 38px;
    padding: 7px 8px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 26px;
  }

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

  .button {
    min-height: 48px;
  }

  .segment-control,
  .insight-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .segment-control button,
  .insight-tabs button {
    min-width: 0;
  }
}
