:root {
  --lime: #c7d530;
  --lime-dark: #7a8f16;
  --ink: #171a1c;
  --muted: #72777a;
  --line: #e2e5e6;
  --paper: #ffffff;
  --soft: #f6f7f7;
  --blue: #235f98;
  --header-height: 80px;
  --content-width: 1132px;
  font-family: "Microsoft JhengHei", "Noto Sans TC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button,
select {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  padding: 10px 18px;
  background: var(--ink);
  color: white;
}

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

:focus-visible {
  outline: 3px solid rgba(199, 213, 48, .75);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 5px 18px rgba(20, 31, 38, .06);
}

.header-inner {
  width: min(100% - 64px, 1200px);
  height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 202px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: auto;
  align-items: center;
  gap: 9px;
}

.brand > img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand > span {
  min-width: 0;
  display: grid;
  line-height: 1.12;
}

.brand > span b {
  color: #12376a;
  font-size: 15px;
  letter-spacing: .07em;
}

.brand > span small {
  margin-top: 4px;
  color: #58666b;
  font-size: 10px;
  letter-spacing: .16em;
}

.desktop-nav > ul {
  list-style: none;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
  height: var(--header-height);
  margin: 0;
  padding: 0;
}

.desktop-nav li {
  display: flex;
  align-items: center;
}

.desktop-nav a,
.nav-trigger {
  position: relative;
  border: 0;
  background: transparent;
  padding: 28px 0 25px;
  color: #181b1d;
  white-space: nowrap;
  font-size: 16px;
  letter-spacing: .01em;
}

.desktop-nav a::after,
.nav-trigger::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.nav-trigger:hover::after,
.nav-trigger:focus-visible::after,
.nav-trigger[aria-expanded="true"]::after {
  transform: scaleX(1);
}

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

.text-action {
  min-height: 42px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 8px 10px;
  color: var(--ink);
  font-size: 14px;
}

.icon-action {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  padding: 8px;
  color: var(--ink);
}

.icon-action:hover,
.icon-action[aria-expanded="true"] {
  background: #f2f4f4;
}

.icon-action img {
  width: 23px;
  height: 23px;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.language-toggle img {
  width: 22px;
  height: 22px;
}

.text-action:hover,
.text-action[aria-expanded="true"] {
  background: #f2f4f4;
}

.mobile-menu-toggle {
  display: none;
}

.language-wrap {
  position: relative;
}

.language-popover {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 192px;
  padding: 8px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(18, 30, 38, .12);
}

.language-popover span,
.language-popover a {
  display: block;
  padding: 9px 10px;
  font-size: 14px;
}

.language-popover span {
  color: var(--lime-dark);
  font-weight: 700;
}

.language-popover a:hover {
  background: var(--soft);
}

.mega-menu {
  position: absolute;
  top: var(--header-height);
  right: 0;
  left: 0;
  display: none;
  max-height: calc(100vh - var(--header-height));
  overflow: auto;
  background: rgba(255, 255, 255, .99);
  border-top: 1px solid #edf0f0;
  box-shadow: 0 22px 42px rgba(18, 31, 38, .14);
}

.mega-menu.is-open {
  display: block;
  animation: megaIn .18s ease both;
}

@keyframes megaIn {
  from { opacity: 0; transform: translateY(-7px); }
  to { opacity: 1; transform: translateY(0); }
}

.mega-inner {
  width: min(100% - 96px, var(--content-width));
  margin: 0 auto;
  padding: 34px 0 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 48px;
}

.mega-inner.mega-wide {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(100% - 80px, 1200px);
  gap: 24px;
}

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

.mega-heading {
  display: block;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--lime);
  font-size: 16px;
  font-weight: 700;
}

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

.mega-column li + li {
  margin-top: 6px;
}

.mega-column li a {
  display: block;
  padding: 4px 0;
  color: #51575a;
  font-size: 14px;
  line-height: 1.45;
}

.mega-column li a:hover {
  color: var(--lime-dark);
  transform: translateX(3px);
}

.mobile-drawer {
  display: none;
}

.home-hero {
  position: relative;
  height: calc(100vh - var(--header-height));
  min-height: 560px;
  max-height: 760px;
  overflow: hidden;
  background: #183e64;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 37, 59, .04), transparent 48%, rgba(12, 27, 40, .12));
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  position: absolute;
  z-index: 1;
  top: 17%;
  right: 24px;
  left: 24px;
  color: white;
  text-align: center;
  text-shadow: 0 2px 9px rgba(15, 39, 57, .35);
}

.hero-copy span {
  display: block;
  margin-bottom: 2px;
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 700;
  letter-spacing: .12em;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 45px);
  line-height: 1.25;
  letter-spacing: .01em;
}

