:root {
  --navy-950: #031426;
  --navy-900: #061b36;
  --navy-800: #0e2a4b;
  --blue-600: #1565d8;
  --blue-500: #2a86ff;
  --teal-500: #2d9c9c;
  --cyan-400: #49c8e8;
  --white: #fff;
  --warm-white: #f8f7f4;
  --gray-100: #eef2f5;
  --gray-300: #d5dee6;
  --gray-600: #475569;
  --charcoal: #1e2935;
  --success: #2e8b57;
  --container: 1448px;
  --font: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
  --shadow-small: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 12px 32px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--warm-white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 96px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  min-height: 44px;
  padding: 8px 16px;
  color: var(--navy-900);
  background: var(--white);
  transform: translateY(-150%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 600;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button:focus-visible,
a:focus-visible,
.main-nav a:focus-visible,
.main-nav button:focus-visible,
.language:focus-visible,
.menu-toggle:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(73, 200, 232, 0.45);
  outline-offset: 3px;
}

.button-primary {
  color: var(--white);
  background: var(--blue-600);
  box-shadow: 0 8px 24px rgba(21, 101, 216, 0.22);
}

.button-primary:hover {
  background: #0e73e9;
}

.button-outline {
  color: var(--white);
  background: rgba(3, 20, 38, 0.42);
  border-color: rgba(73, 200, 232, 0.78);
}

.button-outline:hover {
  background: rgba(21, 101, 216, 0.22);
  border-color: var(--cyan-400);
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 14px;
}

.button-compact {
  min-height: 44px;
  padding: 8px 16px;
  font-size: 13px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 68px;
  color: var(--white);
  background: rgba(3, 20, 38, 0.98);
  border-bottom: 1px solid rgba(73, 200, 232, 0.14);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  width: min(1448px, calc(100% - 72px));
  height: 100%;
  margin-inline: auto;
  grid-template-columns: 270px 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  width: 210px;
  height: 48px;
  align-items: center;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.main-nav {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 40px);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.main-nav > a,
.dropdown-trigger {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  cursor: pointer;
}

.main-nav > a::after,
.dropdown-trigger::after {
  position: absolute;
  right: 0;
  bottom: 14px;
  left: 0;
  height: 2px;
  background: var(--blue-500);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav > a:hover::after,
.main-nav > a.active::after,
.dropdown-trigger:hover::after,
.nav-dropdown.open .dropdown-trigger::after {
  transform: scaleX(1);
}

.dropdown-trigger {
  gap: 6px;
}

.dropdown-trigger i {
  font-size: 10px;
  transition: transform 180ms ease;
}

.nav-dropdown {
  position: relative;
  height: 100%;
}

.nav-dropdown.open .dropdown-trigger i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 58px;
  left: 50%;
  display: grid;
  min-width: 210px;
  padding: 8px;
  border: 1px solid rgba(73, 200, 232, 0.2);
  border-radius: 6px;
  visibility: hidden;
  background: var(--navy-900);
  box-shadow: var(--shadow-medium);
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown.open .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  padding: 9px 12px;
  border-radius: 4px;
}

.dropdown-menu a:hover {
  background: rgba(42, 134, 255, 0.16);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}

.language {
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  cursor: pointer;
}

.language.active {
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(73, 200, 232, 0.35);
  border-radius: 4px;
  color: var(--white);
  background: transparent;
  font-size: 24px;
}

.hero {
  position: relative;
  min-height: 352px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero-image,
.hero-overlay,
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 20, 38, 0.99) 0%, rgba(3, 20, 38, 0.96) 27%, rgba(3, 20, 38, 0.68) 48%, rgba(3, 20, 38, 0.06) 76%),
    linear-gradient(0deg, rgba(3, 20, 38, 0.28), transparent 40%);
}

.hero-grid-pattern {
  width: 48%;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(73, 200, 232, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 200, 232, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to right, #000 45%, transparent);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 352px;
  grid-template-columns: 1.02fr 0.62fr 1fr;
  align-items: center;
  gap: 48px;
}

.hero-copy {
  padding: 18px 0 18px 80px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan-400);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
}

.eyebrow span {
  margin-inline: 5px;
}

.hero .eyebrow {
  font-size: 14px;
  white-space: nowrap;
}

.hero-eyebrow-mobile {
  display: none;
}

.hero h1 {
  margin: 0;
  font-size: clamp(38px, 2.85vw, 46px);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.hero h1 .hero-title-accent {
  color: var(--blue-500);
}

.hero-title-line {
  display: block;
}

.hero-description {
  max-width: 460px;
  margin: 10px 0 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.55;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-buttons .button {
  min-width: 152px;
  min-height: 40px;
}

.hero-capabilities {
  display: grid;
  align-self: center;
  gap: 10px;
}

.hero-capability {
  display: grid;
  margin: 0;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 16px;
}

.capability-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  color: var(--white);
  font-size: 22px;
}

.hero-capability p {
  display: grid;
  margin: 0;
  line-height: 1.28;
}

.hero-capability strong {
  font-size: 13px;
  font-weight: 600;
}

.hero-capability span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
}

.expertise-section {
  background: var(--warm-white);
  border-bottom: 1px solid var(--gray-100);
}

.expertise-grid {
  display: grid;
  min-height: 168px;
  grid-template-columns: 1.5fr repeat(5, 1fr);
  align-items: stretch;
}

.expertise-intro {
  padding: 20px 28px 16px 0;
}

.expertise-intro h2,
.process-heading h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: 26px;
  line-height: 1.18;
}

.expertise-intro h2 span,
.process-heading p {
  color: var(--blue-600);
}

.expertise-intro p {
  margin: 12px 0 0;
  color: var(--gray-600);
  font-size: 13px;
  line-height: 1.6;
}

.expertise-card {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  flex-direction: column;
  padding: 18px 16px 14px;
  text-align: center;
}

.expertise-card::before {
  position: absolute;
  top: 40px;
  bottom: 28px;
  left: 0;
  width: 1px;
  background: var(--gray-300);
  content: "";
}

.expertise-card > i {
  height: 42px;
  color: var(--blue-600);
  font-size: 36px;
  line-height: 1;
}

.expertise-card h3 {
  margin: 9px 0 4px;
  color: var(--navy-900);
  font-size: 14px;
  line-height: 1.3;
}

.expertise-card p {
  margin: 0;
  color: var(--gray-600);
  font-size: 11px;
  line-height: 1.55;
}

.solutions-section {
  padding: 8px 0;
  background: #fbfbfa;
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 12px;
}

.visionlis-card,
.process-card {
  min-height: 264px;
  border-radius: 8px;
  box-shadow: var(--shadow-small);
}

.visionlis-card {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}

.visionlis-card > img,
.visionlis-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.visionlis-card > img {
  object-fit: cover;
  object-position: center;
}

.visionlis-shade {
  background: linear-gradient(90deg, rgba(3, 20, 38, 0.96) 0%, rgba(3, 20, 38, 0.85) 36%, rgba(3, 20, 38, 0.18) 70%);
}

.visionlis-content {
  position: relative;
  z-index: 1;
  width: 62%;
  padding: 20px 0 16px 36px;
}

.visionlis-content .eyebrow {
  margin-bottom: 1px;
  font-size: 10px;
}

