/* Vision homepage — light/dark theme via CSS variables */

:root {
  --color-nav-link: #424242;
  --color-accent: #e4493d;
  --color-accent-hover: #cc3f35;
  --color-accent-soft: rgba(228, 73, 61, 0.12);
  --color-accent-rgb: 228, 73, 61;
  --font-sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
  --text-body: 1rem;
  --text-body-leading: 1.7;
  --radius-btn: 10px;
  --header-height: 86px;
  --header-icon-size: 2.75rem;
  --radius-header-icon: 12px;
  --transition-theme: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  --container-max: 1200px;
  --page-gutter: clamp(1.25rem, 4vw, 2.5rem);
  --page-gutter-mobile: clamp(1.25rem, 5.5vw, 2rem);
  --feature-section-height: clamp(34rem, 52vh, 40rem);
  --reveal-y: 1.75rem;
  --reveal-duration: 700ms;
  --reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme="light"],
:root:not([data-theme="dark"]) {
  --color-nav-link: #424242;
  --color-bg: #f7f8fa;
  --color-bg-elevated: #ffffff;
  --color-bg-muted: #eef0f4;
  --color-text: #1a1d24;
  --color-text-muted: #5c6370;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-header-bg: rgba(255, 255, 255, 0.76);
  --color-header-bg-scrolled: rgba(255, 255, 255, 0.94);
  --color-header-border: rgba(0, 0, 0, 0.08);
  --color-footer-bg: #eef0f4;
  --color-footer-bottom: #e4e7ed;
  --logo-light-mode-display: block;
  --logo-dark-mode-display: none;
  --theme-sun-display: block;
  --theme-moon-display: none;
}

[data-theme="dark"] {
  --color-nav-link: rgb(232, 232, 232);
  --color-accent-soft: rgba(228, 73, 61, 0.14);
  --color-bg: #0f1117;
  --color-bg-elevated: #181b24;
  --color-bg-muted: #1e222d;
  --color-text: #f0f2f6;
  --color-text-muted: #9aa3b2;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-header-bg: rgba(15, 17, 23, 0.8);
  --color-header-bg-scrolled: rgba(15, 17, 23, 0.94);
  --color-header-border: rgba(255, 255, 255, 0.1);
  --color-footer-bg: #141820;
  --color-footer-bottom: #0f1117;
  --color-partner-card-bg: #f4f5f7;
  --logo-light-mode-display: none;
  --logo-dark-mode-display: block;
  --theme-sun-display: none;
  --theme-moon-display: block;
}

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

html {
  scroll-behavior: smooth;
}

body.vision-site {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: var(--text-body-leading);
  color: var(--color-text);
  background: var(--color-bg);
  transition: var(--transition-theme);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  transition: color 0.2s ease;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.visually-hidden,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-sm);
  clip: auto;
  width: auto;
  height: auto;
}

/* Logo theme switching */
.site-logo__img--light-mode,
.site-footer__logo .site-logo__img--light-mode {
  display: var(--logo-light-mode-display);
}

.site-logo__img--dark-mode,
.site-footer__logo .site-logo__img--dark-mode {
  display: var(--logo-dark-mode-display);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: 0 4px 14px rgba(var(--color-accent-rgb), 0.35);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(var(--color-accent-rgb), 0.4);
}

[data-theme="dark"] .btn--primary {
  box-shadow: 0 4px 16px rgba(var(--color-accent-rgb), 0.45);
}

.btn--outline {
  background: var(--color-bg-elevated);
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn--outline:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #fff;
}

.btn--sm {
  padding: 0.65rem 1.25rem;
  font-size: 0.75rem;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 0.8125rem;
}