.hero-dots {
  position: absolute;
  z-index: 2;
  bottom: 37px;
  left: 50%;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 54px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 0;
  background: rgba(255, 255, 255, .14);
  color: white;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity .2s ease, background .2s ease;
}

.home-hero:hover .hero-arrow,
.hero-arrow:focus-visible {
  opacity: 1;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, .28);
}

.hero-arrow img {
  width: 18px;
  height: 33px;
}

.hero-arrow-prev {
  left: 24px;
}

.hero-arrow-next {
  right: 24px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: 2px solid rgba(255, 255, 255, .95);
  border-radius: 50%;
  background: transparent;
  padding: 0;
}

.hero-dot.is-active {
  background: white;
}

.news-strip {
  position: relative;
  min-height: 235px;
  padding: 46px max(32px, calc((100vw - var(--content-width)) / 2)) 32px;
  background: #f7f8f8 url("assets/demo-images/news-orbit-texture.png") center/cover no-repeat;
}

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

.news-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 115px;
  padding: 0 24px;
  border-left: 1px solid #dfe3e3;
}

.news-card:first-child {
  border-left: 0;
  padding-left: 0;
}

.news-card:hover strong {
  color: var(--lime-dark);
}

.news-tag {
  justify-self: start;
  padding: 1px 14px;
  color: white;
  background: #62b584;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
}

.news-tag.event {
  background: #8a6be5;
}

.news-tag.news {
  background: #e68b48;
}

.news-card strong {
  margin: 10px 0 8px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  transition: color .2s ease;
}

.news-card time {
  color: #8b9093;
  font-size: 13px;
}

.section-more,
.arrow-link {
  color: var(--lime-dark);
  font-weight: 700;
}

.section-more {
  display: block;
  width: fit-content;
  margin: 22px 0 0 auto;
  font-size: 14px;
}

.section-more::after,
.arrow-link::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 11px;
  margin-left: 7px;
  background: url("assets/chevron.svg") center / contain no-repeat;
}

.global-section {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: white;
}

.world-map {
  position: absolute;
  top: 48px;
  left: 50%;
  width: min(1280px, 110vw);
  max-width: none;
  transform: translateX(-50%);
  opacity: .72;
}

.global-copy {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 620px);
  margin: 0 auto;
  padding-top: 410px;
  text-align: center;
}

.section-kicker,
.eyebrow,
.content-heading > span {
  color: var(--lime-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}

.global-copy h2 {
  margin: 12px 0 18px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.35;
}

.global-copy p {
  color: #555c60;
}

.business-section,
.revenue-section {
  padding: 76px max(32px, calc((100vw - var(--content-width)) / 2)) 72px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 44px;
}

.section-title > span {
  width: 7px;
  height: 30px;
  background: var(--lime);
}

.section-title h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 600;
}

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

.business-card {
  overflow: hidden;
  min-height: 344px;
  background: white;
  box-shadow: 0 3px 15px rgba(20, 34, 40, .12);
}

.business-card img {
  width: 100%;
  aspect-ratio: 1 / .72;
  object-fit: cover;
  transition: transform .45s ease;
}

.business-card:hover img {
  transform: scale(1.035);
}

.business-card div {
  padding: 23px 24px 26px;
}

.business-card h3 {
  margin: 0 0 5px;
  font-size: 23px;
  font-weight: 500;
}

.business-card a {
  color: var(--lime-dark);
  font-size: 14px;
  font-weight: 700;
}

.revenue-section {
  background: #f6f7f7;
}

.revenue-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: center;
  gap: 78px;
}

.revenue-bars {
  height: 280px;
  display: flex;
  align-items: end;
  justify-content: space-around;
  gap: 20px;
  padding: 20px 30px 0;
  border-bottom: 1px solid #bbc3c5;
  background: repeating-linear-gradient(to top, transparent 0 55px, rgba(170, 178, 181, .18) 56px 57px);
}