.visionlis-content h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1;
}

.visionlis-content h2 span {
  color: var(--blue-500);
}

.visionlis-content sup {
  margin-left: 3px;
  font-size: 9px;
}

.visionlis-content h3 {
  margin: 4px 0 6px;
  font-size: 14px;
  line-height: 1.2;
}

.visionlis-content > p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  line-height: 1.55;
}

.product-values {
  display: grid;
  margin: 15px 0 13px;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.product-values div {
  display: grid;
  justify-items: center;
  text-align: center;
}

.product-values i {
  color: var(--white);
  font-size: 22px;
}

.product-values strong {
  margin-top: 3px;
  font-size: 10px;
  line-height: 1.2;
}

.product-values span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
  white-space: nowrap;
}

.process-card {
  padding: 14px 24px 10px;
  background: var(--white);
}

.process-heading h2 {
  font-size: 20px;
}

.process-heading p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.process-steps {
  display: grid;
  margin-top: 15px;
  grid-template-columns: repeat(5, 1fr);
}

.process-step {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 0 10px;
  text-align: center;
}

.process-step:not(:first-child)::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 1px;
  background: var(--gray-300);
  content: "";
}

.process-step i {
  height: 39px;
  color: var(--blue-600);
  font-size: 30px;
  line-height: 1;
}

.process-step strong {
  margin-top: 4px;
  color: var(--navy-900);
  font-size: 11px;
}

.process-step span {
  margin-top: 2px;
  color: var(--gray-600);
  font-size: 9px;
  line-height: 1.45;
}