/* Header */
.site-header-zone {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.site-header {
  position: relative;
  background: var(--color-header-bg);
  border-bottom: 1px solid var(--color-header-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    var(--transition-theme),
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header-zone.is-scrolled .site-header {
  background: var(--color-header-bg-scrolled);
  border-bottom-color: var(--color-header-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

[data-theme="dark"] .site-header-zone.is-scrolled .site-header {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.32);
}

@media (min-width: 901px) {
  .site-header-zone {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--page-gutter);
    width: 100%;
    box-sizing: border-box;
    background: var(--color-header-bg);
    border-bottom: 1px solid var(--color-header-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    min-height: var(--header-height);
    transition:
      var(--transition-theme),
      background-color 0.25s ease,
      border-color 0.25s ease,
      box-shadow 0.25s ease;
  }

  .site-header-zone.is-scrolled {
    background: var(--color-header-bg-scrolled);
    border-bottom-color: var(--color-header-border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  }

  [data-theme="dark"] .site-header-zone.is-scrolled {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.32);
  }

  .site-header-zone.is-scrolled .site-header {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
  }

  .site-header {
    flex-shrink: 0;
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  .site-header__inner.container {
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
    min-height: var(--header-height);
  }

  .primary-nav {
    position: static;
    flex: 1;
    min-width: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
    overflow: visible;
    padding: 0;
    background: transparent;
    border: none;
    pointer-events: auto;
  }
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.75rem);
  min-height: var(--header-height);
}

.site-logo {
  flex-shrink: 0;
  text-decoration: none;
}

.site-logo__img,
.site-footer__logo .site-logo__img {
  height: 32px;
  width: auto;
  max-width: min(168px, 36vw);
  object-fit: contain;
  object-position: left center;
}

.site-header .site-logo__img {
  height: 30px;
  max-width: min(156px, 34vw);
}

.primary-nav {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.primary-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 0.125rem;
  min-width: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav__list a {
  position: relative;
  display: block;
  padding: 0.45rem 0.6rem 0.55rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-nav-link, #424242);
  transition: color 0.2s ease;
}

.primary-nav__list a::after {
  content: "";
  position: absolute;
  left: 0.6rem;
  right: 0.6rem;
  bottom: 0.3rem;
  height: 2px;
  border-radius: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}

.primary-nav__list a:hover,
.primary-nav__list a:focus-visible {
  color: var(--color-accent);
}

.primary-nav__list a:hover::after,
.primary-nav__list a:focus-visible::after {
  transform: scaleX(1);
}

.primary-nav__list a:active {
  color: var(--color-accent-hover);
}

.primary-nav__list a.is-active {
  color: var(--color-accent);
}

.primary-nav__list a.is-active::after {
  transform: scaleX(1);
}

.primary-nav__list a.primary-nav__link--mixed {
  text-transform: none;
  letter-spacing: 0.035em;
}

.primary-nav__actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.5rem;
}

.site-header .btn--header-cta {
  padding: 0.9375rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(var(--color-accent-rgb), 0.22);
}

.site-header .btn--header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(var(--color-accent-rgb), 0.28);
}

.search-trigger,
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: var(--header-icon-size);
  height: var(--header-icon-size);
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-header-icon);
  background: color-mix(in srgb, var(--color-bg-elevated) 88%, transparent);
  color: var(--color-text-muted);
  cursor: pointer;
  transition:
    var(--transition-theme),
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.search-trigger:hover,
.search-trigger:focus-visible,
.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: color-mix(in srgb, var(--color-accent) 35%, var(--color-border));
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

.theme-toggle__sun {
  display: var(--theme-sun-display);
}

.theme-toggle__moon {
  display: var(--theme-moon-display);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-search {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-bg-elevated);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  transition: var(--transition-theme);
}

.header-search[hidden] {
  display: none;
}

.header-search__panel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.header-search__form {
  display: flex;
  flex: 1;
  gap: 0.75rem;
}

.header-search__form input {
  flex: 1;
  padding: 0.65rem 1rem;
  font: inherit;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  color: var(--color-text);
  transition: var(--transition-theme);
}

.header-search__form input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.header-search__close {
  font-size: 1.75rem;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  border: none;
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
}

/* Scroll reveal (hidden only after JS enables animations) */
html.has-reveal .reveal,
html.has-reveal .reveal-scale {
  opacity: 0;
  transition:
    opacity var(--reveal-duration) var(--reveal-ease),
    transform var(--reveal-duration) var(--reveal-ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

html.has-reveal .reveal {
  transform: translate3d(0, var(--reveal-y), 0);
}

html.has-reveal .reveal-scale {
  transform: scale(0.98);
}

html.has-reveal .reveal.is-visible,
html.has-reveal .reveal-scale.is-visible {
  opacity: 1;
  transform: none;
}

.reveal.is-visible,
.reveal-scale.is-visible {
  will-change: auto;
}

/* Hero */
.hero {
  position: relative;
  height: clamp(500px, 78vh, 920px);
  margin-top: var(--header-height);
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0a0a0a;
  transition: background-color 0.25s ease;
}

.hero__video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero__video.is-ready {
  opacity: 1;
}

/* Mobile: show full horizontal frame (video is 1920×720 / 8∶3) — avoid side crop */
@media (max-width: 900px) {
  .hero {
    height: auto;
    aspect-ratio: 8 / 3;
    min-height: clamp(200px, 56vw, 360px);
    max-height: none;
  }

  .hero__video {
    object-fit: contain;
    object-position: center center;
  }
}

/* Content sections */
.content-section {
  padding: clamp(3.5rem, 6.5vw, 5.25rem) 0;
}

.content-section--alt {
  background: var(--color-bg-muted);
  transition: var(--transition-theme);
}

.content-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.content-section__body {
  max-width: 34rem;
}

.content-section__grid--reverse .content-section__media {
  order: -1;
}

.content-section__media {
  line-height: 0;
}

.content-card--media {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  transition: none;
}

.content-card--media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

.content-section__media--illustration img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (min-width: 901px) {
  .feature-band .content-section__media--illustration img {
    max-height: calc(var(--feature-section-height) - 6rem);
    width: auto;
    max-width: 100%;
    margin-inline: auto;
  }
}

/* Telecom section — image background left, copy right */
.photo-panel {
  padding: 0;
  background: var(--color-bg);
  transition: var(--transition-theme);
}

.photo-panel__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.photo-panel__bg {
  background-color: var(--color-bg-muted);
  background-image: var(--photo-panel-bg-light);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 100%;
  transition: background-color 0.25s ease;
}

[data-theme="dark"] .photo-panel__bg {
  background-color: var(--color-bg);
  background-image: var(--photo-panel-bg-dark);
  background-size: auto 100%;
  background-position: center bottom;
}

.photo-panel__content {
  display: flex;
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4.5rem) var(--page-gutter);
  background: var(--color-bg);
  transition: var(--transition-theme);
}

.photo-panel__content-inner {
  width: 100%;
  max-width: 34rem;
}

.photo-panel__content-inner .section-prose {
  margin-bottom: 2.25rem;
}

.section-heading {
  margin: 0 0 1.5rem;
  font-size: clamp(1.625rem, 2.75vw, 2.125rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-heading__line {
  display: block;
  color: var(--color-text);
  font-weight: 600;
}

.section-heading__accent {
  display: block;
  color: var(--color-accent);
  font-weight: 600;
}

.section-prose {
  margin-bottom: 2rem;
  font-size: var(--text-body);
  line-height: var(--text-body-leading);
  color: var(--color-text-muted);
}

.section-prose p {
  margin: 0 0 1.125rem;
}

.section-prose p:last-child {
  margin-bottom: 0;
}

/* Info cards */
.info-cards {
  padding: clamp(3rem, 5.5vw, 4.5rem) 0;
  background: var(--color-bg);
  transition: var(--transition-theme);
}

.info-cards__header {
  max-width: 50rem;
  margin: 0 auto clamp(1.5rem, 2.5vw, 2rem);
  text-align: center;
}

.info-cards__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.info-cards__subtitle {
  margin: 0 auto;
  max-width: 50rem;
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--color-text-muted);
  text-wrap: balance;
}

.info-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.info-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 2.375rem 2.625rem;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition:
    var(--transition-theme),
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.info-card__accent {
  display: block;
  flex-shrink: 0;
  width: 3.5rem;
  height: 3px;
  margin: 0 0 0.625rem;
  border-radius: 999px;
  background: var(--color-accent);
}

.info-card__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin: 0 0 0.75rem;
  color: var(--color-accent);
  line-height: 0;
}

.info-card__icon svg {
  display: block;
  width: 1.875rem;
  height: 1.875rem;
  flex-shrink: 0;
}

.info-card__metric {
  margin: 0 0 0.375rem;
  min-height: 2.6em;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-text);
  text-wrap: balance;
}

.info-card:hover {
  border-color: color-mix(in srgb, var(--color-accent) 22%, var(--color-border));
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.info-card__title {
  margin: 0 0 0.875rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.info-card__text {
  margin: 0;
  flex: 1;
  width: 100%;
  max-width: none;
  font-size: 0.96875rem;
  line-height: 1.6;
  letter-spacing: normal;
  word-spacing: normal;
  text-align: left;
  hyphens: none;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: wrap;
  color: var(--color-text-muted);
}

[data-theme="dark"] .info-card {
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
}

[data-theme="dark"] .info-card:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
  border-color: color-mix(in srgb, var(--color-accent) 30%, var(--color-border));
}

/* Partners */
.partners {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--color-bg-muted);
  border-block: 1px solid var(--color-border);
  transition: var(--transition-theme);
  overflow: hidden;
}

.partners__label {
  margin: 0 0 2rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
}

.partners__carousel {
  position: relative;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-x;
  user-select: none;
  -webkit-user-select: none;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 2%,
    #000 98%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 2%,
    #000 98%,
    transparent 100%
  );
}

.partners__carousel:not(.is-ready) .partners__marquee {
  visibility: hidden;
}

.partners__carousel.is-ready .partners__marquee {
  visibility: visible;
}

.partners__marquee {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 1.25rem;
  animation: partners-marquee 72s linear infinite;
  will-change: transform;
}

.partners__marquee.is-manual {
  animation: none;
}

.partners__carousel.is-dragging {
  cursor: grabbing;
}

.partners__carousel.is-dragging .partners__item {
  pointer-events: none;
}

.partners__carousel.is-paused:not(.is-dragging) .partners__marquee:not(.is-manual) {
  animation-play-state: paused;
}

.partners__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-bg-elevated);
  color: var(--color-text-muted);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    var(--transition-theme),
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.partners__nav:hover {
  color: var(--color-accent);
  border-color: color-mix(in srgb, var(--color-accent) 35%, var(--color-border));
  box-shadow: var(--shadow-md);
}