.revenue-bars span {
  position: relative;
  width: 44px;
  height: var(--h);
  background: linear-gradient(180deg, var(--lime), #95a42b);
}

.revenue-bars b {
  position: absolute;
  bottom: -31px;
  left: 50%;
  color: #656b6e;
  font-size: 12px;
  font-weight: 500;
  transform: translateX(-50%);
}

.revenue-copy p {
  margin: 0 0 24px;
  color: #3f4649;
  line-height: 1.9;
}

.partner-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 60px max(24px, calc((100vw - 1160px) / 2));
  background: white;
}

.partner-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(245px, 1fr);
  gap: 28px;
  overflow: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.partner-track::-webkit-scrollbar {
  display: none;
}

.partner-track a {
  position: relative;
  display: flex;
  align-items: center;
  height: 110px;
  overflow: hidden;
  border-radius: 8px;
  background: #f1f3f3;
}

.partner-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.64) saturate(.82);
}

.partner-track a > span {
  position: absolute;
  right: 18px;
  bottom: 15px;
  left: 18px;
  color: white;
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .45);
}

.partner-track a > span small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, .72);
  font-size: 9px;
  letter-spacing: .17em;
}

.partner-arrow {
  width: 46px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid #d8dddd;
  background: white;
  padding: 10px;
  color: #555b5e;
}

.partner-arrow img {
  width: 13px;
  height: 27px;
}

.partner-arrow:hover {
  border-color: var(--lime-dark);
  color: var(--lime-dark);
}

.site-footer {
  background: #fafafa;
}

.footer-main {
  width: min(100% - 64px, var(--content-width));
  margin: 0 auto;
  padding: 48px 0 38px;
}

.footer-desktop {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px;
}

.footer-column h3 {
  margin: 0 0 16px;
  font-size: 16px;
}

.footer-column ul,
.footer-accordion ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column li + li {
  margin-top: 7px;
}

.footer-column a {
  color: #303638;
  font-size: 14px;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: var(--lime-dark);
}

.footer-mobile {
  display: none;
}

.footer-bottom {
  width: min(100% - 64px, var(--content-width));
  min-height: 112px;
  margin: 0 auto;
  border-top: 1px solid #e2e5e6;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 28px;
}

.footer-brand.brand {
  width: 190px;
}

.footer-bottom nav {
  display: flex;
  gap: 28px;
}

.footer-bottom nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.footer-bottom nav img {
  width: 7px;
  height: 11px;
}

.footer-bottom > span {
  color: #a0a5a7;
  font-size: 13px;
}

.footer-accent {
  height: 7px;
  background: var(--lime);
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  color: white;
  background: linear-gradient(112deg, rgba(12, 44, 70, .94), rgba(35, 95, 152, .67)), url("assets/demo-images/inner-page-hero.png") center 58% / cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -170px;
  width: 550px;
  height: 550px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 64px, var(--content-width));
  margin: 0 auto;
  padding: 52px 0 66px;
}

.breadcrumbs {
  display: flex;
  gap: 9px;
  align-items: center;
  color: rgba(255, 255, 255, .8);
  font-size: 13px;
}

.breadcrumbs a:hover {
  color: white;
  text-decoration: underline;
}

.page-hero-inner > p {
  margin: 74px 0 5px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 600;
  line-height: 1.2;
}

.hero-rule {
  width: 72px;
  height: 4px;
  margin: 24px 0 18px;
  background: var(--lime);
}

.page-hero strong {
  display: block;
  max-width: 680px;
  color: rgba(255, 255, 255, .87);
  font-size: 17px;
  font-weight: 400;
}

.content-section {
  width: min(100% - 64px, var(--content-width));
  margin: 0 auto;
  padding: 76px 0;
}

.content-section.muted {
  width: 100%;
  max-width: none;
  padding-right: max(32px, calc((100vw - var(--content-width)) / 2));
  padding-left: max(32px, calc((100vw - var(--content-width)) / 2));
  background: var(--soft);
}

.content-heading {
  max-width: 680px;
  margin-bottom: 38px;
}

.content-heading h2 {
  margin: 8px 0 13px;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.25;
}

.content-heading p {
  margin: 0;
  color: #5a6265;
  font-size: 17px;
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(320px, 1.1fr);
  gap: 90px;
  align-items: start;
}

.split-intro h2 {
  margin: 9px 0 0;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.3;
}

.split-intro > p {
  margin: 0;
  color: #42494c;
  font-size: 17px;
  line-height: 1.95;
}

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

