:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-soft: #f6f7f6;
  --surface: #ffffff;
  --surface-2: #f1f3f2;
  --text: #191815;
  --muted: #5f5b54;
  --dim: #777168;
  --gold: #ed7f13;
  --bronze: #a65e18;
  --sand: #f3f0ea;
  --line: rgba(25, 24, 21, 0.12);
  --shadow: rgba(28, 24, 18, 0.10);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #fff;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 46rem, #f8f8f6 100%);
  text-rendering: optimizeLegibility;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  transform: translateY(-160%);
  padding: 0.65rem 0.9rem;
  border-radius: 6px;
  color: #fff;
  background: var(--text);
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(25, 24, 21, 0.10);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background-color 220ms ease;
}

.is-scrolled .site-header {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 34px rgba(25, 24, 21, 0.08);
}

.nav {
  width: min(var(--max), calc(100% - 2rem));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: var(--text);
}

.brand picture {
  display: block;
}

.brand-logo {
  width: min(204px, 58vw);
  height: auto;
}

.footer-brand-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand .brand-logo {
  width: 150px;
}

.footer-brand-group p {
  margin: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.85rem;
  border-radius: 6px;
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(237, 127, 19, 0.08);
}

.home-portal {
  min-height: 100svh;
  background: #fff;
}

.home-portal .nav {
  min-height: 88px;
  justify-content: center;
}

.home-portal .nav-links,
.home-portal main > :not(.gateway),
.home-portal .site-footer {
  display: none;
}

.gateway {
  min-height: calc(100svh - 88px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, #fff 0%, #fff 58%, #f6f7f6 100%);
}

.gateway-inner {
  padding: clamp(2rem, 6vw, 5rem) 0;
}

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

.gateway-button {
  position: relative;
  min-height: clamp(260px, 34vw, 430px);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(25, 24, 21, 0.13);
  border-radius: 8px;
  background: #f6f7f6;
  box-shadow: 0 24px 60px rgba(28, 24, 18, 0.10);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.gateway-button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.78) 68%, rgba(255, 255, 255, 0.96)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.45));
}

.gateway-button-image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.gateway-button-image picture,
.gateway-button-image img {
  width: 100%;
  height: 100%;
}

.gateway-button-image img {
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(0.9) contrast(0.96) brightness(1.08);
  transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1), opacity 220ms ease;
}

.gateway-button-label {
  color: var(--text);
  font-size: clamp(2.3rem, 5vw, 4.35rem);
  font-weight: 780;
  line-height: 0.98;
  letter-spacing: 0;
}

.gateway-button:hover,
.gateway-button:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(237, 127, 19, 0.38);
  box-shadow: 0 34px 76px rgba(28, 24, 18, 0.16);
}

.gateway-button:hover .gateway-button-image img,
.gateway-button:focus-visible .gateway-button-image img {
  transform: scale(1.055);
  opacity: 0.55;
}

.section {
  padding: 6rem 0;
}

.section-dark {
  background: #fff;
}

.section-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f6f7f6;
}

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  font-weight: 760;
  overflow-wrap: break-word;
}

h1 {
  max-width: 920px;
  margin-bottom: 1.35rem;
  font-size: 4.05rem;
}

h2 {
  max-width: 840px;
  margin-bottom: 1.15rem;
  font-size: 2.7rem;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.35rem;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.2rem;
}

.text-block {
  max-width: 840px;
  color: var(--muted);
  font-size: 1.08rem;
}

.text-block p:last-child,
.lead:last-child {
  margin-bottom: 0;
}

.hero {
  position: relative;
  min-height: 82svh;
  overflow: clip;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-media video,
.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media video,
.hero-media img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(0.94) brightness(1.08);
  opacity: 0.60;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92) 43%, rgba(255, 255, 255, 0.56) 73%, rgba(255, 255, 255, 0.72)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), #fff 96%);
}

.hero-content {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 5rem 0 3.8rem;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.62fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy > * {
  opacity: 0;
  transform: translateY(18px);
  animation: hero-copy-in 720ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 80ms;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 160ms;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 240ms;
}

.hero-copy > *:nth-child(5) {
  animation-delay: 320ms;
}

.hero .lead {
  max-width: 720px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.hero-proof span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border: 1px solid rgba(25, 24, 21, 0.12);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 20px rgba(28, 24, 18, 0.06);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-motion {
  --motion-gap: 0.9rem;
  height: min(560px, 60svh);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--motion-gap);
  overflow: hidden;
  mask-image: linear-gradient(180deg, transparent, #000 13%, #000 87%, transparent);
}

.hero-motion-column {
  display: flex;
  flex-direction: column;
  gap: var(--motion-gap);
  will-change: transform;
}

.hero-motion-column img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(25, 24, 21, 0.16);
}

.hero-motion-up {
  animation: hero-loop-up 36s linear infinite;
}

.hero-motion-down {
  transform: translateY(calc(-50% - 0.45rem));
  animation: hero-loop-down 36s linear infinite;
}

.hero-motion:hover .hero-motion-column {
  animation-play-state: paused;
}

.capability-marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.capability-track {
  width: max-content;
  display: flex;
  gap: 0.75rem;
  padding: 1rem 0;
  will-change: transform;
  animation: capability-marquee 42s linear infinite;
}

.capability-track span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(25, 24, 21, 0.11);
  border-radius: 999px;
  color: var(--text);
  background: #f8f8f6;
  font-size: 0.9rem;
  font-weight: 720;
}