.partners__nav:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.partners__nav--prev {
  left: 0.25rem;
}

.partners__nav--next {
  right: 0.25rem;
}

@media (max-width: 640px) {
  .partners__nav {
    width: 2rem;
    height: 2rem;
  }

  .partners__nav--prev {
    left: 0;
  }

  .partners__nav--next {
    right: 0;
  }
}

@keyframes partners-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.partners__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10.75rem;
  padding: 0.625rem 0.875rem;
  min-height: 5rem;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition:
    var(--transition-theme),
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.partners__item:hover {
  border-color: color-mix(in srgb, var(--color-accent) 35%, var(--color-border));
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.partners__item img {
  display: block;
  max-height: 2.875rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.88;
  filter: grayscale(0.15);
  transition:
    opacity 0.25s ease,
    filter 0.25s ease;
}

.partners__item:hover img {
  opacity: 1;
  filter: none;
}

/*
 * Dark mode: light logo tiles so brand SVGs keep correct shapes.
 * Invert filters break logos with white fills or colored backgrounds (We, OK, Mail.ru).
 */
[data-theme="dark"] .partners__item {
  background: var(--color-partner-card-bg);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

[data-theme="dark"] .partners__item img {
  opacity: 0.9;
  filter: grayscale(0.12);
}

[data-theme="dark"] .partners__item:hover {
  border-color: color-mix(in srgb, var(--color-accent) 40%, rgba(255, 255, 255, 0.2));
}

[data-theme="dark"] .partners__item:hover img {
  opacity: 1;
  filter: none;
}

/* Optional per-logo dark asset: filename-dark.svg */
[data-theme="dark"] .partners__item:has(.partners__logo--dark) .partners__logo--light {
  display: none;
}

.partners__logo--dark {
  display: none;
}

[data-theme="dark"] .partners__item:has(.partners__logo--dark) .partners__logo--dark {
  display: block;
  opacity: 0.9;
  filter: none;
}

[data-theme="dark"] .partners__item:has(.partners__logo--dark):hover .partners__logo--dark {
  opacity: 1;
  filter: none;
}

/* Footer */
.site-footer {
  background: var(--color-footer-bg);
  transition: var(--transition-theme);
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.75rem 2rem;
  padding-block: 4rem 2.75rem;
  /* Use padding-block only — padding shorthand was zeroing .container side gutters */
}

.site-footer__heading {
  margin: 0 0 1.125rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
}

.site-footer__address {
  margin: 1.5rem 0 0;
  font-style: normal;
  font-size: var(--text-body);
  color: var(--color-text-muted);
  line-height: var(--text-body-leading);
}

.site-footer__address p {
  margin: 0 0 0.5rem;
}

.site-footer__address a:hover {
  color: var(--color-accent);
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links li {
  margin-bottom: 0.625rem;
}

.site-footer__links a {
  font-size: var(--text-body);
  line-height: var(--text-body-leading);
  color: var(--color-text-muted);
  text-decoration: none;
}

.site-footer__links a:hover {
  color: var(--color-accent);
}

.site-footer__social {
  display: flex;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  transition: var(--transition-theme), color 0.2s ease, border-color 0.2s ease;
}

.site-footer__social a:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.site-footer__it-park {
  margin-top: 1.75rem;
}

.site-footer__it-park-logo {
  display: block;
  max-width: 160px;
  height: auto;
}

.site-footer__it-park-logo--light {
  display: var(--logo-light-mode-display);
  opacity: 0.95;
}

.site-footer__it-park-logo--dark {
  display: var(--logo-dark-mode-display);
  opacity: 0.82;
}

.site-footer__bottom {
  width: 100%;
  padding: 1.5rem var(--page-gutter) 2rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
  background: var(--color-footer-bottom);
  transition: var(--transition-theme);
}

.site-footer__copyright {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

/* Equal-height feature bands (messaging, telecom, partner) */
@media (min-width: 901px) {
  .feature-band {
    height: var(--feature-section-height);
    min-height: var(--feature-section-height);
    max-height: var(--feature-section-height);
    box-sizing: border-box;
  }

  .content-section.feature-band {
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding-block: clamp(2.25rem, 4vw, 3.25rem);
  }

  .content-section.feature-band > .container {
    display: flex;
    align-items: center;
    flex: 1;
    align-self: stretch;
    min-height: 0;
  }

  .content-section.feature-band .content-section__grid {
    width: 100%;
    min-height: 0;
  }

  .photo-panel.feature-band {
    display: flex;
    padding: 0;
  }

  .photo-panel.feature-band .photo-panel__layout {
    flex: 1;
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .sms-banner.feature-band {
    display: flex;
    padding: 0;
    height: var(--sms-banner-section-height);
    min-height: var(--sms-banner-section-height);
    max-height: none;
  }

  .sms-banner.feature-band .sms-banner__layout {
    flex: 1;
    width: 100%;
    height: 100%;
    min-height: 0;
  }
}

/* Responsive */
@media (max-width: 1024px) and (min-width: 641px) {
  .info-cards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-card {
    padding: 1.875rem;
  }

  .info-card:last-child {
    grid-column: 1 / -1;
    width: min(100%, calc(50% - 0.5rem));
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .info-cards__grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  .info-card {
    padding: 1.875rem;
  }

  .info-card:last-child {
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 1024px) {
  .site-footer__main {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .site-header__inner {
    gap: 0.75rem;
  }

  .nav-toggle {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: var(--header-icon-size);
    height: var(--header-icon-size);
    margin-left: 0.125rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-header-icon);
    background: color-mix(in srgb, var(--color-bg-elevated) 88%, transparent);
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.25rem var(--page-gutter-mobile) 1.5rem;
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
    background: var(--color-bg-elevated);
    border-top: 1px solid var(--color-border);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .primary-nav.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.nav-is-open {
    overflow: hidden;
  }

  body.nav-is-open .site-header {
    position: relative;
    z-index: 1060;
  }

  .site-header__inner {
    justify-content: space-between;
    width: 100%;
  }

  .primary-nav__list {
    flex: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.25rem;
  }

  .primary-nav__list a {
    padding: 0.85rem 0.5rem 0.95rem;
    font-size: 0.9375rem;
    letter-spacing: 0.04em;
  }

  .primary-nav__list a.primary-nav__link--mixed {
    letter-spacing: 0.035em;
  }

  .primary-nav__list a::after {
    left: 0.5rem;
    right: auto;
    width: 2rem;
    bottom: 0.55rem;
  }

  .primary-nav__actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border);
  }

  .primary-nav__actions .search-trigger,
  .primary-nav__actions .theme-toggle {
    flex: 0 0 var(--header-icon-size);
  }

  .primary-nav__actions .btn--header-cta {
    flex: 1 1 auto;
    min-width: min(100%, 12rem);
    text-align: center;
  }

  .feature-band {
    min-height: 0;
  }

  .content-section.feature-band {
    display: block;
    padding-block: clamp(3rem, 6vw, 4rem);
  }

  .photo-panel.feature-band {
    display: block;
  }

  .sms-banner.feature-band {
    display: block;
    min-height: 0;
  }

  .sms-banner {
    --sms-banner-section-height: min(85vh, 640px);
    background-position: center top;
    background-size: cover;
  }

  .sms-banner__layout {
    justify-content: center;
    padding-block: clamp(3rem, 6vw, 4rem);
    min-height: var(--sms-banner-section-height);
  }

  .sms-banner__card {
    max-width: none;
  }

  .content-section__grid,
  .content-section__grid--reverse {
    grid-template-columns: 1fr;
  }

  .content-section__grid--reverse .content-section__media {
    order: 0;
  }

  .content-section__body {
    order: -1;
    max-width: none;
  }

  .content-section {
    padding: clamp(3rem, 6vw, 4rem) 0;
  }

  .photo-panel__layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .photo-panel__bg {
    min-height: min(50vh, 420px);
    order: 0;
  }

  .photo-panel__content {
    order: 1;
    padding: clamp(2rem, 5vw, 3rem) var(--page-gutter);
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 72px;
    --header-icon-size: 2.625rem;
    --reveal-y: 1rem;
  }

  .site-header .site-logo__img {
    height: 27px;
    max-width: min(132px, 40vw);
  }

  .site-footer__logo .site-logo__img {
    height: 28px;
    max-width: min(140px, 42vw);
  }

  .primary-nav__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-nav__actions .search-trigger,
  .primary-nav__actions .theme-toggle {
    width: 100%;
    max-width: none;
  }

  .primary-nav__actions .btn--header-cta {
    width: 100%;
    min-width: 0;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: clamp(2.5rem, 7vw, 3.5rem) clamp(2rem, 5vw, 2.75rem);
  }

  .site-footer__brand,
  .site-footer__col {
    min-width: 0;
    padding-block: 1.75rem;
    border-bottom: 1px solid var(--color-border);
  }

  .site-footer__brand {
    padding-block-start: 0;
  }

  .site-footer__col:last-child {
    border-bottom: none;
    padding-block-end: 0;
  }

  .site-footer__it-park {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
  }

  .container {
    padding-inline: var(--page-gutter-mobile);
  }

  .site-footer__bottom {
    padding-inline: max(var(--page-gutter-mobile), env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
  }

  .partners__item {
    width: 9.75rem;
    padding: 0.625rem 0.75rem;
  }

  .partners__item img {
    max-height: 2.5rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .info-card:hover {
    transform: none;
  }

  .partners__marquee {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    gap: 1rem;
  }

  .partners__carousel {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .partners__item--duplicate {
    display: none;
  }

  html.has-reveal .reveal,
  html.has-reveal .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .hero__video {
    opacity: 1;
    transition: none;
  }

  .info-card:hover,
  .partners__item:hover {
    transform: none;
  }
}

/* Inner pages — RCS and shared layouts */
.page-hero {
  margin-top: var(--header-height);
  padding: clamp(3rem, 6.5vw, 5rem) 0;
  background: var(--color-bg);
  transition: var(--transition-theme);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.page-hero__body {
  max-width: 34rem;
}

.page-hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.page-hero__body .section-prose {
  margin-bottom: 2rem;
}

.page-hero .content-section__media--illustration img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

@media (min-width: 901px) {
  .page-hero .content-section__media--illustration img {
    max-height: min(32rem, 58vh);
    width: auto;
    max-width: 100%;
    margin-inline: auto;
  }
}

.prose-card {
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--color-bg-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: var(--transition-theme);
}

/* SMS banner — full-width composite bg (RCS + Messaging pages) */
.sms-banner {
  --sms-banner-section-height: clamp(38rem, 62vh, 52rem);
  position: relative;
  padding: 0;
  background-color: #e8eaee;
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: var(--transition-theme);
}

.sms-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

[data-theme="dark"] .sms-banner {
  background-color: var(--color-bg);
  background-position: left top;
}

[data-theme="dark"] .sms-banner::before {
  opacity: 1;
  background: linear-gradient(
    90deg,
    rgba(15, 17, 23, 0.5) 0%,
    rgba(15, 17, 23, 0.78) 42%,
    rgba(15, 17, 23, 0.92) 62%,
    var(--color-bg) 88%
  );
}

.sms-banner__layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 100%;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 5vw, 4.5rem);
}

.sms-banner__card {
  width: 100%;
  max-width: min(34rem, 42vw);
  flex-shrink: 0;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--color-bg-elevated);
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: var(--transition-theme);
}

[data-theme="dark"] .sms-banner__card {
  background: var(--color-bg-muted);
  border: 1px solid var(--color-border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

[data-theme="dark"] .sms-banner__card .section-heading__line {
  color: var(--color-text);
}

[data-theme="dark"] .sms-banner__card .section-prose {
  color: var(--color-text-muted);
}

.sms-banner__card .section-prose {
  margin-bottom: 0;
}

/* Messaging SMS bg — left-anchored, taller band (messaging-background.jpg) */
.vision-page--messaging .sms-banner {
  --sms-banner-section-height: clamp(36rem, 58vh, 50rem);
  background-color: #ffffff;
  background-size: auto 100%;
  background-position: left 30%;
  background-repeat: no-repeat;
}

.vision-page--messaging .sms-banner__layout {
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(2rem, 5vw, 4.5rem);
}

.vision-page--messaging .sms-banner__card {
  padding-block: clamp(2.25rem, 4vw, 3.25rem);
  background: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: none;
}

@media (min-width: 901px) {
  .vision-page--messaging .sms-banner {
    background-size: auto 100%;
    background-position: left 28%;
  }

  .vision-page--messaging .sms-banner__layout {
    padding: clamp(4rem, 7.5vw, 6rem) clamp(2.5rem, 6vw, 5rem);
  }

  .vision-page--messaging .sms-banner__card {
    max-width: min(32rem, 40vw);
  }
}

[data-theme="dark"] .vision-page--messaging .sms-banner {
  background-color: var(--color-bg);
  background-position: left 28%;
}

[data-theme="dark"] .vision-page--messaging .sms-banner__card {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

/* eSIM — infrastructure photo banner (esim-background.jpg) */
.vision-page--esim .esim-infrastructure-banner {
  --sms-banner-section-height: clamp(36rem, 58vh, 50rem);
  background-color: #ffffff;
  background-size: auto 100%;
  background-position: left 22%;
  background-repeat: no-repeat;
}

.vision-page--esim .esim-infrastructure-banner .sms-banner__layout {
  padding: clamp(4rem, 7.5vw, 6rem) clamp(2.5rem, 6vw, 5rem);
}

.vision-page--esim .esim-infrastructure-banner .sms-banner__card {
  max-width: min(34rem, 42vw);
  padding-block: clamp(2.25rem, 4vw, 3.25rem);
  background: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: none;
}

.esim-benefits__list {
  margin: 0;
  padding-left: 1.25rem;
  font-size: var(--text-body);
  line-height: var(--text-body-leading);
  color: var(--color-text-muted);
}

.esim-benefits__list li {
  margin-bottom: 0.5rem;
}

.esim-benefits__list li:last-child {
  margin-bottom: 0;
}

[data-theme="dark"] .vision-page--esim .esim-infrastructure-banner {
  background-color: var(--color-bg);
}

[data-theme="dark"] .vision-page--esim .esim-infrastructure-banner .sms-banner__card {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

@media (max-width: 900px) {
  .vision-page--esim .esim-infrastructure-banner {
    --sms-banner-section-height: min(82vh, 600px);
    background-size: cover;
    background-position: 18% 30%;
  }

  .vision-page--esim .esim-infrastructure-banner .sms-banner__layout {
    padding-block: clamp(3.25rem, 8vw, 5rem);
  }
}

@media (max-width: 900px) {
  .vision-page--messaging .sms-banner {
    --sms-banner-section-height: min(82vh, 600px);
    background-size: cover;
    background-position: 22% 22%;
  }

  .vision-page--messaging .sms-banner__layout {
    padding-block: clamp(3.25rem, 8vw, 5rem);
  }
}

.feature-trio {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--color-bg-elevated);
  border-block: 1px solid var(--color-border);
  transition: var(--transition-theme);
}

.feature-trio__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.feature-trio__title {
  margin: 0 0 1rem;
  font-size: clamp(1.375rem, 2.25vw, 1.75rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.feature-trio__title-accent {
  display: block;
  color: var(--color-accent);
}

.feature-trio__title-line {
  display: block;
  color: var(--color-text);
}

.feature-trio__text {
  margin: 0;
  font-size: var(--text-body);
  line-height: var(--text-body-leading);
  color: var(--color-text-muted);
}

/* Messaging — 528 spotlight + feature list */
.messaging-spotlight {
  padding: clamp(3.5rem, 6.5vw, 5.25rem) 0;
  background: var(--color-bg);
  transition: var(--transition-theme);
}

.messaging-spotlight__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.messaging-spotlight__media {
  line-height: 0;
  text-align: center;
}

.messaging-spotlight__media img {
  display: block;
  width: 100%;
  max-width: min(22rem, 100%);
  height: auto;
  margin-inline: auto;
  object-fit: contain;
}

.messaging-spotlight__features {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 3vw, 2.5rem);
}

.messaging-feature__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.messaging-feature__title-accent {
  display: block;
  color: var(--color-accent);
}

.messaging-feature__title-line {
  display: block;
  color: var(--color-text);
}

.messaging-feature__text {
  margin: 0;
  font-size: var(--text-body);
  line-height: var(--text-body-leading);
  color: var(--color-text-muted);
}

/* Careers — full-width sections, photo as background */
.careers-banner {
  --careers-banner-height: clamp(22rem, 40vw, 34rem);
  position: relative;
  width: 100%;
  padding: 0;
  background-color: #ffffff;
  background-size: auto 100%;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: var(--transition-theme);
}

.careers-banner--sms {
  margin-top: var(--header-height);
  background-position: left center;
}

.careers-banner--bdm {
  background-position: right center;
}

.careers-banner__layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: var(--careers-banner-height);
  padding: clamp(2.5rem, 5vw, 4rem) var(--page-gutter);
}

.careers-banner--card-left .careers-banner__layout {
  justify-content: flex-start;
}

.careers-banner__card {
  width: 100%;
  max-width: min(40rem, 46vw);
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.75rem, 3.5vw, 2.5rem);
  background: var(--color-bg-elevated);
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-theme);
}

.careers-banner__heading {
  margin: 0 0 0.875rem;
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-accent);
}

.careers-banner__label {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text);
}

.careers-banner__label + .careers-banner__list + .careers-banner__label {
  margin-top: 0.875rem;
}

.careers-banner__list {
  margin: 0 0 0.875rem;
  padding-left: 1.125rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.careers-banner__list li + li {
  margin-top: 0.35rem;
}

.careers-banner__footnote {
  margin: 0;
  padding-top: 0.875rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

[data-theme="dark"] .careers-banner {
  background-color: var(--color-bg);
}

[data-theme="dark"] .careers-banner__card {
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 901px) {
  .careers-banner {
    --careers-banner-height: clamp(24rem, 42vw, 36rem);
  }

  .careers-banner--sms {
    background-size: auto 100%;
    background-position: left 18%;
  }

  .careers-banner--bdm {
    background-size: auto 100%;
    background-position: right 18%;
  }
}

@media (max-width: 900px) {
  .careers-banner {
    --careers-banner-height: auto;
    background-size: cover;
  }

  .careers-banner--sms {
    background-position: 30% 20%;
  }

  .careers-banner--bdm {
    background-position: 70% 20%;
  }

  .careers-banner__layout {
    min-height: 0;
    padding-block: clamp(14rem, 42vh, 18rem) clamp(2rem, 5vw, 2.5rem);
    align-items: flex-end;
  }

  .careers-banner__card {
    max-width: none;
  }
}

/* Contacts */
.contacts-page {
  --contacts-world-overlay: 0.88;
  position: relative;
  width: 100%;
  margin-top: var(--header-height);
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(2rem, 4vw, 3rem);
  min-height: clamp(32rem, 62vh, 44rem);
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: min(100%, 82rem) auto;
  overflow: hidden;
  transition: var(--transition-theme);
}

.contacts-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(255, 255, 255, var(--contacts-world-overlay));
  pointer-events: none;
}

.contacts-page__inner {
  position: relative;
  z-index: 1;
}

.contacts-team {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.5rem, 1.25vw, 1rem);
  max-width: 46rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.contacts-team__item {
  margin: 0;
}

.contact-card {
  height: 100%;
  text-align: center;
  transition: var(--transition-theme);
}

.contact-card__photo {
  margin: 0 auto clamp(0.625rem, 1.25vw, 0.875rem);
  max-width: 9.25rem;
  line-height: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg-muted);
}

.contact-card__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center top;
}

.contact-card__name {
  margin: 0 0 0.35rem;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}

.contact-card__role {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.contact-card__role + .contact-card__role {
  margin-top: 0.15rem;
}

.contact-card__links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.contact-card__links a {
  color: var(--color-accent);
  text-decoration: none;
  word-break: break-word;
}

.contact-card__links a:hover {
  text-decoration: underline;
}

.contacts-inquiry {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--color-bg);
  transition: var(--transition-theme);
}

.contacts-inquiry__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.contacts-inquiry__visual img {
  width: 100%;
  height: auto;
  max-height: min(24rem, 50vh);
  object-fit: contain;
}

.contacts-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  max-width: 28rem;
}

.contacts-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contacts-form__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text);
}

.contacts-form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: var(--color-text);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: var(--transition-theme);
}

.contacts-form__input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}