.catalog-card {
  display: flex;
  min-height: 238px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  background: white;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.catalog-card:hover {
  border-color: var(--lime);
  box-shadow: 0 14px 34px rgba(18, 32, 40, .1);
  transform: translateY(-4px);
}

.catalog-card > b {
  color: var(--lime-dark);
  font-size: 12px;
  letter-spacing: .1em;
}

.catalog-card h3 {
  margin: 22px 0 10px;
  font-size: 22px;
  line-height: 1.35;
}

.catalog-card p {
  margin: 0 0 20px;
  color: #687074;
  font-size: 14px;
}

.catalog-card > span {
  margin-top: auto;
  color: var(--lime-dark);
  font-size: 13px;
  font-weight: 700;
}

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

.info-card {
  min-height: 230px;
  padding: 29px 28px;
  background: white;
  box-shadow: 0 8px 26px rgba(18, 31, 38, .06);
}

.card-line {
  display: block;
  width: 38px;
  height: 4px;
  margin-bottom: 31px;
  background: var(--lime);
}

.info-card h3 {
  margin: 0 0 11px;
  font-size: 22px;
}

.info-card p {
  margin: 0;
  color: #656d70;
}

.info-card a {
  display: inline-block;
  margin-top: 20px;
  color: var(--lime-dark);
  font-weight: 700;
}

.detail-panel {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 50px;
  padding: 42px;
  color: white;
  background: #1f313a;
}

.detail-panel > div span {
  color: var(--lime);
  font-weight: 800;
}

.detail-panel h2 {
  margin: 10px 0 0;
  font-size: 32px;
}

.detail-panel ol {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0;
  padding: 0;
}

.detail-panel li {
  border-left: 1px solid rgba(255, 255, 255, .22);
  padding-left: 22px;
}

.detail-panel li b {
  font-size: 18px;
}

.detail-panel li p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.primary-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  margin-top: 28px;
  border: 0;
  background: var(--lime);
  padding: 10px 24px;
  color: #1d272b;
  font-weight: 800;
}

.primary-button:hover {
  background: #b2c121;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #1f313a;
  color: white;
  padding: 0 max(32px, calc((100vw - var(--content-width)) / 2));
}

.stats-band div {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, .15);
  padding: 30px;
}

.stats-band div:last-child {
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.stats-band b {
  color: var(--lime);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.1;
}

.stats-band span {
  margin-top: 8px;
  color: rgba(255, 255, 255, .7);
}

.location-map {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: center;
  gap: 50px;
  padding: 40px;
  background: #f8f9f9;
}

.location-map img {
  width: 100%;
}

.location-map h2 {
  margin: 8px 0 13px;
  font-size: 34px;
  line-height: 1.35;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.location-grid .info-card {
  min-height: 185px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.feature-grid article {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background: #24343b;
}

.feature-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
  transition: transform .5s ease;
}

.feature-grid article:hover img {
  transform: scale(1.035);
}

.feature-grid article::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(16, 27, 33, .9));
}

.feature-grid article > div {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 26px;
  left: 28px;
  color: white;
}

.feature-grid h3 {
  margin: 0;
  font-size: 28px;
}

.feature-grid p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .76);
}

.leader-layout {
  display: grid;
  grid-template-columns: 220px minmax(240px, .8fr) minmax(300px, 1.2fr);
  align-items: start;
  gap: 48px;
}

.leader-mark {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: var(--lime);
}

.leader-mark span {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: .08em;
}

.leader-layout blockquote {
  margin: 0;
  color: #31434b;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.7;
}

.leader-layout > div:last-child h2 {
  margin-top: 0;
}

.leader-layout > div:last-child p {
  color: #586165;
}

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

.people-grid article,
.benefit-grid article {
  min-height: 210px;
  padding: 28px;
  border-top: 4px solid var(--lime);
  background: #f7f8f8;
}

.people-grid b,
.benefit-grid b {
  color: #9aa1a4;
  font-size: 12px;
}

.people-grid h3,
.benefit-grid h3 {
  margin: 20px 0 9px;
  font-size: 21px;
}

.people-grid p,
.benefit-grid p {
  color: #60696c;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 88px;
  width: 2px;
  background: var(--line);
}

.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 35px;
  padding: 15px 0 45px;
}

.timeline article::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 82px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--lime);
}

.timeline time {
  font-size: 19px;
  font-weight: 800;
}

.timeline article > div {
  padding-left: 18px;
}

.timeline h3 {
  margin: 0;
  font-size: 24px;
}

.timeline p {
  color: #667074;
}

.filter-bar {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  padding: 20px 24px;
  background: #f3f5f5;
}

.filter-bar label {
  font-weight: 700;
}