.process-card blockquote {
  display: grid;
  min-height: 74px;
  margin: 15px 0 0;
  padding: 10px 18px;
  border-radius: 6px;
  background: linear-gradient(90deg, #edf5ff, #f6f9fd);
  grid-template-columns: 28px 1fr 1.42fr;
  align-items: center;
  gap: 14px;
}

.process-card blockquote i {
  align-self: start;
  color: var(--blue-600);
  font-size: 24px;
}

.process-card blockquote strong {
  color: var(--navy-900);
  font-size: 12px;
  line-height: 1.5;
}

.process-card blockquote span {
  padding-left: 18px;
  border-left: 1px solid var(--gray-300);
  color: var(--charcoal);
  font-size: 10px;
  line-height: 1.5;
}

.site-footer {
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.84);
  background: linear-gradient(90deg, #061b36, #08294c);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.15fr 1.05fr 0.8fr;
}

.footer-grid section {
  min-width: 0;
  padding: 0 36px;
}

.footer-grid section:first-child {
  padding-left: 12px;
}

.footer-grid section:last-child {
  padding-right: 0;
}

.footer-grid section + section {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-grid h2 {
  margin: 0 0 3px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.4;
}

.footer-grid p,
.check-list,
.footer-grid address {
  margin: 0;
  font-size: 10.5px;
  line-height: 1.6;
}

.check-list {
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.check-list i {
  color: var(--white);
}

.newsletter-form {
  display: grid;
  margin-top: 8px;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.newsletter-form input {
  min-width: 0;
  height: 44px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  color: var(--white);
  background: rgba(3, 20, 38, 0.32);
  font-size: 11px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.form-message {
  grid-column: 1 / -1;
  min-height: 18px;
  color: #8de0b0;
}

.form-message.error {
  color: #ffb2b2;
}

.footer-grid address {
  display: grid;
  gap: 3px;
  font-style: normal;
}

.footer-grid address a,
.footer-grid address span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-grid address a {
  min-height: 44px;
}

@media (max-width: 1280px) {
  .header-inner {
    width: min(1180px, calc(100% - 40px));
    grid-template-columns: 220px 1fr auto;
    gap: 18px;
  }

  .brand {
    width: 190px;
  }

  .main-nav {
    gap: 18px;
    font-size: 13px;
  }

  .header-actions {
    gap: 12px;
  }

  .header-actions .button {
    display: none;
  }

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

  .hero-inner {
    grid-template-columns: 1fr 0.65fr 0.8fr;
    gap: 28px;
  }

  .expertise-grid {
    grid-template-columns: 1.4fr repeat(5, 1fr);
  }

  .visionlis-content {
    width: 70%;
    padding-left: 24px;
  }
}

@media (max-width: 1024px) {
  html {
    scroll-padding-top: 68px;
  }

  body {
    padding-top: 68px;
  }

  .site-header {
    position: fixed;
    inset: 0 0 auto;
    width: 100%;
    height: 68px;
  }

  .header-inner {
    display: flex;
    width: calc(100% - 32px);
    justify-content: space-between;
  }

  .brand {
    flex: 0 1 190px;
    width: 190px;
    height: 48px;
    min-width: 0;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 44px;
    order: 3;
  }

  .main-nav {
    position: fixed;
    inset: 68px 0 0;
    z-index: 1;
    display: block;
    width: 100%;
    max-width: none;
    height: calc(100dvh - 68px);
    padding: 24px 20px 48px;
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    background: var(--navy-900);
    box-shadow: none;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 220ms ease, opacity 220ms ease, visibility 220ms ease;
  }

  .main-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .main-nav > a,
  .dropdown-trigger {
    width: 100%;
    height: auto;
    justify-content: space-between;
    min-height: 54px;
    padding-inline: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .main-nav > a::after,
  .dropdown-trigger::after {
    display: none;
  }

  .nav-dropdown {
    height: auto;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 4px 0 8px 18px;
    border: 0;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: grid;
    transform: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .brand,
  .menu-toggle {
    position: relative;
    z-index: 2;
  }

  .hero {
    min-height: 680px;
  }

  .hero-image,
  .hero-overlay {
    height: 430px;
    top: auto;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(3, 20, 38, 0.94) 0%, rgba(3, 20, 38, 0.28) 62%, transparent);
  }

  .hero-inner {
    min-height: 680px;
    padding-block: 54px 32px;
    grid-template-columns: 1.05fr 0.8fr;
    align-items: start;
  }

  .hero-copy {
    grid-column: 1 / -1;
    padding: 0;
  }

  .hero-description {
    max-width: 600px;
  }

  .hero-capabilities {
    grid-column: 1;
    grid-template-columns: repeat(2, 1fr);
  }

  .expertise-grid {
    padding-block: 28px;
    grid-template-columns: repeat(3, 1fr);
  }

  .expertise-intro {
    grid-column: 1 / -1;
    padding-top: 0;
  }

  .expertise-card {
    border-top: 1px solid var(--gray-300);
  }

  .expertise-card::before {
    display: none;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 24px;
  }

  .footer-grid section {
    padding: 0 24px;
  }

  .footer-grid section:nth-child(3) {
    padding-left: 12px;
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 40px);
  }

  .header-inner {
    width: calc(100% - 32px);
  }

  .brand {
    width: 166px;
    height: 42px;
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-image,
  .hero-overlay {
    top: 420px;
    height: 330px;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, var(--navy-950), rgba(3, 20, 38, 0.08) 30%, rgba(3, 20, 38, 0.35));
  }

  .hero-inner {
    display: block;
    min-height: 0;
    padding-block: 40px 30px;
  }

  .hero-copy {
    min-height: 710px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.28;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .hero-capabilities {
    display: grid;
    margin-top: 0;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-capability {
    padding: 12px;
    border: 1px solid rgba(73, 200, 232, 0.16);
    border-radius: 6px;
    background: rgba(14, 42, 75, 0.46);
  }

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

  .expertise-intro {
    padding-right: 0;
  }

  .expertise-card {
    display: grid;
    padding: 20px 0;
    grid-template-columns: 56px 1fr;
    justify-items: start;
    text-align: left;
  }

  .expertise-card > i {
    grid-row: 1 / 3;
  }

  .expertise-card h3 {
    margin-top: 0;
  }

  .visionlis-card {
    min-height: 540px;
  }

  .visionlis-card > img {
    object-position: 65% center;
  }

  .visionlis-shade {
    background: linear-gradient(180deg, rgba(3, 20, 38, 0.98) 0%, rgba(3, 20, 38, 0.9) 53%, rgba(3, 20, 38, 0.32) 100%);
  }

  .visionlis-content {
    width: 100%;
    padding: 26px 22px;
  }

  .visionlis-content > p:not(.eyebrow) {
    max-width: 90%;
  }

  .product-values {
    grid-template-columns: 1fr 1fr;
    gap: 14px 8px;
  }

  .process-card {
    padding: 22px 18px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-step {
    display: grid;
    padding: 14px 4px;
    border-bottom: 1px solid var(--gray-300);
    grid-template-columns: 52px 1fr;
    justify-items: start;
    text-align: left;
  }

  .process-step:not(:first-child)::before {
    display: none;
  }

  .process-step i {
    grid-row: 1 / 3;
  }

  .process-card blockquote {
    grid-template-columns: 30px 1fr;
  }

  .process-card blockquote span {
    grid-column: 1 / -1;
    padding: 10px 0 0;
    border-top: 1px solid var(--gray-300);
    border-left: 0;
  }

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

  .footer-grid section,
  .footer-grid section:first-child,
  .footer-grid section:nth-child(3) {
    padding: 18px 0;
    border-left: 0;
  }

  .footer-grid section + section {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Corporate editorial refinement */

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

.header-inner {
  width: min(1280px, calc(100% - 64px));
}

.hero {
  min-height: 610px;
}

.hero-image,
.hero-overlay,
.hero-grid-pattern {
  height: 100%;
  top: 0;
}

.hero-image {
  object-position: center right;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 20, 38, 0.99) 0%, rgba(3, 20, 38, 0.95) 35%, rgba(3, 20, 38, 0.56) 58%, rgba(3, 20, 38, 0.04) 82%),
    linear-gradient(0deg, rgba(3, 20, 38, 0.3), transparent 45%);
}

.hero-grid-pattern {
  width: 42%;
  opacity: 0.2;
}

.hero-inner {
  min-height: 610px;
  grid-template-columns: minmax(0, 620px) 1fr;
  gap: 40px;
}

.hero-copy {
  padding: 0;
}

.hero h1 {
  font-size: clamp(56px, 4.45vw, 68px);
  line-height: 1.28;
  letter-spacing: 0;
}

.hero-description {
  max-width: 590px;
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 19px;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-buttons .button {
  min-width: 156px;
  min-height: 48px;
}

.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 500;
  transition: color 180ms ease;
}

.hero-text-link:hover {
  color: var(--cyan-400);
}

.outcome-solutions {
  padding: 104px 0 110px;
  background: var(--white);
}

.outcome-solutions-intro {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  column-gap: 72px;
}

.outcome-solutions-intro .section-kicker {
  grid-column: 1 / -1;
}

.outcome-solutions-intro h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(42px, 3.45vw, 50px);
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.outcome-solutions-intro > p:last-child {
  margin: 0 0 5px;
  color: var(--gray-600);
  font-size: 18px;
  line-height: 1.68;
}

.outcome-solutions-list {
  margin-top: 68px;
  border-bottom: 1px solid #c5d1dc;
}

.outcome-solution {
  display: grid;
  padding: 42px 0 46px;
  border-top: 1px solid #c5d1dc;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 72px;
}

.outcome-solution-meta {
  display: grid;
  align-content: start;
  grid-template-columns: 38px 1fr;
  gap: 18px;
}

.outcome-solution-meta span {
  color: var(--blue-600);
  font-size: 14px;
  font-weight: 700;
}

.outcome-solution-meta p {
  margin: 0;
  color: #475569;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.outcome-solution-copy {
  max-width: 760px;
}

.outcome-solution-copy h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 32px;
  line-height: 1.4;
  letter-spacing: -0.015em;
}

.outcome-solution-copy > p {
  max-width: 690px;
  margin: 15px 0 0;
  color: var(--gray-600);
  font-size: 17px;
  line-height: 1.68;
}

.outcome-solution-copy a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: var(--blue-600);
  font-size: 16px;
  font-weight: 600;
}

.outcome-solution-copy a i {
  transition: transform 180ms ease;
}

.outcome-solution-copy a:hover i {
  transform: translate(3px, -1px);
}

.expertise-section {
  padding: 76px 0 82px;
  background: #f8f7f4;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.section-intro {
  max-width: 880px;
}

.section-intro h2,
.corporate-story h2,
.process-intro h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(42px, 3.45vw, 50px);
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.section-intro > p:last-child,
.process-intro > p:last-child {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--gray-600);
  font-size: 18px;
  line-height: 1.68;
}

.capability-journey {
  position: relative;
  display: grid;
  margin-top: 54px;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.capability-journey::before {
  position: absolute;
  top: 23px;
  right: 0;
  left: 0;
  height: 1px;
  background: #b9c9d8;
  content: "";
}

.capability-item {
  position: relative;
  padding-top: 54px;
}

.capability-item::before {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 3px solid var(--warm-white);
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 0 0 1px var(--blue-600);
  content: "";
}

.capability-number {
  position: absolute;
  z-index: 1;
  top: 7px;
  right: 0;
  padding-left: 10px;
  color: #7890a5;
  background: var(--warm-white);
  font-size: 13px;
  font-weight: 600;
}

.capability-label {
  margin: 0 0 8px;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.capability-item h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 22px;
  line-height: 1.45;
}

.capability-item > p:last-child {
  margin: 10px 0 0;
  color: var(--gray-600);
  font-size: 17px;
  line-height: 1.68;
}

.solutions-section {
  padding: 104px 0;
  background: #eef2f5;
}

.solutions-grid {
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 72px;
}

.visionlis-card {
  min-height: 560px;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(6, 27, 54, 0.12);
}

.visionlis-card > img {
  object-position: 68% center;
}

.visionlis-shade {
  background: linear-gradient(180deg, rgba(3, 20, 38, 0.97) 0%, rgba(3, 20, 38, 0.82) 52%, rgba(3, 20, 38, 0.36) 100%);
}

.visionlis-content {
  display: flex;
  width: 100%;
  min-height: 560px;
  padding: 38px 34px 32px;
  align-items: flex-start;
  flex-direction: column;
}

.visionlis-content .eyebrow {
  font-size: 12px;
}

.visionlis-content h2 {
  font-size: 44px;
}

.visionlis-content h3 {
  margin: 8px 0 18px;
  font-size: 17px;
}

.visionlis-content > p:not(.eyebrow) {
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.72;
}

.visionlis-content .button {
  margin-top: auto;
}

.corporate-story {
  align-self: center;
  padding: 20px 0;
}

.corporate-story h2 {
  max-width: 690px;
}

.corporate-lead {
  max-width: 680px;
  margin: 22px 0 36px;
  color: var(--gray-600);
  font-size: 18px;
  line-height: 1.68;
}

.corporate-capabilities {
  border-top: 1px solid #bdcbd7;
}

.corporate-capabilities > div {
  display: grid;
  padding: 22px 0;
  border-bottom: 1px solid #bdcbd7;
  grid-template-columns: 44px minmax(190px, 0.8fr) minmax(260px, 1fr);
  align-items: start;
  gap: 18px;
}

.corporate-capabilities span {
  color: var(--blue-600);
  font-size: 14px;
  font-weight: 600;
}

.corporate-capabilities h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 20px;
  line-height: 1.55;
}

.corporate-capabilities p {
  margin: 0;
  color: var(--gray-600);
  font-size: 17px;
  line-height: 1.68;
}

.process-section {
  padding: 82px 0 88px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy-900);
}

.process-section .section-kicker {
  color: var(--cyan-400);
}

.process-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.54fr);
  align-items: end;
  column-gap: 64px;
}

.process-intro .section-kicker {
  grid-column: 1 / -1;
}

.process-intro h2 {
  color: var(--white);
}

.process-intro > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.process-timeline {
  position: relative;
  display: grid;
  margin-top: 68px;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.process-timeline::before {
  position: absolute;
  top: 28px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(73, 200, 232, 0.35);
  content: "";
}

.process-timeline article {
  position: relative;
  padding-top: 60px;
}

.process-timeline article::before {
  position: absolute;
  z-index: 1;
  top: 22px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 3px solid var(--navy-900);
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 0 1px var(--cyan-400);
  content: "";
}

.process-timeline article > span {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 0;
  padding-left: 8px;
  color: rgba(255, 255, 255, 0.52);
  background: var(--navy-900);
  font-size: 13px;
}

.process-timeline h3 {
  margin: 0;
  color: var(--white);
  font-size: 20px;
}

.process-timeline p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.65;
}

.site-footer {
  padding: 40px 0 34px;
}

.footer-grid h2 {
  margin-bottom: 10px;
  font-size: 18px;
}

.footer-grid p,
.check-list,
.footer-grid address {
  font-size: 15px;
  line-height: 1.65;
}

.newsletter-form input {
  height: 44px;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .container {
    width: min(880px, calc(100% - 48px));
  }

  .hero {
    min-height: 660px;
  }

  .hero-image,
  .hero-overlay {
    top: 0;
    height: 100%;
  }

  .hero-inner {
    min-height: 660px;
    padding-block: 64px;
    grid-template-columns: minmax(0, 560px) 1fr;
  }

  .hero-copy {
    grid-column: 1;
  }

  .hero h1 {
    font-size: 54px;
    line-height: 1.28;
  }

  .hero-description {
    font-size: 18px;
    line-height: 1.7;
  }

  .section-intro h2,
  .corporate-story h2,
  .process-intro h2 {
    font-size: 40px;
  }

  .capability-journey {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 56px;
  }

  .capability-journey::before {
    display: none;
  }

  .capability-item {
    padding-top: 44px;
    border-top: 1px solid #b9c9d8;
  }

  .capability-item::before {
    top: -6px;
  }

  .capability-number {
    top: 12px;
  }

  .solutions-grid {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    gap: 42px;
  }

  .corporate-capabilities > div {
    grid-template-columns: 34px 1fr;
  }

  .corporate-capabilities p {
    grid-column: 2;
  }

  .process-intro {
    grid-template-columns: 1fr;
  }

  .process-intro > p:last-child {
    margin-top: 18px;
  }

  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 46px;
  }

  .process-timeline::before {
    display: none;
  }

  .process-timeline article {
    padding-top: 44px;
    border-top: 1px solid rgba(73, 200, 232, 0.35);
  }

  .process-timeline article::before {
    top: -7px;
  }

  .process-timeline article > span {
    top: 10px;
  }
}

@media (max-width: 760px) {
  .container {
    width: calc(100% - 40px);
  }

  .hero {
    min-height: 730px;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3, 20, 38, 0.96) 0%, rgba(3, 20, 38, 0.76) 47%, rgba(3, 20, 38, 0.08) 100%),
      linear-gradient(90deg, rgba(3, 20, 38, 0.76) 0%, rgba(3, 20, 38, 0.52) 46%, rgba(3, 20, 38, 0.06) 76%, transparent 100%);
  }

  .hero-inner {
    display: flex;
    min-height: 730px;
    padding-block: 54px;
    align-items: flex-start;
  }

  .hero-copy {
    min-height: auto;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.3;
  }

  .hero-description {
    max-width: 34ch;
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-buttons {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-buttons .button {
    width: auto;
  }

  .expertise-section,
  .solutions-section,
  .process-section {
    padding-block: 72px;
  }

  .section-intro h2,
  .corporate-story h2,
  .process-intro h2 {
    font-size: 31px;
  }

  .section-intro > p:last-child,
  .corporate-lead,
  .process-intro > p:last-child {
    font-size: 16px;
  }

  .capability-journey {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 50px;
  }

  .capability-item {
    padding: 30px 0 34px 48px;
  }

  .capability-item::before {
    top: 37px;
  }

  .capability-number {
    top: 30px;
    right: auto;
    left: 0;
    padding: 0;
  }

  .capability-item h3 {
    font-size: 20px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .visionlis-card,
  .visionlis-content {
    min-height: 520px;
  }

  .visionlis-content {
    padding: 32px 26px 28px;
  }

  .corporate-story {
    padding: 0;
  }

  .corporate-capabilities > div {
    padding-block: 22px;
    grid-template-columns: 32px 1fr;
  }

  .corporate-capabilities h3 {
    font-size: 17px;
  }

  .corporate-capabilities p {
    font-size: 15px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 50px;
  }

  .process-timeline article {
    padding: 26px 0 30px 48px;
  }

  .process-timeline article::before {
    top: 34px;
  }

  .process-timeline article > span {
    top: 26px;
    right: auto;
    left: 0;
    padding: 0;
  }

  .process-timeline p {
    font-size: 15px;
  }

  .site-footer {
    padding-block: 34px;
  }

  .footer-grid p,
  .check-list,
  .footer-grid address {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .outcome-solutions {
    padding: 84px 0 90px;
  }

  .outcome-solutions-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .outcome-solutions-intro > p:last-child {
    max-width: 680px;
    margin: 0;
  }

  .outcome-solutions-list {
    margin-top: 54px;
  }

  .outcome-solution {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 48px;
  }

  .outcome-solution-copy h3 {
    font-size: 29px;
  }
}

@media (max-width: 640px) {
  .outcome-solutions {
    padding: 70px 0 74px;
  }

  .outcome-solutions-intro h2 {
    font-size: 29px;
  }

  .outcome-solutions-intro > p:last-child {
    font-size: 16px;
  }

  .outcome-solutions-list {
    margin-top: 44px;
  }

  .outcome-solution {
    padding: 30px 0 34px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .outcome-solution-meta {
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  .outcome-solution-meta p {
    font-size: 15px;
  }

  .outcome-solution-copy h3 {
    font-size: 25px;
    line-height: 1.45;
  }

  .outcome-solution-copy > p {
    font-size: 16px;
  }

  .outcome-solution-copy a {
    font-size: 15px;
  }
}

/* Approved visual refinement — July 2026 */

.site-header {
  height: 76px;
  background: #031426;
  backdrop-filter: none;
}

.main-nav {
  gap: clamp(20px, 1.65vw, 34px);
  font-size: 16px;
  font-weight: 500;
}

.outcome-solutions {
  position: relative;
  padding: 78px 0 80px;
  overflow: hidden;
}

.outcome-solutions::after {
  display: none;
}

.outcome-solutions-intro {
  column-gap: 60px;
}

.outcome-solutions-intro > p:last-child,
.section-intro > p:last-child,
.corporate-lead,
.corporate-capabilities p {
  color: #475569;
}

.outcome-solutions-list {
  margin-top: 48px;
  border-color: #afc0cf;
}

.outcome-solution {
  padding: 32px 0 34px;
  border-color: #afc0cf;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 60px;
}

.outcome-solution-meta {
  grid-template-columns: 48px 1fr;
  gap: 14px;
}

.outcome-solution-meta span {
  color: var(--blue-600);
  font-size: 28px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  line-height: 1;
}

.outcome-solution-meta p {
  padding-top: 2px;
  color: #3f5164;
  font-size: 16px;
  line-height: 1.5;
}

.outcome-solution-copy h3 {
  font-size: 31px;
  line-height: 1.38;
}

.outcome-solution-copy > p {
  color: #475569;
  font-size: 17px;
  line-height: 1.72;
}

.expertise-section {
  position: relative;
  padding: 56px 0 60px;
  overflow: hidden;
}

.expertise-section::after {
  display: none;
}

.capability-journey {
  margin-top: 34px;
  gap: 32px;
}

.capability-journey::before {
  top: 26px;
  background: #8fa8bc;
}

.capability-item {
  padding-top: 58px;
}

.capability-item::before {
  top: 19px;
  width: 13px;
  height: 13px;
  border-width: 3px;
  box-shadow: 0 0 0 1px var(--blue-600), 0 0 0 6px rgba(21, 101, 216, 0.07);
}

.capability-number {
  top: 3px;
  color: #426582;
  font-size: 16px;
  font-weight: 700;
}

.capability-item > p:last-child {
  color: #475569;
  font-size: 17px;
  line-height: 1.72;
}

.solutions-section {
  padding: 80px 0 82px;
}

.solutions-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 56px;
}

.visionlis-card,
.visionlis-content {
  min-height: 560px;
}

.visionlis-card {
  box-shadow: 0 14px 38px rgba(6, 27, 54, 0.1);
}

.visionlis-card > img {
  object-position: 72% center;
}

.visionlis-shade {
  background: rgba(3, 20, 38, 0.56);
}

.visionlis-content {
  padding: 34px 32px 30px;
}

.visionlis-content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.7;
}

.corporate-story {
  padding: 0;
}

.corporate-lead {
  margin: 18px 0 26px;
  font-size: 17px;
  line-height: 1.65;
}

.corporate-capabilities {
  border-color: #afc0cf;
}

.corporate-capabilities > div {
  padding: 17px 0;
  border-color: #afc0cf;
}

.corporate-capabilities span {
  color: var(--blue-600);
  font-size: 16px;
  font-weight: 700;
}

.corporate-capabilities p {
  font-size: 16px;
  line-height: 1.65;
}

.process-section {
  padding: 64px 0 66px;
  background: #061b36;
}

.process-intro > p:last-child {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.65;
}

.process-timeline {
  margin-top: 46px;
}

.process-timeline::before {
  top: 25px;
  background: rgba(73, 200, 232, 0.46);
}

.process-timeline article {
  padding-top: 52px;
}

.process-timeline article::before {
  top: 18px;
  width: 15px;
  height: 15px;
  box-shadow: 0 0 0 1px var(--cyan-400), 0 0 0 6px rgba(73, 200, 232, 0.08);
}

.process-timeline article > span {
  top: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  font-weight: 600;
}

.process-timeline p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.65;
}

.site-footer {
  padding: 42px 0 38px;
  border-top: 1px solid rgba(73, 200, 232, 0.24);
  background: #041427;
}

.footer-grid p,
.check-list,
.footer-grid address {
  font-size: 16px;
  line-height: 1.72;
}

@media (max-width: 1024px) {
  .site-header {
    height: 68px;
  }

  .main-nav {
    top: 68px;
    height: calc(100dvh - 68px);
    font-size: 16px;
  }

  .outcome-solutions {
    padding: 72px 0 76px;
  }

  .outcome-solution {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 42px;
  }

  .outcome-solution-meta span {
    font-size: 24px;
  }

  .expertise-section,
  .solutions-section {
    padding-block: 66px;
  }

  .solutions-grid {
    grid-template-columns: minmax(0, 0.76fr) minmax(0, 1fr);
    gap: 40px;
  }

  .process-section {
    padding-block: 64px 68px;
  }
}

@media (max-width: 900px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .visionlis-card,
  .visionlis-content {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  .outcome-solutions,
  .expertise-section,
  .solutions-section,
  .process-section {
    padding-block: 60px;
  }

  .outcome-solutions::after,
  .expertise-section::after {
    display: none;
  }

  .outcome-solutions-list,
  .capability-journey,
  .process-timeline {
    margin-top: 40px;
  }

  .outcome-solution {
    padding: 28px 0 32px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .outcome-solution-meta {
    grid-template-columns: 42px 1fr;
  }

  .outcome-solution-meta span {
    font-size: 22px;
  }

  .outcome-solution-meta p {
    font-size: 16px;
  }

  .outcome-solution-copy h3 {
    font-size: 25px;
  }

  .section-intro > p:last-child,
  .corporate-lead,
  .corporate-capabilities p,
  .process-intro > p:last-child,
  .process-timeline p,
  .footer-grid p,
  .check-list,
  .footer-grid address {
    font-size: 16px;
    line-height: 1.7;
  }

  .capability-journey {
    margin-top: 32px;
    gap: 0;
  }

  .capability-item {
    padding: 18px 0 26px 44px;
    border-top: 0;
  }

  .capability-journey::before {
    display: block;
    top: 24px;
    right: auto;
    bottom: 24px;
    left: 7px;
    width: 1px;
    height: auto;
  }

  .capability-item::before {
    top: 26px;
    left: 0;
  }

  .capability-number {
    position: static;
    display: block;
    margin: 0 0 6px;
    padding: 0;
    background: transparent;
    font-size: 14px;
  }

  .capability-label {
    margin-bottom: 6px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .visionlis-card,
  .visionlis-content {
    min-height: 500px;
  }

  .visionlis-shade {
    background: rgba(3, 20, 38, 0.62);
  }

  .corporate-capabilities > div {
    padding-block: 20px;
  }

  .process-timeline article {
    padding-block: 24px 28px;
  }

  .site-footer {
    padding-block: 38px 34px;
  }
}

/* Cohesive responsive typography system — July 2026 */

:root {
  --font-primary: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
  --type-display: clamp(3.25rem, 5.333vw, 4rem);
  --type-section-large: clamp(2.25rem, 3.667vw, 2.75rem);
  --type-section-standard: clamp(2rem, 3vw, 2.25rem);
  --type-content-title: clamp(1.25rem, 1.833vw, 1.375rem);
  --type-body-large: 1.125rem;
  --type-body: 1rem;
  --type-navigation: clamp(0.9375rem, 1.05vw, 1rem);
  --type-eyebrow: 0.875rem;
  --type-footer: 1.03125rem;
  --type-number: clamp(1.5rem, 1.95vw, 1.875rem);
  --leading-display: 1.12;
  --leading-section-large: 1.2;
  --leading-section-standard: 1.25;
  --leading-content-title: 1.4;
  --leading-body: 1.72;
  --tracking-heading: -0.012em;
  --tracking-label: 0.055em;
  --text-body-on-light: #475569;
}

html,
body,
button,
input,
textarea,
select {
  font-family: var(--font-primary);
}

body {
  color: var(--text-body-on-light);
  font-size: var(--type-body);
  font-weight: 400;
  line-height: var(--leading-body);
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

.type-display,
.hero h1 {
  font-size: var(--type-display);
  font-weight: 700;
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-heading);
}

.type-heading-large,
.outcome-solutions-intro h2,
.section-intro h2,
.process-intro h2 {
  font-size: var(--type-section-large);
  font-weight: 700;
  line-height: var(--leading-section-large);
  letter-spacing: var(--tracking-heading);
}

.type-heading-standard,
.corporate-story h2,
.visionlis-content h2 {
  font-size: var(--type-section-standard);
  font-weight: 700;
  line-height: var(--leading-section-standard);
  letter-spacing: var(--tracking-heading);
}

.type-content-title,
.outcome-solution-copy h3,
.capability-item h3,
.visionlis-content h3,
.corporate-capabilities h3,
.process-timeline h3 {
  font-size: var(--type-content-title);
  font-weight: 600;
  line-height: var(--leading-content-title);
  letter-spacing: 0;
}

.type-body-large,
.hero-description,
.outcome-solutions-intro > p:last-child,
.section-intro > p:last-child,
.corporate-lead,
.process-intro > p:last-child {
  max-width: 68ch;
  font-size: var(--type-body-large);
  font-weight: 400;
  line-height: var(--leading-body);
  letter-spacing: 0;
}

.type-body,
.visionlis-content > p:not(.eyebrow),
.corporate-capabilities p,
.process-timeline p {
  max-width: 68ch;
  font-size: var(--type-body);
  font-weight: 400;
  line-height: var(--leading-body);
  letter-spacing: 0;
}

.outcome-solutions-intro > p:last-child,
.section-intro > p:last-child,
.outcome-solution-copy > p,
.capability-item > p:last-child,
.corporate-lead,
.corporate-capabilities p {
  color: var(--text-body-on-light);
}

.main-nav {
  font-size: var(--type-navigation);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
}

.eyebrow,
.section-kicker,
.capability-label,
.visionlis-content .eyebrow {
  font-size: var(--type-eyebrow);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: var(--tracking-label);
}

.outcome-solution-meta p {
  color: #3f5164;
  font-size: var(--type-body);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
}

.outcome-solution-meta span {
  font-size: var(--type-number);
  font-weight: 700;
  line-height: 1;
}

.capability-number,
.process-timeline article > span {
  font-size: 1.0625rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.015em;
}

.outcome-solution-copy a,
.hero-text-link,
.button {
  font-size: var(--type-body);
  font-weight: 600;
  line-height: 1.5;
}

.footer-grid h2 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.45;
}

.footer-grid p,
.check-list,
.footer-grid address,
.newsletter-form input,
.newsletter-form button {
  font-size: var(--type-footer);
  line-height: 1.72;
}

@media (max-width: 760px) {
  :root {
    --type-display: clamp(2.5rem, 11.4vw, 3.25rem);
    --type-section-large: clamp(2rem, 8.7vw, 2.5rem);
    --type-section-standard: clamp(1.75rem, 7.7vw, 2.125rem);
    --type-content-title: clamp(1.1875rem, 5.4vw, 1.375rem);
    --type-number: clamp(1.375rem, 6.2vw, 1.625rem);
  }

  .hero h1 {
    font-size: clamp(1.375rem, 6.85vw, 1.75rem);
    line-height: 1.18;
    letter-spacing: -0.02em;
  }

  .hero-title-line {
    white-space: nowrap;
  }

  .hero-eyebrow-desktop {
    display: none;
  }

  .hero .hero-eyebrow-mobile {
    display: block;
    font-size: 12px;
    letter-spacing: 0.04em;
  }

  .hero-buttons {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .hero-buttons .button-primary {
    background: transparent;
    border-color: rgba(42, 134, 255, 0.88);
    box-shadow: none;
  }

  .hero-buttons .button-outline {
    background: transparent;
    border-color: rgba(73, 200, 232, 0.62);
  }

  .hero-buttons .button-primary:hover,
  .hero-buttons .button-primary:focus-visible,
  .hero-buttons .button-primary:active {
    background: var(--blue-600);
    border-color: var(--blue-600);
  }

  .hero-buttons .button-outline:hover,
  .hero-buttons .button-outline:focus-visible,
  .hero-buttons .button-outline:active {
    background: rgba(21, 101, 216, 0.2);
    border-color: var(--cyan-400);
  }

  .type-body-large,
  .hero-description,
  .outcome-solutions-intro > p:last-child,
  .section-intro > p:last-child,
  .corporate-lead,
  .process-intro > p:last-child {
    font-size: var(--type-body);
  }

  .outcome-solutions-intro > p:last-child,
  .section-intro > p:last-child {
    font-size: 1.0625rem;
    line-height: var(--leading-body);
  }

}

/* Motion shared by typing and the content reveals below the Hero. */
:root {
  --motion-ease-executive: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-ease-gentle: cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes typing-caret-blink {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}

.hero-typing-caret {
  display: inline-block;
  height: 0.92em;
  margin-left: 0.09em;
  border-left: 0.055em solid currentColor;
  vertical-align: -0.08em;
  animation: typing-caret-blink 680ms steps(1, end) infinite;
}

.hero.hero-typing-active .hero-buttons {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  pointer-events: none;
  transition:
    opacity 420ms var(--motion-ease-gentle),
    transform 420ms var(--motion-ease-gentle);
}

.hero.hero-typing-active.hero-typing-complete .hero-buttons {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.reveal-enabled .scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 820ms var(--motion-ease-executive),
    transform 820ms var(--motion-ease-executive);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-enabled .scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 760px) {
  .reveal-enabled .scroll-reveal {
    transform: translate3d(0, 12px, 0);
    transition-duration: 720ms;
  }
}

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

  .hero-typing-caret,
  .hero.hero-typing-active .hero-buttons,
  .reveal-enabled .scroll-reveal {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}

/* Keep the approved Hero message to exactly two lines on tablet and desktop. */
@media (min-width: 761px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    width: min(100%, 860px);
  }

  .hero-title-line {
    white-space: nowrap;
  }
}

@media (min-width: 761px) and (max-width: 1024px) {
  .hero h1 {
    font-size: clamp(2.375rem, 5vw, 3.25rem);
  }
}

/* Consultation form preview */
.contact-section {
  padding: clamp(72px, 8vw, 120px) 0;
  background: #edf3f7;
  border-top: 1px solid rgba(14, 42, 75, 0.1);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(56px, 7vw, 112px);
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: 116px;
}

.contact-intro h2 {
  max-width: 18ch;
  margin: 12px 0 22px;
  color: var(--navy-900);
  font-size: var(--type-section);
  line-height: var(--leading-section);
  letter-spacing: var(--tracking-display);
}

.contact-intro > p:last-of-type {
  max-width: 40rem;
  margin: 0;
  color: var(--gray-600);
  font-size: var(--type-body);
  line-height: var(--leading-body);
}

.contact-direct {
  display: grid;
  gap: 14px;
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid rgba(14, 42, 75, 0.16);
}

.contact-direct > p {
  margin: 0 0 4px;
  color: var(--navy-800);
  font-weight: 600;
}

.contact-direct a {
  display: flex;
  width: fit-content;
  min-height: 52px;
  align-items: center;
  gap: 14px;
  color: var(--navy-900);
  font-weight: 600;
}

.contact-direct a:hover {
  color: var(--blue-600);
}

.contact-direct a:focus-visible {
  outline: 3px solid rgba(21, 101, 216, 0.28);
  outline-offset: 4px;
}

.contact-direct i {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: var(--blue-600);
  border: 1px solid rgba(21, 101, 216, 0.24);
  border-radius: 50%;
}

.contact-direct span,
.contact-direct small {
  display: block;
}

.contact-direct small {
  margin-bottom: 1px;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 500;
}

.consultation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: clamp(28px, 4vw, 52px);
  background: var(--white);
  border: 1px solid rgba(14, 42, 75, 0.11);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(3, 20, 38, 0.08);
}

.form-field {
  display: grid;
  gap: 9px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 600;
}

.form-field label span {
  color: #b42318;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 15px;
  color: var(--charcoal);
  background: #fbfcfd;
  border: 1px solid #c6d2dc;
  border-radius: 4px;
  font: inherit;
  line-height: 1.5;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.consultation-form textarea {
  min-height: 140px;
  resize: vertical;
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
  color: #718096;
  opacity: 1;
}

.consultation-form input:hover,
.consultation-form select:hover,
.consultation-form textarea:hover {
  border-color: #91a5b7;
}

.consultation-form input:focus-visible,
.consultation-form select:focus-visible,
.consultation-form textarea:focus-visible {
  outline: none;
  background: var(--white);
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(21, 101, 216, 0.16);
}

.contact-form-action {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 4px;
}

.contact-form-action .button {
  min-width: 174px;
  flex: 0 0 auto;
}

.success-modal {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
  background: rgba(3, 20, 38, 0.78);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 180ms ease;
}

.success-modal[hidden] {
  display: none;
}

.success-modal.is-open {
  opacity: 1;
}

.success-modal-panel {
  width: min(100%, 480px);
  padding: clamp(32px, 5vw, 48px);
  color: var(--white);
  background: var(--navy-900);
  border: 1px solid rgba(73, 200, 232, 0.34);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(3, 20, 38, 0.34);
  text-align: center;
  transform: translateY(14px) scale(0.98);
  transition: transform 180ms ease;
}

.success-modal.is-open .success-modal-panel {
  transform: translateY(0) scale(1);
}

.success-modal-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  place-items: center;
  color: var(--navy-950);
  background: var(--cyan-400);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(73, 200, 232, 0.12);
  font-size: 30px;
}

.success-modal-kicker {
  margin: 0 0 10px;
  color: var(--cyan-400);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.success-modal h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.25;
}

.success-modal-panel > p:not(.success-modal-kicker) {
  max-width: 34ch;
  margin: 18px auto 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.72;
}

.success-modal-close {
  min-width: 144px;
}

@media (prefers-reduced-motion: reduce) {
  .success-modal,
  .success-modal-panel {
    transition: none;
  }
}

@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .contact-intro {
    position: static;
  }

  .contact-intro h2 {
    max-width: 20ch;
  }

  .contact-direct {
    grid-template-columns: repeat(2, minmax(0, max-content));
    column-gap: 40px;
  }

  .contact-direct > p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .contact-section {
    padding: 64px 0;
  }

  .contact-layout {
    gap: 34px;
  }

  .contact-intro h2 {
    max-width: none;
  }

  .contact-direct {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 32px;
    padding-top: 24px;
  }

  .contact-direct > p {
    grid-column: auto;
  }

  .consultation-form {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 18px;
  }

  .form-field-wide {
    grid-column: auto;
  }

  .contact-form-action {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .contact-form-action .button {
    width: 100%;
  }
}

/* Mobile responsive refinement — scoped to preserve the approved desktop layout. */
@media (max-width: 760px) {
  :root {
    --mobile-gutter: 20px;
  }

  .container,
  .header-inner {
    width: calc(100% - (var(--mobile-gutter) * 2));
  }

  .hero,
  .hero-inner {
    min-height: 710px;
  }

  .hero-inner {
    padding-block: 44px 38px;
  }

  .hero-description {
    margin: 20px 0 26px;
    line-height: 1.68;
  }

  .hero-buttons {
    gap: 10px;
  }

  .hero-buttons .button {
    min-height: 48px;
  }

  .reveal-enabled .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .outcome-solutions,
  .expertise-section,
  .solutions-section,
  .process-section {
    padding-block: 56px;
  }

  .outcome-solutions-list {
    margin-top: 32px;
  }

  .outcome-solution {
    gap: 16px;
    padding: 24px 0 28px;
  }

  .outcome-solution-meta {
    align-items: start;
    grid-template-columns: 38px 1fr;
  }

  .outcome-solution-meta span {
    font-size: 20px;
  }

  .outcome-solution-meta p {
    padding-top: 1px;
    line-height: 1.55;
  }

  .outcome-solution-copy h3 {
    font-size: clamp(21px, 6.5vw, 24px);
    line-height: 1.42;
  }

  .outcome-solution-copy > p {
    line-height: 1.72;
  }

  .outcome-solution-copy a {
    width: fit-content;
    padding-block: 7px;
  }

  .capability-journey {
    margin-top: 30px;
  }

  .capability-journey::before {
    left: 5px;
    background: rgba(143, 168, 188, 0.48);
  }

  .capability-item {
    padding: 17px 0 34px 38px;
  }

  .capability-item::before {
    top: 26px;
    width: 11px;
    height: 11px;
    border-width: 2px;
    box-shadow: 0 0 0 4px rgba(21, 101, 216, 0.07);
  }

  .capability-number {
    margin-bottom: 5px;
    color: #64748b;
  }

  .capability-label {
    margin-bottom: 5px;
    color: var(--blue-600);
    font-size: 15px;
    font-weight: 700;
  }

  .capability-item h3 {
    font-size: 20px;
    line-height: 1.45;
  }

  .capability-item > p:last-child {
    margin-top: 9px;
    font-size: 16px;
    line-height: 1.72;
  }

  .solutions-grid {
    gap: 52px;
  }

  .visionlis-card,
  .visionlis-content {
    min-height: 450px;
  }

  .visionlis-card {
    box-shadow: 0 14px 34px rgba(3, 20, 38, 0.1);
  }

  .visionlis-content {
    padding: 28px 22px 24px;
  }

  .visionlis-shade {
    background: rgba(3, 20, 38, 0.58);
  }

  .visionlis-content .button {
    width: fit-content;
    max-width: 100%;
    padding-inline: 14px;
    white-space: nowrap;
  }

  .corporate-story h2 {
    font-size: clamp(28px, 8vw, 32px);
  }

  .process-timeline {
    margin-top: 32px;
  }

  .process-timeline article {
    padding: 26px 0 34px 44px;
    border-top-color: rgba(73, 200, 232, 0.2);
  }

  .process-timeline article::before {
    top: 34px;
    width: 11px;
    height: 11px;
    box-shadow: 0 0 0 1px rgba(73, 200, 232, 0.62), 0 0 0 4px rgba(73, 200, 232, 0.05);
  }

  .process-timeline article > span {
    top: 25px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
  }

  .process-timeline h3 {
    font-size: 20px;
    line-height: 1.45;
  }

  .process-timeline p {
    margin-top: 9px;
    font-size: 16px;
    line-height: 1.72;
  }

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

  .contact-layout {
    gap: 30px;
  }

  .contact-intro > p:last-of-type {
    line-height: 1.72;
  }

  .contact-direct {
    margin-top: 28px;
    padding-top: 22px;
  }

  .consultation-form {
    gap: 22px;
    padding: 24px 20px;
  }

  .consultation-form input,
  .consultation-form select,
  .consultation-form textarea {
    font-size: 16px;
  }

  .contact-form-action .button {
    min-height: 48px;
  }

  .site-footer {
    padding-block: 34px;
  }

  .footer-grid section,
  .footer-grid section:first-child,
  .footer-grid section:nth-child(3) {
    padding-block: 24px;
  }

  .footer-grid section + section {
    border-top-color: rgba(255, 255, 255, 0.12);
  }

  .footer-grid h2 {
    margin-bottom: 12px;
  }

  .footer-grid p,
  .check-list,
  .footer-grid address {
    font-size: 16px;
    line-height: 1.72;
  }

  .footer-grid address a {
    min-height: 44px;
    align-items: center;
  }
}

@media (max-width: 376px) {
  :root {
    --mobile-gutter: 16px;
  }

  .hero,
  .hero-inner {
    min-height: 680px;
  }

  .hero-inner {
    padding-block: 42px 34px;
  }

  .hero-description {
    margin-block: 18px 22px;
  }

  .outcome-solutions,
  .expertise-section,
  .solutions-section,
  .process-section {
    padding-block: 52px;
  }

  .visionlis-content {
    padding-inline: 20px;
  }

  .consultation-form {
    padding-inline: 16px;
  }
}

/* Desktop footer balance — keep compact desktop widths in a readable 2 × 2 grid. */
@media (min-width: 1025px) and (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 24px;
  }

  .footer-grid section {
    padding-inline: 24px;
  }

  .footer-grid section:first-child,
  .footer-grid section:nth-child(3) {
    padding-left: 12px;
  }

  .footer-grid section:nth-child(3) {
    border-left: 0;
  }
}

@media (min-width: 1201px) {
  .footer-grid {
    grid-template-columns:
      minmax(0, 1.1fr)
      minmax(0, 1fr)
      minmax(230px, 1.1fr)
      minmax(300px, 1.35fr);
  }

  .footer-grid section {
    padding-inline: 28px;
  }

  .footer-grid section:first-child {
    padding-left: 12px;
  }

  .footer-grid section:last-child {
    padding-right: 0;
  }

  .footer-grid address {
    gap: 6px;
  }

  .footer-grid address a,
  .footer-grid address span {
    align-items: flex-start;
    gap: 10px;
  }

  .footer-grid address i {
    width: 18px;
    flex: 0 0 18px;
    margin-top: 0.28em;
    text-align: center;
  }

  .footer-grid address a[href^="tel:"],
  .footer-grid address a[href^="mailto:"] {
    white-space: nowrap;
  }
}

/* Mobile hero: use the image as a full-bleed background behind the content. */
@media (max-width: 760px) {
  .hero {
    min-height: clamp(590px, calc(100svh - 68px), 680px);
    background: var(--navy-950);
    overflow: hidden;
  }

  .hero-image {
    inset: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% center;
    animation: none;
    transform: none;
  }

  .hero-title-line {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero h1 {
    font-size: clamp(1.35rem, 6.4vw, 1.65rem);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
  }

  .hero-description {
    overflow-wrap: anywhere;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(3, 20, 38, 0.9) 0%,
        rgba(3, 20, 38, 0.76) 56%,
        rgba(3, 20, 38, 0.46) 100%
      ),
      linear-gradient(
        180deg,
        rgba(3, 20, 38, 0.42) 0%,
        rgba(3, 20, 38, 0.12) 58%,
        rgba(3, 20, 38, 0.34) 100%
      );
  }

  .hero-grid-pattern {
    inset: 0;
    height: auto;
  }

  .hero-inner {
    width: calc(100% - 18px);
    min-height: clamp(590px, calc(100svh - 68px), 680px);
    align-items: start;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .hero-buttons .button-primary {
    background: var(--blue-600);
    border-color: var(--blue-600);
    box-shadow: 0 10px 26px rgba(21, 101, 216, 0.3);
  }

  .hero-buttons .button-outline {
    background: rgba(3, 20, 38, 0.32);
    backdrop-filter: blur(2px);
  }

  .visionlis-content .eyebrow,
  .visionlis-content > p:not(.eyebrow) {
    display: none;
  }

  .newsletter-form .button-primary {
    color: rgba(255, 255, 255, 0.88);
    background: transparent;
    border-color: rgba(73, 200, 232, 0.58);
    box-shadow: none;
  }

  .newsletter-form .button-primary:hover,
  .newsletter-form .button-primary:focus-visible,
  .newsletter-form .button-primary:active {
    color: var(--white);
    background: rgba(73, 200, 232, 0.1);
    border-color: var(--cyan-400);
  }
}

@media (max-width: 376px) {
  .hero-inner {
    padding-top: 42px;
    padding-bottom: 38px;
  }
}

/* The Solutions intro enters as one readable group on every viewport. */
.reveal-enabled .outcome-solutions-intro.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-enabled .outcome-solutions-intro.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-enabled .outcome-solutions-intro.scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Menu links: Hover/Focus temporarily takes visual priority over Scroll Active. */
@media (max-width: 1024px) {
  .main-nav > a {
    padding-inline: 12px;
    transition:
      color 180ms ease,
      background-color 180ms ease;
  }

  .main-nav > a.active,
  .main-nav > a:focus-visible {
    color: var(--cyan-400);
    background-color: rgba(42, 134, 255, 0.14);
  }

  .main-nav:has(> a:focus-visible) > a.active:not(:focus-visible) {
    color: rgba(255, 255, 255, 0.9);
    background-color: transparent;
  }
}

@media (max-width: 1024px) and (hover: hover) and (pointer: fine) {
  .main-nav > a:hover {
    color: var(--cyan-400);
    background-color: rgba(42, 134, 255, 0.14);
  }

  .main-nav:has(> a:hover) > a.active:not(:hover) {
    color: rgba(255, 255, 255, 0.9);
    background-color: transparent;
  }
}