.contacts-form__textarea {
  resize: vertical;
  min-height: 7rem;
}

.contacts-form__submit {
  align-self: flex-start;
  margin-top: 0.25rem;
}

[data-theme="dark"] .contacts-page {
  --contacts-world-overlay: 0.9;
  background-color: var(--color-bg);
}

[data-theme="dark"] .contacts-page::before {
  background: color-mix(in srgb, var(--color-bg) calc(var(--contacts-world-overlay) * 100%), transparent);
}

[data-theme="dark"] .contact-card__photo {
  background: var(--color-bg-muted);
}

@media (max-width: 1024px) {
  .contacts-team {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 32rem;
    gap: clamp(0.75rem, 2vw, 1.25rem);
  }
}

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

  .contacts-inquiry__visual {
    order: -1;
    text-align: center;
  }

  .contacts-form {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .contacts-team {
    grid-template-columns: 1fr;
    max-width: 14rem;
    margin-inline: auto;
  }
}

/* News page — wider content only; header/footer keep global .container width */
.news-page {
  --container-max: 1320px;
  background: var(--color-bg);
  transition: var(--transition-theme);
}

.news-page p {
  letter-spacing: normal;
  word-spacing: normal;
}

.news-hero {
  position: relative;
  margin-top: var(--header-height);
  padding: clamp(3rem, 6.5vw, 4.5rem) 0 clamp(2.75rem, 5vw, 3.75rem);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.news-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(118deg, rgba(var(--color-accent-rgb), 0.08) 0%, transparent 42%),
    radial-gradient(ellipse 70% 80% at 92% 8%, var(--color-accent-soft), transparent 55%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 28px,
      rgba(0, 0, 0, 0.018) 28px,
      rgba(0, 0, 0, 0.018) 29px
    ),
    linear-gradient(180deg, var(--color-bg-muted) 0%, var(--color-bg) 92%);
}