.filter-bar input,
.contact-form input,
.contact-form select,
.contact-form textarea,
.jobs-filter select {
  width: 100%;
  border: 1px solid #ccd2d4;
  border-radius: 0;
  background: white;
  padding: 11px 13px;
}

.filter-bar span {
  color: #747c7f;
  font-size: 13px;
}

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

.product-list a {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
}

.product-list a:hover {
  border-color: var(--lime-dark);
}

.product-list span {
  color: var(--lime-dark);
  font-size: 12px;
  font-weight: 800;
}

.product-list h3 {
  margin: 15px 0 8px;
  font-size: 19px;
}

.product-list p {
  color: #6b7376;
  font-size: 14px;
}

.press-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.press-toolbar > span {
  font-size: 23px;
  font-weight: 700;
}

.press-toolbar button {
  border: 0;
  background: transparent;
  padding: 8px 14px;
}

.press-toolbar button.is-active {
  background: var(--lime);
  font-weight: 700;
}

.press-list article {
  display: grid;
  grid-template-columns: 110px 72px minmax(260px, 1fr) minmax(220px, .8fr);
  align-items: start;
  gap: 22px;
  border-bottom: 1px solid var(--line);
  padding: 27px 0;
}

.press-list time {
  color: #858c8f;
  font-size: 13px;
}

.press-list > article > span {
  color: var(--lime-dark);
  font-size: 12px;
  font-weight: 800;
}

.press-list h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
}

.press-list p {
  margin: 0;
  color: #6c7477;
  font-size: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(360px, 1.25fr);
  gap: 80px;
}

.contact-layout h2 {
  margin: 8px 0 16px;
  font-size: 38px;
  line-height: 1.35;
}

.contact-layout > div:first-child > p {
  color: #5d666a;
}

.contact-card,
.contact-form {
  padding: 38px;
  background: var(--soft);
}

.contact-card h3 {
  margin-top: 0;
  font-size: 23px;
}

.contact-card dl {
  margin: 24px 0 0;
}

.contact-card dl div {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.contact-card dt {
  color: var(--lime-dark);
  font-size: 13px;
  font-weight: 700;
}

.contact-card dd {
  margin: 4px 0 0;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

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

.contact-form .consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  font-size: 13px;
  font-weight: 400;
}

.contact-form .consent input {
  width: auto;
  margin-top: 5px;
}

.contact-form .primary-button {
  margin: 0;
}

.form-status {
  align-self: center;
  margin: 0;
  color: var(--lime-dark);
  font-weight: 700;
}

.contact-meta {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.contact-meta p {
  padding-top: 14px;
}

.investor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.investor-grid a {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  background: #1f313a;
  color: white;
  transition: transform .2s ease;
}

.investor-grid a:hover {
  transform: translateY(-4px);
}

.investor-grid b {
  color: var(--lime);
}

.investor-grid h3 {
  margin: 43px 0 8px;
  font-size: 23px;
}

.investor-grid p {
  color: rgba(255, 255, 255, .65);
}

.investor-grid span {
  margin-top: auto;
  color: var(--lime);
  font-size: 13px;
  font-weight: 700;
}

.report-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 26px;
  padding: 22px 25px;
  background: var(--soft);
}

.report-toolbar label {
  display: block;
  font-size: 13px;
  font-weight: 700;
}

.report-toolbar select {
  min-width: 140px;
  margin-top: 5px;
  border: 1px solid #cdd2d4;
  background: white;
  padding: 9px 12px;
}

.report-toolbar p {
  margin: 0;
  color: #727a7d;
}

.report-list article {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid var(--line);
  padding: 21px 10px;
}

.report-list time {
  color: #7b8487;
  font-size: 13px;
}

.report-list h3,
.report-list p {
  margin: 0;
}

.report-list p {
  color: #7b8386;
  font-size: 13px;
}

.report-list button {
  border: 1px solid #bcc4c7;
  background: white;
  padding: 9px 14px;
}

.report-list button:hover {
  border-color: var(--lime-dark);
}

.policy-list details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.policy-list summary {
  padding: 22px 6px;
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
}

.policy-list details p {
  max-width: 780px;
  margin: 0;
  padding: 0 6px 24px;
  color: #646d70;
}

.stock-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 35px;
  background: #1f313a;
  color: white;
}

.stock-summary div {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, .16);
  padding: 25px 30px;
}

.stock-summary span {
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
}