.capability-marquee:hover .capability-track {
  animation-play-state: paused;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(25, 24, 21, 0.16);
  border-radius: 6px;
  color: var(--text);
  background: #fff;
  font-weight: 720;
  box-shadow: 0 10px 24px rgba(28, 24, 18, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: #fffaf4;
  box-shadow: 0 14px 30px rgba(237, 127, 19, 0.13);
}

.button-primary {
  color: #fff;
  border-color: var(--gold);
  background: var(--gold);
}

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

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 4rem;
  align-items: start;
}

.statement {
  margin: 0;
  padding: 1rem 1.15rem;
  border-left: 2px solid var(--gold);
  color: var(--text);
  background: #f7f7f5;
  font-size: 1.25rem;
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.4rem;
}

.division-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 20px 50px var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.division-card picture,
.division-card img {
  width: 100%;
}

.division-card picture {
  overflow: hidden;
}

.division-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.division-card:hover,
.division-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(237, 127, 19, 0.32);
  box-shadow: 0 28px 64px rgba(28, 24, 18, 0.14);
}

.division-card:hover img,
.division-card:focus-within img {
  transform: scale(1.045);
}

.division-body {
  padding: 1.45rem;
}

.division-kicker {
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 720;
}

.division-card p {
  color: var(--muted);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2.4rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.benefit {
  position: relative;
  min-height: 190px;
  padding: 1.35rem;
  background: var(--surface);
  transition: background-color 180ms ease, color 180ms ease;
}

.benefit::after {
  content: "";
  position: absolute;
  right: 1.35rem;
  bottom: 1.1rem;
  left: 1.35rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.benefit:hover,
.benefit:focus-within {
  background: #fffaf4;
}

.benefit:hover::after,
.benefit:focus-within::after {
  transform: scaleX(1);
}

.benefit-index {
  display: block;
  margin-bottom: 1.6rem;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 780;
  letter-spacing: 0;
}

.benefit p {
  margin-bottom: 0;
  color: var(--muted);
}

.region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.region-list li {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(25, 24, 21, 0.12);
  border-radius: 999px;
  color: var(--text);
  background: #fff;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.region-list li:hover {
  transform: translateY(-2px);
  border-color: rgba(237, 127, 19, 0.35);
  background: #fffaf4;
}

.cta {
  padding: 5rem 0;
  background: #f6f7f6;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.cta p {
  max-width: 760px;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  color: var(--dim);
  background: #fff;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.subpage-hero {
  min-height: 58svh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.82)),
    var(--subpage-image, linear-gradient(135deg, #141510, #070807));
  background-position: center;
  background-size: cover;
}

.subpage-hero .wrap {
  padding: 5rem 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0;
  color: var(--muted);
  font-size: 0.9rem;
  list-style: none;
}

.breadcrumb a {
  color: var(--gold);
}

.placeholder {
  max-width: 760px;
  padding: 2rem 0;
}

.placeholder p {
  color: var(--muted);
  font-size: 1.15rem;
}

.reveal {
  opacity: 1;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease, border-color 220ms ease, background-color 180ms ease, box-shadow 220ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

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

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

@keyframes hero-loop-up {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(calc(-50% - 0.45rem));
  }
}

@keyframes hero-loop-down {
  from {
    transform: translateY(calc(-50% - 0.45rem));
  }

  to {
    transform: translateY(0);
  }
}

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

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

@media (max-width: 1100px) {
  h1 {
    font-size: 3.35rem;
  }

  .hero-content {
    padding: 4.2rem 0 3.2rem;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.55fr);
    gap: 2rem;
  }

  .hero-motion {
    height: min(500px, 60svh);
  }

  .hero-proof {
    display: none;
  }
}

@media (max-width: 920px) {
  .nav {
    min-height: auto;
    padding: 0.9rem 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .intro-grid,
  .hero-content,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 1.8rem;
  }

  .hero-motion {
    display: none;
  }

  .capability-track {
    animation-duration: 34s;
  }

  .division-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit {
    min-height: 0;
  }

  .home-portal .nav {
    min-height: 82px;
    padding: 0.9rem 0;
    align-items: center;
  }

  .gateway {
    min-height: calc(100svh - 82px);
  }

  .gateway-choices {
    grid-template-columns: 1fr;
  }

  .gateway-button {
    min-height: min(30svh, 250px);
  }
}

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

  .section {
    padding: 4.2rem 0;
  }

  h1 {
    font-size: 2.18rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .lead {
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 3.6rem 0 1.7rem;
  }

  .actions {
    margin-top: 1.45rem;
    gap: 0.7rem;
  }

  .hero-proof {
    display: none;
  }

  .button {
    width: 100%;
  }

  .home-portal .brand-logo {
    width: min(188px, 68vw);
  }

  .gateway-inner {
    padding: 1.2rem 0 1.6rem;
  }

  .gateway-choices {
    gap: 0.85rem;
  }

  .gateway-button {
    min-height: 220px;
    padding: 1.2rem;
  }

  .gateway-button-label {
    font-size: 2.35rem;
  }
}

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

  .hero-media video {
    display: none;
  }

  .hero-copy > *,
  .hero-motion-column,
  .capability-track {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