.news-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  padding-left: clamp(1rem, 2vw, 1.5rem);
  border-left: 4px solid var(--color-accent);
}

.news-hero__eyebrow {
  margin: 0 0 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.news-hero__title {
  margin: 0 0 1.125rem;
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.025em;
  color: var(--color-text);
}

.news-hero__description {
  margin: 0;
  max-width: 40rem;
  font-size: clamp(1.0625rem, 1.9vw, 1.1875rem);
  line-height: 1.65;
  letter-spacing: normal;
  word-spacing: normal;
  color: var(--color-text-muted);
}

.news-section__title {
  margin: 0;
  font-size: clamp(1.375rem, 2.4vw, 1.625rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.news-section__subtitle {
  margin: 0.625rem 0 0;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: normal;
  color: var(--color-text-muted);
}

.news-events {
  padding: clamp(2.25rem, 4.5vw, 3.25rem) 0;
  background: var(--color-bg);
}

.news-events__header {
  margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
}

.news-events__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.125rem, 2vw, 1.625rem);
}

.news-event-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.news-event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--color-accent) 38%, var(--color-border));
}

.news-event-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  line-height: 0;
  background: var(--color-bg-muted);
}

.news-event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.35s ease;
}

.news-event-card:hover .news-event-card__media img {
  transform: scale(1.02);
}