.stock-summary b {
  margin-top: 8px;
  color: var(--lime);
  font-size: 23px;
}

.data-table-wrap {
  overflow-x: auto;
}

.data-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.data-table-wrap th,
.data-table-wrap td {
  border-bottom: 1px solid var(--line);
  padding: 16px;
  text-align: left;
}

.data-table-wrap th {
  background: var(--soft);
  font-size: 13px;
}

.status-pill {
  display: inline-block;
  padding: 2px 10px;
  background: #eef3cb;
  color: #637314;
  font-size: 12px;
  font-weight: 700;
}

.risk-steps,
.career-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.risk-steps article,
.career-path article {
  min-height: 250px;
  padding: 28px;
  background: white;
}

.risk-steps b,
.career-path b {
  color: var(--lime-dark);
  font-size: 13px;
}

.risk-steps h3,
.career-path h3 {
  margin: 55px 0 9px;
  font-size: 21px;
}

.risk-steps p,
.career-path p {
  color: #6a7275;
}

.policy-callout {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(320px, 1.3fr) auto;
  align-items: center;
  gap: 40px;
}

.policy-callout h2,
.policy-callout p {
  margin: 0;
}

.policy-callout a {
  border-bottom: 2px solid var(--lime);
  font-weight: 700;
}

.jobs-filter {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
  padding: 24px;
  background: var(--soft);
}

.jobs-filter label {
  display: grid;
  gap: 5px;
  font-weight: 700;
}

.jobs-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  padding: 26px 5px;
}

.jobs-list span {
  color: var(--lime-dark);
  font-size: 12px;
  font-weight: 800;
}

.jobs-list h2 {
  margin: 6px 0;
  font-size: 22px;
}

.jobs-list p {
  margin: 0;
  color: #737b7e;
  font-size: 14px;
}

.jobs-list a {
  border: 1px solid var(--ink);
  padding: 9px 17px;
  font-weight: 700;
}

.memory-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.memory-grid article {
  background: var(--soft);
}

.memory-grid img {
  width: 100%;
  aspect-ratio: 1.65;
  object-fit: cover;
}

.memory-grid article > div {
  padding: 24px 26px;
}

.memory-grid h3 {
  margin: 0;
  font-size: 22px;
}

.memory-grid p {
  color: #667074;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 32px;
}

.sitemap-grid > article {
  border-top: 4px solid var(--lime);
  background: var(--soft);
  padding: 28px;
}

.sitemap-grid > article h2 {
  margin-top: 0;
  font-size: 26px;
}

.sitemap-grid article > div + div {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.sitemap-grid h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.sitemap-grid ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 17px;
  margin: 0;
  padding: 0;
}

.sitemap-grid li {
  color: #5f686b;
  font-size: 14px;
}

.sitemap-grid a:hover {
  color: var(--lime-dark);
  text-decoration: underline;
}

.policy-page {
  max-width: 900px;
}

.policy-lead {
  margin: 0 0 42px;
  border-left: 5px solid var(--lime);
  padding: 5px 0 5px 22px;
  color: #475054;
  font-size: 18px;
}

.policy-page section {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.policy-page section h2 {
  margin: 0 0 10px;
  font-size: 21px;
}

.policy-page section p {
  margin: 0;
  color: #626b6e;
}

.search-dialog {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  place-items: start center;
  overflow: auto;
  background: rgba(19, 31, 38, .82);
  padding: 8vh 24px;
}

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

.search-card {
  width: min(100%, 760px);
  max-height: 82vh;
  overflow: auto;
  background: white;
  padding: 32px;
}

.search-close {
  display: block;
  margin: 0 0 20px auto;
  border: 0;
  background: #eef0f1;
  padding: 8px 13px;
}

.search-card label {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.search-card input {
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--ink);
  padding: 13px 2px;
  font-size: 18px;
}

.search-results {
  margin-top: 24px;
}

.search-results a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 13px 4px;
}

.search-results a:hover {
  color: var(--lime-dark);
}

.search-results small {
  color: #858d90;
}

.toast {
  position: fixed;
  z-index: 600;
  right: 22px;
  bottom: 22px;
  max-width: 360px;
  background: #1f313a;
  color: white;
  padding: 14px 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.toast[hidden] {
  display: none;
}

.back-to-top {
  position: fixed;
  z-index: 80;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #d9dede;
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top img {
  width: 21px;
  height: 21px;
}

@media (max-width: 1100px) {
  .header-inner {
    width: min(100% - 36px, 1040px);
    grid-template-columns: 180px 1fr auto;
    gap: 16px;
  }

  .desktop-nav > ul {
    gap: 18px;
  }

  .desktop-nav a,
  .nav-trigger {
    font-size: 14px;
  }

  .mega-inner.mega-wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .business-grid {
    gap: 18px;
  }

  .business-card h3 {
    font-size: 20px;
  }

  .footer-desktop {
    gap: 20px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 60px;
  }

  .site-header {
    box-shadow: 0 3px 12px rgba(20, 31, 38, .08);
  }

  .header-inner {
    width: 100%;
    grid-template-columns: 1fr auto;
    padding: 0 16px;
  }

  .brand {
    width: auto;
  }

  .brand > img {
    width: 36px;
    height: 36px;
  }

  .brand > span b {
    font-size: 12px;
  }

  .brand > span small {
    font-size: 8px;
  }

  .desktop-nav {
    display: none;
  }

  .language-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .language-popover {
    right: -64px;
  }

  .mobile-menu-toggle {
    display: inline-block;
  }

  .text-action {
    min-height: 38px;
    padding: 7px 9px;
  }

  .icon-action {
    width: 38px;
    height: 38px;
    padding: 7px;
  }

  .mobile-drawer {
    position: fixed;
    z-index: 120;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow: auto;
    background: linear-gradient(rgba(255, 255, 255, .91), rgba(255, 255, 255, .96)), url("assets/demo-images/news-orbit-texture.png") center / cover;
    padding: 35px 16px 60px;
  }

  .mobile-drawer.is-open {
    display: block;
    animation: drawerIn .22s ease both;
  }

  @keyframes drawerIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .mobile-root-row {
    width: 100%;
    min-height: 61px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 0;
    border-bottom: 1px solid #d9dedf;
    background: transparent;
    padding: 12px 0;
    color: var(--ink);
    text-align: left;
    font-size: 18px;
  }

  .mobile-root-row > img {
    width: 9px;
    height: 14px;
  }

  .mobile-root-row small {
    color: #70787b;
    font-size: 12px;
  }

  .mobile-subpage {
    display: none;
  }

  .mobile-subpage.is-active {
    display: block;
  }

  .mobile-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    background: transparent;
    padding: 4px 0 15px;
    color: #667074;
  }

  .mobile-back img {
    width: 8px;
    height: 13px;
    transform: rotate(180deg);
  }

  .mobile-subpage > h2 {
    margin: 0 0 24px;
    font-size: 30px;
  }

  .mobile-accordion {
    border-bottom: 1px solid #dce1e2;
    padding: 0;
  }

  .mobile-accordion summary {
    padding: 16px 0;
    font-size: 17px;
    font-weight: 700;
  }

  .mobile-accordion ul {
    list-style: none;
    margin: 0;
    padding: 0 0 14px 14px;
  }

  .mobile-accordion a {
    display: block;
    padding: 7px 0;
    color: #4c5558;
  }

  .home-hero {
    height: calc(100vh - var(--header-height));
    min-height: 600px;
    max-height: none;
  }

  .hero-slide img {
    object-position: center;
  }

  .hero-copy {
    top: auto;
    bottom: 98px;
  }

  .hero-copy span {
    font-size: 16px;
  }

  .hero-copy h1 {
    margin-top: 5px;
    font-size: 23px;
  }

  .hero-dots {
    bottom: 45px;
  }

  .hero-arrow {
    display: none;
  }

  .news-strip {
    padding: 36px 22px;
  }

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

  .news-card,
  .news-card:first-child {
    padding: 0 16px;
    border-left: 1px solid #dfe3e3;
  }

  .news-card:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }

  .global-section {
    min-height: 650px;
  }

  .world-map {
    top: 35px;
    width: 920px;
  }

  .global-copy {
    padding-top: 350px;
  }

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

  .revenue-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .partner-track {
    grid-auto-columns: minmax(240px, 78%);
  }

  .footer-desktop {
    display: none;
  }

  .footer-mobile {
    display: block;
  }

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

  .footer-accordion summary {
    padding: 15px 0;
    font-weight: 700;
    cursor: pointer;
  }

  .footer-accordion ul {
    padding: 0 0 15px 15px;
  }

  .footer-accordion a {
    display: block;
    padding: 5px 0;
    color: #525a5d;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 0 32px;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
    gap: 10px 20px;
  }

  .page-hero {
    min-height: 370px;
  }

  .page-hero-inner > p {
    margin-top: 56px;
  }

  .catalog-grid,
  .product-list,
  .people-grid,
  .benefit-grid,
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-panel {
    grid-template-columns: 1fr;
  }

  .leader-layout {
    grid-template-columns: 180px 1fr;
  }

  .leader-layout > div:last-child {
    grid-column: 1 / -1;
  }

  .investor-grid,
  .risk-steps,
  .career-path {
    grid-template-columns: repeat(2, 1fr);
  }

  .press-list article {
    grid-template-columns: 90px 65px 1fr;
  }

  .press-list p {
    grid-column: 3;
  }

  .policy-callout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .search-toggle {
    padding-right: 7px;
    padding-left: 7px;
  }

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

  .hero-slide[data-slide="3"] img {
    object-position: 51% center;
  }

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

  .news-card,
  .news-card:first-child,
  .news-card:nth-child(odd) {
    border-left: 0;
    border-bottom: 1px solid #dfe3e3;
    padding: 0 0 20px;
  }

  .global-section {
    min-height: 590px;
  }

  .world-map {
    top: 10px;
    width: 720px;
  }

  .global-copy {
    padding-top: 280px;
  }

  .global-copy h2 {
    font-size: 28px;
  }

  .business-section,
  .revenue-section {
    padding: 58px 20px;
  }

  .section-title {
    margin-bottom: 28px;
  }

  .section-title h2 {
    font-size: 25px;
  }

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

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

  .revenue-bars {
    height: 230px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .partner-strip {
    grid-template-columns: 1fr;
    padding: 44px 20px;
  }

  .partner-arrow {
    display: none;
  }

  .partner-track {
    grid-auto-columns: 88%;
  }

  .footer-main,
  .footer-bottom {
    width: calc(100% - 40px);
  }

  .footer-bottom nav {
    display: grid;
  }

  .page-hero-inner,
  .content-section {
    width: calc(100% - 40px);
  }

  .page-hero {
    min-height: 340px;
  }

  .page-hero-inner {
    padding: 35px 0 48px;
  }

  .page-hero-inner > p {
    margin-top: 48px;
  }

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

  .page-hero strong {
    font-size: 15px;
  }

  .content-section {
    padding: 55px 0;
  }

  .content-section.muted {
    width: 100%;
    padding: 55px 20px;
  }

  .split-intro,
  .contact-layout,
  .location-map {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .catalog-grid,
  .info-grid,
  .product-list,
  .people-grid,
  .benefit-grid,
  .location-grid,
  .feature-grid,
  .memory-grid,
  .sitemap-grid,
  .investor-grid,
  .risk-steps,
  .career-path {
    grid-template-columns: 1fr;
  }

  .catalog-card {
    min-height: 205px;
  }

  .detail-panel {
    padding: 28px 24px;
  }

  .detail-panel ol {
    grid-template-columns: 1fr;
  }

  .detail-panel li {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding: 16px 0 0;
  }

  .stats-band {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .stats-band div,
  .stats-band div:last-child {
    min-height: 125px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    padding: 24px 10px;
  }

  .location-map {
    padding: 25px;
  }

  .feature-grid article {
    min-height: 310px;
  }

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

  .leader-mark {
    width: 150px;
  }

  .leader-layout > div:last-child {
    grid-column: auto;
  }

  .timeline::before {
    left: 67px;
  }

  .timeline article {
    grid-template-columns: 67px 1fr;
    gap: 20px;
  }

  .timeline article::before {
    left: 61px;
  }

  .filter-bar {
    grid-template-columns: 1fr;
  }

  .press-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .press-toolbar > div {
    display: flex;
    flex-wrap: wrap;
  }

  .press-list article {
    grid-template-columns: auto 1fr;
    gap: 7px 15px;
  }

  .press-list h2,
  .press-list p {
    grid-column: 1 / -1;
  }

  .contact-card,
  .contact-form {
    padding: 27px 22px;
  }

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

  .contact-form .full {
    grid-column: auto;
  }

  .report-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .report-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .stock-summary {
    grid-template-columns: 1fr;
  }

  .stock-summary div {
    min-height: 110px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .risk-steps article,
  .career-path article {
    min-height: 205px;
  }

  .jobs-filter {
    grid-template-columns: 1fr;
  }

  .jobs-list article {
    align-items: flex-start;
    flex-direction: column;
  }

  .search-card {
    padding: 23px 19px;
  }

  .search-results a {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
}

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