.news-event-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.5rem;
  padding: clamp(1.125rem, 2vw, 1.375rem);
}

.news-event-card__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.38;
}

.news-event-card__title a {
  color: var(--color-text);
  text-decoration: none;
}

.news-event-card__title a:hover {
  color: var(--color-accent);
}

.news-event-card__meta {
  margin: 0;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: normal;
  color: var(--color-text-muted);
}

.news-event-card__cta {
  align-self: flex-start;
  margin-top: 0.375rem;
}

.news-body {
  padding: clamp(2.5rem, 4.5vw, 4rem) 0 clamp(3.25rem, 6vw, 5.5rem);
}

.news-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 3.5vw, 3rem);
  align-items: center;
  margin-bottom: clamp(2.25rem, 4vw, 3.5rem);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.news-featured__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  line-height: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg-muted);
  box-shadow: var(--shadow-sm);
}

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

.news-featured__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.875rem;
  padding: clamp(0.25rem, 1vw, 0.75rem) 0;
}

.news-featured__title {
  margin: 0;
  font-size: clamp(1.375rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.news-featured__title a {
  color: var(--color-text);
  text-decoration: none;
}

.news-featured__title a:hover {
  color: var(--color-accent);
}

.news-featured__excerpt {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: normal;
  color: var(--color-text-muted);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.news-featured__content .btn--primary {
  margin-top: 0.25rem;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 26rem);
  gap: clamp(2.25rem, 4vw, 3.5rem);
  align-items: start;
}

.news-layout__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.news-filters__chip {
  padding: 0.5rem 1rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.news-filters__chip:hover {
  color: var(--color-text);
  border-color: color-mix(in srgb, var(--color-accent) 40%, var(--color-border));
}

.news-filters__chip.is-active {
  color: #ffffff;
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.375rem, 2.5vw, 2rem);
}

.news-grid__empty {
  margin: 1.5rem 0 0;
  font-size: 1rem;
  color: var(--color-text-muted);
}

.news-grid__empty.is-visible {
  position: static;
  width: auto;
  height: auto;
  margin: 1.5rem 0 0;
  overflow: visible;
  clip: auto;
}

.news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    opacity 0.2s ease;
}

.news-card.is-filtered-out {
  display: none;
}

.vision-page--news {
  --reveal-y: 1.125rem;
  --reveal-duration: 550ms;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--color-accent) 32%, var(--color-border));
}

.news-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  line-height: 0;
  background: var(--color-bg-muted);
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.35s ease;
}

.news-card:hover .news-card__media img {
  transform: scale(1.02);
}

.news-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.625rem;
  padding: clamp(1.125rem, 2vw, 1.5rem);
}

.news-card__date,
.news-top5__date {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.news-card__title {
  margin: 0;
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.news-card__title a {
  color: var(--color-text);
  text-decoration: none;
}

.news-card__title a:hover {
  color: var(--color-accent);
}

.news-card__excerpt {
  margin: 0;
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.65;
  letter-spacing: normal;
  word-spacing: normal;
  color: var(--color-text-muted);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.news-card__link::after {
  content: "→";
  font-size: 1em;
  line-height: 1;
  transition: transform 0.2s ease;
}

.news-card__link:hover {
  color: var(--color-accent-hover);
}

.news-card__link:hover::after {
  transform: translateX(3px);
}

.news-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  padding: clamp(1.375rem, 2.5vw, 1.75rem);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.news-sidebar__title {
  margin: 0 0 1.125rem;
  padding-bottom: 0.875rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text);
  border-bottom: 2px solid var(--color-border);
}

.news-top5 {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: news-top5;
}

.news-top5__item {
  display: grid;
  grid-template-columns: 2.5rem 5.25rem minmax(0, 1fr);
  gap: 0.875rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.news-top5__item:first-child {
  padding-top: 0;
}

.news-top5__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.news-top5__item--no-thumb {
  grid-template-columns: 2.5rem minmax(0, 1fr);
}

.news-top5__rank {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  padding-top: 0.125rem;
}

.news-top5__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-bg-muted);
  border: 1px solid var(--color-border);
  aspect-ratio: 4 / 3;
}

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

.news-top5__body {
  min-width: 0;
}

.news-top5__title {
  margin: 0.375rem 0 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: -0.01em;
}

.news-top5__title a {
  color: var(--color-text);
  text-decoration: none;
}

.news-top5__title a:hover {
  color: var(--color-accent);
}

/* Dark mode — news surfaces */
[data-theme="dark"] .news-hero__bg {
  background:
    linear-gradient(118deg, rgba(var(--color-accent-rgb), 0.12) 0%, transparent 45%),
    radial-gradient(ellipse 70% 80% at 92% 8%, var(--color-accent-soft), transparent 55%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 28px,
      rgba(255, 255, 255, 0.02) 28px,
      rgba(255, 255, 255, 0.02) 29px
    ),
    linear-gradient(180deg, var(--color-bg-muted) 0%, var(--color-bg) 92%);
}

[data-theme="dark"] .news-featured,
[data-theme="dark"] .news-card,
[data-theme="dark"] .news-event-card,
[data-theme="dark"] .news-sidebar {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

[data-theme="dark"] .news-featured:hover,
[data-theme="dark"] .news-card:hover,
[data-theme="dark"] .news-event-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.36);
}

[data-theme="dark"] .news-featured__media {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

/* Partners on news page: same strip as homepage (no extra filters) */
.vision-page--news .partners {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

/* News article (single post) */
.news-article__header {
  margin-top: var(--header-height);
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(1.5rem, 3vw, 2rem);
  background: linear-gradient(180deg, var(--color-bg-muted) 0%, var(--color-bg) 100%);
  border-bottom: 1px solid var(--color-border);
}

.news-article__header-inner {
  max-width: 48rem;
}

.news-article__breadcrumb {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.news-article__breadcrumb a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
}

.news-article__breadcrumb a:hover {
  text-decoration: underline;
}

.news-article__breadcrumb span[aria-hidden="true"] {
  margin: 0 0.5rem;
  opacity: 0.5;
}

.news-article__title {
  margin: 0.5rem 0 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.news-article__lead {
  margin: 1rem 0 0;
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  line-height: 1.65;
  letter-spacing: normal;
  word-spacing: normal;
  color: var(--color-text-muted);
}

.news-article__hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: clamp(1.5rem, 3vw, 2.5rem) auto;
  max-width: 56rem;
  line-height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--color-bg-muted);
}

.news-article__hero-media img {
  width: 100%;
  max-height: min(28rem, 70vh);
  height: auto;
  object-fit: contain;
  object-position: center;
}

.news-article__body {
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(3.5rem, 6vw, 5rem);
  max-width: 48rem;
}

.news-article__content {
  font-size: 1.0625rem;
  line-height: 1.75;
  letter-spacing: normal;
  word-spacing: normal;
  color: var(--color-text);
}

.news-article__content p {
  margin: 0 0 1.25rem;
  letter-spacing: normal;
  word-spacing: normal;
}

.news-article__content p:last-child {
  margin-bottom: 0;
}

.news-article__content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

.news-article__content figure {
  margin: 1.5rem 0;
}

.news-article__content figure img {
  margin: 0;
}

.news-article__content h2,
.news-article__content h3 {
  margin: 2rem 0 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}

.news-article__content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.news-article__content a:hover {
  color: var(--color-accent-hover);
}

.news-article__content ul,
.news-article__content ol {
  margin: 0 0 1.25rem;
  padding-left: 1.5rem;
}

.news-article__content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--color-accent);
  background: var(--color-accent-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.news-article__footer {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.news-article--missing {
  margin-top: var(--header-height);
  padding: clamp(4rem, 10vw, 8rem) 0;
  text-align: center;
}

.news-article--missing .news-article__title {
  margin-top: 0.5rem;
}

.news-article__empty {
  color: var(--color-text-muted);
}

[data-theme="dark"] .news-article__content img {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

@media (min-width: 1201px) {
  .news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1200px) {
  .news-events__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .news-layout {
    grid-template-columns: 1fr;
  }

  .news-sidebar {
    position: static;
    max-width: 36rem;
  }
}

@media (max-width: 700px) {
  .news-hero__inner {
    padding-left: 1rem;
    border-left-width: 3px;
  }

  .news-featured {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }

  .news-featured__media {
    order: -1;
  }

  .news-events__track {
    grid-template-columns: 1fr;
  }

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

  .news-layout__toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .news-top5__item {
    grid-template-columns: 2.25rem 4.75rem minmax(0, 1fr);
    gap: 0.75rem;
  }
}

/* About / Company Information page */
.about-page {
  --container-max: 1320px;
  background: var(--color-bg);
  transition: var(--transition-theme);
}

.about-page p {
  letter-spacing: normal;
  word-spacing: normal;
}

.about-hero {
  position: relative;
  margin-top: var(--header-height);
  min-height: clamp(22rem, 38vw, 32.5rem);
  display: flex;
  align-items: center;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  background: linear-gradient(105deg, var(--color-bg-elevated) 0%, var(--color-bg-muted) 48%, var(--color-bg) 100%);
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 78% 42%, var(--color-accent-soft), transparent 62%),
    linear-gradient(90deg, rgba(var(--color-accent-rgb), 0.06) 0%, transparent 28%);
}

.about-hero__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    linear-gradient(var(--color-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 85% 75% at 72% 50%, #000 15%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 72% 50%, #000 15%, transparent 72%);
}

.about-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(17.5rem, 22.5rem);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.about-hero__copy {
  position: relative;
  padding-left: clamp(1.125rem, 2vw, 1.625rem);
  text-align: left;
}

.about-hero__accent {
  position: absolute;
  left: 0;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--color-accent) 0%, color-mix(in srgb, var(--color-accent) 35%, transparent) 100%);
}

.about-hero__eyebrow,
.about-section__eyebrow {
  margin: 0 0 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.about-hero__title {
  margin: 0 0 1.125rem;
  font-size: clamp(1.875rem, 3.8vw, 2.75rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.025em;
  color: var(--color-text);
  max-width: 34rem;
}

.about-hero__description {
  margin: 0;
  max-width: 36rem;
  font-size: clamp(1.0625rem, 1.9vw, 1.125rem);
  line-height: 1.72;
  color: var(--color-text-muted);
}

.about-hero__panel {
  margin: 0;
}

.about-hero-card {
  position: relative;
  padding: clamp(1.25rem, 2.5vw, 1.625rem);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.about-hero-card__corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 4.5rem;
  height: 4.5rem;
  background: linear-gradient(225deg, var(--color-accent-soft) 0%, transparent 58%);
  pointer-events: none;
}

.about-hero-card__corner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 3rem;
  background: var(--color-accent);
  border-radius: 0 0 0 2px;
}

.about-hero-card__head {
  position: relative;
  margin-bottom: 1.125rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.about-hero-card__logo {
  display: block;
  width: auto;
  max-width: 8.5rem;
  max-height: 2rem;
  margin-bottom: 0.625rem;
}

.about-hero-card__logo--light {
  display: var(--logo-light-mode-display);
}

.about-hero-card__logo--dark {
  display: var(--logo-dark-mode-display);
}

.about-hero-card__tagline {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.about-hero-card__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  margin: 0;
}

.about-hero-card__stat {
  margin: 0;
  padding: 0.75rem 0.625rem;
  border-radius: var(--radius-sm);
  background: var(--color-bg-muted);
  border: 1px solid var(--color-border);
}

.about-hero-card__value {
  margin: 0;
  font-size: clamp(1.375rem, 2.5vw, 1.625rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-accent);
}

.about-hero-card__label {
  margin: 0.35rem 0 0;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.about-section__title {
  margin: 0;
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.about-intro {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.about-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.about-intro__summary {
  margin: 1rem 0 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.about-intro__body {
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--color-text);
}

.about-intro__body p {
  margin: 0 0 1.25rem;
}

.about-intro__body p:last-child {
  margin-bottom: 0;
}

.about-stats {
  padding: 0 0 clamp(2.5rem, 5vw, 4rem);
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-stat {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--color-accent);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.about-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-stat__value {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-accent);
}

.about-stat__label {
  margin: 0.5rem 0 0;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
}

.about-regions {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.about-regions__bg {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

[data-theme="dark"] .about-regions__bg {
  opacity: 0.04;
}

.about-regions__inner {
  position: relative;
  z-index: 1;
  max-width: 48rem;
}

.about-regions__text {
  margin: 1rem 0 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--color-text-muted);
}

.about-regions__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-regions__chip {
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.about-regions__chip:hover {
  border-color: color-mix(in srgb, var(--color-accent) 40%, var(--color-border));
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.about-timeline {
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  background: var(--color-bg-muted);
  border-block: 1px solid var(--color-border);
}

.about-timeline__header {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.about-timeline__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-timeline__item {
  padding: clamp(1.125rem, 2vw, 1.5rem);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.about-timeline__marker {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-accent);
}

.about-timeline__text {
  margin: 0.625rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.about-cta {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3.5rem, 6vw, 5.5rem);
}

.about-cta__inner {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(var(--color-accent-rgb), 0.14) 0%, transparent 55%),
    var(--color-bg-elevated);
  border: 1px solid color-mix(in srgb, var(--color-accent) 28%, var(--color-border));
  box-shadow: var(--shadow-md);
}

.about-section__eyebrow--light {
  color: var(--color-accent);
}

.about-cta__title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.about-cta__text {
  margin: 1rem 0 0;
  max-width: 42rem;
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--color-text-muted);
}

.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 1.75rem;
}

.about-cta .btn--ghost {
  background: var(--color-bg);
  color: var(--color-text);
  border-color: var(--color-border);
}

.about-cta .btn--ghost:hover {
  background: var(--color-bg-muted);
  color: var(--color-accent);
  border-color: var(--color-accent);
}

[data-theme="dark"] .about-hero {
  background: linear-gradient(105deg, var(--color-bg-elevated) 0%, var(--color-bg-muted) 55%, var(--color-bg) 100%);
}

[data-theme="dark"] .about-hero__bg {
  background:
    radial-gradient(ellipse 55% 70% at 78% 42%, var(--color-accent-soft), transparent 62%),
    linear-gradient(90deg, rgba(var(--color-accent-rgb), 0.1) 0%, transparent 30%);
}

[data-theme="dark"] .about-hero__mesh {
  opacity: 0.22;
}

[data-theme="dark"] .about-hero-card {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.38);
  border-color: color-mix(in srgb, var(--color-accent) 18%, var(--color-border));
}

[data-theme="dark"] .about-hero-card__stat {
  background: var(--color-bg);
}

[data-theme="dark"] .about-stat,
[data-theme="dark"] .about-timeline__item {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
}

[data-theme="dark"] .about-cta__inner {
  background:
    linear-gradient(135deg, rgba(var(--color-accent-rgb), 0.18) 0%, transparent 55%),
    var(--color-bg-elevated);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.32);
}

@media (max-width: 1100px) {
  .about-hero__grid {
    grid-template-columns: 1fr;
  }

  .about-hero__panel {
    max-width: 22.5rem;
  }

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

@media (max-width: 768px) {
  .about-intro__grid {
    grid-template-columns: 1fr;
  }

  .about-stats__grid,
  .about-timeline__list {
    grid-template-columns: 1fr;
  }

  .about-hero {
    min-height: auto;
    padding: clamp(2rem, 5vw, 2.75rem) 0;
  }

  .about-hero__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .about-hero__copy {
    padding-left: 1rem;
  }

  .about-hero__accent {
    width: 3px;
  }

  .about-hero__title,
  .about-hero__description {
    max-width: none;
  }

  .about-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-cta__actions .btn {
    width: 100%;
  }
}

/* Document download pages (NDA, Application Form) */
.vision-page--application-form .doc-dl-hero__inner {
  max-width: 100%;
}

.vision-page--application-form .doc-dl-hero__title {
  white-space: nowrap;
}

@media (max-width: 479px) {
  .vision-page--application-form .doc-dl-hero__title {
    white-space: normal;
    font-size: clamp(1.5rem, 5.5vw, 1.875rem);
  }
}

.doc-dl-page,
.nda-page {
  background: var(--color-bg);
  transition: var(--transition-theme);
}

.doc-dl-page p,
.nda-page p {
  letter-spacing: normal;
  word-spacing: normal;
}

.doc-dl-hero,
.nda-hero {
  position: relative;
  margin-top: var(--header-height);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(2rem, 4vw, 2.75rem);
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.doc-dl-hero__bg,
.nda-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, var(--color-accent-soft), transparent 65%),
    linear-gradient(180deg, var(--color-bg-muted) 0%, var(--color-bg) 100%);
}

.doc-dl-hero__inner,
.nda-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin-inline: auto;
}

.doc-dl-hero__eyebrow,
.nda-hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.doc-dl-hero__title,
.nda-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.doc-dl-hero__description,
.nda-hero__description {
  margin: 0;
  font-size: clamp(1rem, 1.9vw, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-muted);
}

.doc-dl-main,
.nda-main {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3.5rem, 6vw, 5rem);
}

.doc-dl-main__inner,
.nda-main__inner {
  max-width: 28rem;
  margin-inline: auto;
  text-align: center;
}

.doc-dl-card,
.nda-card {
  padding: clamp(1.75rem, 4vw, 2.25rem);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--color-accent);
}

.doc-dl-card__icon,
.nda-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
  background: var(--color-accent-soft);
  border-radius: var(--radius-md);
}

.doc-dl-card__type,
.nda-card__type {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.doc-dl-card__title,
.nda-card__title {
  margin: 0 0 0.875rem;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}

.doc-dl-card__text,
.nda-card__text {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.doc-dl-card__download,
.nda-card__download {
  width: 100%;
}

.doc-dl-note,
.nda-note {
  margin: 1.25rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

[data-theme="dark"] .doc-dl-hero__bg,
[data-theme="dark"] .nda-hero__bg {
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, var(--color-accent-soft), transparent 65%),
    linear-gradient(180deg, var(--color-bg-muted) 0%, var(--color-bg) 100%);
}

[data-theme="dark"] .doc-dl-card,
[data-theme="dark"] .nda-card {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.32);
}

.content-section--centered {
  text-align: left;
}

.content-section--centered .container {
  max-width: 42rem;
}

.content-section--centered .section-heading {
  margin-bottom: 1.25rem;
}

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

  .messaging-spotlight__media {
    order: -1;
  }

  .page-hero__grid {
    grid-template-columns: 1fr;
  }

  .page-hero__body {
    order: -1;
    max-width: none;
  }

  .feature-trio__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
