@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --color-primary: #1b316d;
  --color-primary-strong: #0d1836;
  --color-primary-soft: #dfe9ff;
  --color-secondary: #eab818;
  --color-accent-strong: #f4d557;
  --color-accent-soft: #fff4c7;
  --color-surface: #ffffff;
  --color-surface-muted: #f6f8fc;
  --color-surface-alt: #edf3ff;
  --color-border: rgba(17, 45, 102, 0.12);
  --color-border-strong: rgba(17, 45, 102, 0.2);
  --color-text: #16305f;
  --color-text-muted: #51668f;
  --color-text-inverse: #ffffff;
  --color-success: #1e8f5a;
  --shadow-soft: 0 18px 40px rgba(8, 28, 74, 0.08);
  --shadow-card: 0 20px 50px rgba(10, 36, 95, 0.12);
  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-pill: 999px;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --container-max: 1200px;
  --transition-base: 0.25s ease;
  --hero-orb-x: 74%;
  --hero-orb-y: 50%;
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  --banner-orb-offset-x: 0px;
  --banner-orb-offset-y: 0px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Archivo", sans-serif;

  color: var(--color-text);
  line-height: 1.6;
}
section {
  padding: clamp(4rem, 7vw, 6rem) 0;
}
main {
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition:
    color var(--transition-base),
    opacity var(--transition-base);
}

a:hover {
  color: var(--color-primary);
}

/* .container {
  width: min(100% - 2rem, var(--container-max));
} */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-primary-strong);
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

p {
  color: #000000;
}

.banner-home {
  position: relative;
  min-height: 100vh;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}
.banner-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/hero_banner.svg") center center / cover no-repeat;
  pointer-events: none;
  z-index: 1;
}

.banner-home::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0) 36%,
    rgba(255, 255, 255, 0.06) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.header {
  margin: 0 auto;
  padding-top: clamp(1.25rem, 2.6vw, 2rem);
  position: relative;
  z-index: 3;
}

.nav-item {
  margin: 0 20px;
}
.nav-link {
  font-size: 0.875rem;
  color: #000000;
  padding: 0.75rem 0;
  font-weight: 500;
}
.navbar-nav .nav-link.active {
  color: var(--color-primary) !important;
}
.navbar-brand img {
  width: clamp(140px, 16vw, 210px);
}

.navbar-nav {
  border: 1px solid #dfe8ff;
  border-radius: 30px;
  background: rgb(255, 255, 255, 0.2);
}

.banner-content {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.banner-copy {
  width: min(100%, 860px);
  margin-top: clamp(1.5rem, 6vw, 6rem);
}

.banner-title {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: clamp(2.7rem, 4vw, 4.8rem);
  font-weight: 500;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.banner-text {
  width: min(100%, 65ch);
  margin-bottom: 0;
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  line-height: 1.75;
  color: #1f1f22;
}

@media (max-width: 991.98px) {
  .banner-home {
    min-height: auto;
  }

  .banner-home::before {
    background: url("../images/hero_banner.svg") 64% center / cover no-repeat;
  }

  .banner-home::after {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.22) 100%
    );
  }

  .banner-content {
    align-items: flex-start;
    padding: 2rem 0 3rem;
  }

  .banner-copy {
    width: min(100%, 620px);
    margin-top: 1.25rem;
    padding: 0;
  }

  .banner-title {
    width: min(100%, 12ch);
    font-size: clamp(2.5rem, 6.2vw, 3.45rem);
    margin-bottom: 1.25rem;
    line-height: 0.98;
    letter-spacing: normal;
  }

  .banner-text {
    width: min(100%, 42ch);
    font-size: 1rem;
    padding-bottom: 0;
    line-height: 1.72;
  }

  .navbar-nav {
    margin-top: 1rem;
    padding: 0.5rem 2.25rem;
    border-radius: 50px;
    --bs-scroll-height: 150px !important;
    overflow: hidden;
  }

  .nav-item {
    margin: 0;
  }

  .nav-link {
    padding: 0.7rem 1rem;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .banner-home {
    min-height: auto;
  }

  .header {
    padding-top: 1.25rem;
  }

  .banner-home::before {
    background: url("../images/hero_banner.svg") 70% center / auto 100%
      no-repeat;
  }

  .banner-copy {
    width: 100%;
    margin-top: 0.35rem;
    padding-top: 0;
  }

  .banner-title {
    width: min(100%, 9.5ch);
    font-size: clamp(2rem, 10.2vw, 2.75rem);
    margin-bottom: 1rem;
    line-height: 0.98;
  }

  .banner-text {
    width: 100%;
    max-width: 28ch;
    font-size: 0.92rem;
    line-height: 1.62;
  }
  .navbar {
    padding: 0 20px;
  }
  .navbar-brand img {
    width: 145px;
  }

  .navbar-toggler {
    padding: 0.35rem 0.55rem;
    border-color: rgba(17, 45, 102, 0.2);
  }

  .banner-content {
    padding: 0.9rem 0 2rem;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-copy {
    width: min(100%, 760px);
    margin-top: 4rem;
  }

  .banner-title {
    font-size: clamp(3rem, 4.2vw, 4.2rem);
  }

  .banner-text {
    width: min(100%, 60ch);
  }
}

@media (min-width: 1400px) {
  .banner-copy {
    margin-top: 5.5rem;
  }

  .banner-text {
    width: min(100%, 68ch);
  }
}

.banner-orb {
  position: absolute;
  top: 54%;
  right: clamp(1rem, 7vw, 6rem);
  width: clamp(320px, 42vw, 550px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    rgb(242, 190, 18) 0%,
    rgb(242, 190, 18) 30%,
    rgb(242, 190, 18) 50%,
    rgba(234, 184, 24, 0.85) 65%,
    rgba(234, 184, 24, 0.4) 80%,
    rgba(234, 184, 24, 0) 100%
  );
  filter: blur(55px);
  opacity: 1;
  pointer-events: none;
  transform: translate3d(
    var(--banner-orb-offset-x),
    calc(-50% + var(--banner-orb-offset-y)),
    0
  );
  transition:
    transform 60ms ease-out,
    opacity 60ms ease-out;
  z-index: 0;
}

.banner-motion-zone:hover .banner-orb {
  /* opacity: 1; */
}

/* Tablet */
@media (max-width: 991.98px) {
  .banner-orb {
    top: 54%;
    right: -18rem;
    width: clamp(340px, 68vw, 540px);
    filter: blur(43px);
    opacity: 1;
  }
}

@media (max-width: 575.98px) {
  .banner-orb {
    top: 50%;
    right: -15.75rem;
    width: 380px;
    filter: blur(43px);
    opacity: 1;
  }
}

.about-hero {
  /* min-height: 100vh; */
  background: #ffffff;
  display: flex;
  padding-bottom: 0;
  flex-direction: column;
}

.about-hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(4rem, 7vw, 6rem);
}

.about-hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.92fr);
  /* gap: clamp(3rem, 6vw, 6.5rem); */
  align-items: start;
}

.about-hero-copy {
  display: grid;
  gap: clamp(2.25rem, 4vw, 4.5rem);
}

.about-hero-kicker {
  margin: 0;
  font-size: clamp(1.7rem, 2.8vw, 1.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--color-primary);
}

.about-hero-title {
  margin: 0;
  width: 96%;
  font-size: clamp(3.4rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: #040404;
}

.about-title-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}

.about-title-line-text {
  display: block;
  transform: translateY(108%);
  opacity: 0;
}

body.page-ready .about-title-line-text {
  animation: aboutTitleReveal 0.9s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

body.page-ready .about-title-line:nth-child(1) .about-title-line-text {
  animation-delay: 0.12s;
}

body.page-ready .about-title-line:nth-child(2) .about-title-line-text {
  animation-delay: 0.24s;
}

body.page-ready .about-title-line:nth-child(3) .about-title-line-text {
  animation-delay: 0.36s;
}

body.page-ready .about-title-line:nth-child(4) .about-title-line-text {
  animation-delay: 0.48s;
}

.about-hero-text {
  max-width: 32rem;
  padding-top: clamp(8.5rem, 8vw, 11rem);
}

.about-hero-text p {
  margin: 0;
  font-size: clamp(1.1rem, 1.45vw, 1rem);
  line-height: 1.62;
  color: #040404;
}

.about-hero-text p + p {
  margin-top: clamp(1.75rem, 3vw, 2.6rem);
}

.about-video-section {
  padding: clamp(1rem, 2vw, 1.5rem) 0 clamp(4rem, 6vw, 6rem);
  background: #ffffff;
}

.about-video-shell {
  position: relative;
  overflow: hidden;
}

.about-video-frame {
  overflow: hidden;
  transform: scale(0.8);
  transform-origin: center center;
  will-change: transform, border-radius;
}

.about-video-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #d8ddd9;
  pointer-events: none;
}

.about-needs-section {
  position: relative;
  /* padding: clamp(4.5rem, 8vw, 7rem) 0; */
  background: #e8eaf0;
  overflow: hidden;
}

.about-needs-layout {
  margin: 0 auto;
  width: min(1100px, calc(100% - 2rem));
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 330px);
  align-items: center;
  gap: 0;
  min-height: clamp(360px, 38vw, 520px);
}

.about-needs-title {
  margin: 0;
  margin-right: clamp(-1.5rem, -2vw, -0.75rem);
  font-size: clamp(3.4rem, 8vw, 6rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -3px;
  color: var(--color-primary);
}

.about-needs-stage {
  position: relative;
  width: min(100%, 330px);
  justify-self: start;
  margin-left: clamp(-1rem, -1.5vw, -0.5rem);
  min-height: clamp(320px, 35vw, 450px);
}

.about-needs-section,
.about-needs-section * {
  cursor: none;
}

.about-needs-cursor {
  position: absolute;
  top: 0;
  left: 0;
  --needs-cursor-x: 0px;
  --needs-cursor-y: 0px;
  --needs-cursor-scale: 0.88;
  --needs-cursor-size: clamp(86px, 9vw, 126px);
  width: clamp(86px, 9vw, 126px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(var(--needs-cursor-x), var(--needs-cursor-y), 0)
    scale(var(--needs-cursor-scale));
  transition:
    opacity 0.18s ease,
    width 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  z-index: 3;
  will-change: transform, opacity;
  overflow: hidden;
}

.about-needs-cursor span {
  width: min(78%, 5.5rem);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  line-height: 1.12;
  text-align: center;
  transition:
    opacity 0.18s ease,
    transform 0.22s cubic-bezier(0.33, 1, 0.68, 1);
}

.about-needs-section.is-active .about-needs-cursor {
  opacity: 1;
  --needs-cursor-scale: 1;
}

.about-needs-section.is-captured .about-needs-cursor {
  width: clamp(12px, 1.2vw, 18px);
  --needs-cursor-scale: 1;
}

.about-needs-section.is-captured .about-needs-cursor span {
  opacity: 0;
  transform: scale(0.6);
}

.about-needs-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(220px, 22vw, 340px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  border: 3px solid var(--color-primary);
  background: var(--color-primary);
  color: #ffffff;
  transform: translate3d(-50%, -50%, 0);
  transition:
    background-color 0.42s cubic-bezier(0.33, 1, 0.68, 1),
    border-color 0.42s cubic-bezier(0.33, 1, 0.68, 1),
    color 0.42s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform;
  outline: none;
}

.about-needs-orb.is-captured {
  background: #ffffff;
  color: var(--color-primary);
}

.about-needs-orb:focus-visible {
  box-shadow: 0 0 0 4px rgba(27, 49, 109, 0.14);
}

.about-needs-orb-core {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  clip-path: circle(0% at 50% 50%);
  transform-origin: center center;
  transition: clip-path 0.46s cubic-bezier(0.33, 1, 0.68, 1);
  z-index: 1;
}

.about-needs-orb.is-captured .about-needs-orb-core {
  clip-path: circle(71% at 50% 50%);
}

.about-needs-orb-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 16%;
  text-align: center;
  font-size: clamp(3.4rem, 6vw, 6rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.05em;
  transition:
    opacity 0.34s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.34s cubic-bezier(0.33, 1, 0.68, 1);
}
@media only screen and (min-width: 992px) {
  .about-needs-section {
    padding: 0 !important;
  }
}
.about-needs-orb-label-active {
  position: relative;
  inset: auto;
  z-index: 2;
  opacity: 0;
  transform: translateY(16px) scale(0.94);
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  color: var(--color-primary);
}

.about-needs-orb-dot {
  position: absolute;
  top: 18%;
  left: 23%;
  width: clamp(12px, 1.2vw, 18px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #223b82;
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity 0.34s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.34s cubic-bezier(0.33, 1, 0.68, 1);
}

.about-needs-orb.is-captured .about-needs-orb-label-default {
  opacity: 0;
  transform: scale(1.02);
}

.about-needs-orb.is-captured .about-needs-orb-label-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.about-needs-orb.is-captured .about-needs-orb-dot {
  opacity: 1;
  transform: scale(1);
}

.expertise-hero {
  /* min-height: 100vh; */
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.expertise-hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(4rem, 7vw, 6rem);
}

.expertise-hero-copy {
  width: min(100%, 1140px);
  display: grid;
  gap: clamp(2.25rem, 4vw, 4.5rem);
}

.expertise-hero-kicker {
  margin: 0;
  font-size: clamp(1.7rem, 2.8vw, 1.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--color-primary);
}

.expertise-hero-title {
  margin: 0;
  /* max-width: 11.5ch; */
  margin-left: clamp(12rem, 16vw, 16.5rem);
  font-size: clamp(3.5rem, 6vw, 4.2rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: #040404;
}

.expertise-hero-text {
  max-width: 58rem;
  margin: 0 0 0 clamp(12rem, 16vw, 16.5rem);
  font-size: clamp(1.06rem, 1.35vw, 1rem);
  line-height: 1.65;
  color: #040404;
}

.expertise-slider-section {
  background: #eef1f7;
  overflow: hidden;
}

.expertise-slider-shell {
  padding: 0;
}

.expertise-mobile-slider {
  display: none;
}

.contact-page {
  min-height: 100vh;
  background:
    url("../images/contact.svg") left bottom / min(82vw, 1420px) auto no-repeat,
    #ffffff;
  display: flex;
  flex-direction: column;
}

.contact-page-content {
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding: clamp(1.8rem, 4vw, 3rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.contact-page-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5.5rem);
}

.contact-page-info {
  display: grid;
  align-content: start;
  gap: clamp(1.6rem, 3vw, 2.2rem);
}

.contact-page-kicker {
  margin: 0 0 clamp(0.4rem, 1vw, 0.8rem);
  font-size: clamp(1.45rem, 2.2vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--color-primary);
}

.contact-page-info-group {
  display: grid;
  gap: 0.5rem;
}

.contact-page-label {
  font-size: 1rem;
  line-height: 1.3;
  color: #040404;
}

.contact-page-value {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.45;
  color: #040404;
}

.contact-page-form-wrap {
  display: grid;
  gap: 1rem;
}

.contact-page-form {
  display: grid;
  gap: 1.55rem;
}

.contact-form-field {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 30px;
}

.contact-form-field label {
  font-size: 1rem;
  line-height: 1.3;
  color: #040404;
}

.contact-form-field input,
.contact-form-field textarea {
  width: 100%;
  border: 1px solid rgba(27, 49, 109, 0.18);
  background: transparent;
  padding: 0.85rem 1rem;
  font: inherit;
  color: #040404;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form-field input {
  min-height: 3rem;
}

.contact-form-field textarea {
  min-height: 9rem;
  resize: vertical;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
  border-color: rgba(27, 49, 109, 0.5);
  box-shadow: 0 0 0 3px rgba(27, 49, 109, 0.08);
}

.contact-form-action {
  display: flex;
  justify-content: flex-end;
  padding-top: 0.25rem;
}

.contact-submit {
  min-width: 106px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  border-radius: 999px;
  background: #223b82;
  color: #ffffff;
  padding: 0.75rem 1.35rem;
  font: inherit;
  cursor: pointer;
}

#contactAlert {
  font-size: 0.95rem;
  color: #1e8f5a;
}

.contact-form-field .contact-field-error {
  display: block;
  font-size: 0.88rem;
  line-height: 1.35;
  color: #c43c2f;
}

.contact-form-field input.is-invalid,
.contact-form-field textarea.is-invalid {
  border-color: rgba(196, 60, 47, 0.65);
  box-shadow: 0 0 0 3px rgba(196, 60, 47, 0.08);
}

.contact-submit[disabled] {
  opacity: 0.72;
  cursor: wait;
}
.contact-form #contact .form-group label.error {
  color: red;
  margin-top: 5px;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 13px;
}
.contact .contact-form #error,
.contact .contact-form #success {
  display: none;
  float: left;
  border-radius: 60px;
}
.contact .contact-form #error {
  background: rgb(255, 171, 171);
  color: #000000;
}
.contact .contact-form #success {
  background: rgb(191, 255, 191);
  color: #000000;
}
.contact .contact-form .alert {
  border: none;
  border-radius: 0;
  padding: 20px 30px;
}

.expertise-slider-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 100vh;
  border-left: 1px solid rgba(4, 4, 4, 0.82);
  border-right: 1px solid rgba(4, 4, 4, 0.82);
}

.expertise-slider-copy,
.expertise-slider-media {
  position: relative;
  min-height: 100vh;
}

.expertise-slider-copy {
  border-right: 1px solid rgba(4, 4, 4, 0.82);
}

.expertise-slide-copy {
  position: absolute;
  inset-inline: 0;
  top: 0;
  bottom: 0;
  display: grid;
  align-content: start;
  justify-items: start;
  height: min(76vh, 38rem);
  margin-block: auto;
  padding: clamp(3rem, 6vw, 6rem) clamp(2.5rem, 5vw, 5.25rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
  opacity: 0;
  visibility: hidden;
}

.expertise-slide-copy::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.expertise-slide-copy.is-active {
  opacity: 1;
  visibility: visible;
}

.expertise-slide-copy h2 {
  margin: 0 0 clamp(1.75rem, 3vw, 2.6rem);
  /* max-width: 11.5ch; */
  font-size: clamp(1rem, 3.2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: #040404;
}

.expertise-slide-copy p {
  /* max-width: 19ch; */
  margin: 0;
  font-size: clamp(1.06rem, 1.35vw, 1.15rem);
  line-height: 1.75;
  color: #040404;
}

.expertise-slider-media {
  display: grid;
  place-items: center;
  padding: clamp(2.5rem, 5vw, 4rem);
}

.expertise-media-frame {
  position: relative;
  width: min(100%, 592px);
  aspect-ratio: 592 / 684;
  overflow: hidden;
}

.expertise-slide-visual {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  clip-path: circle(0% at 0% 0%);
}

.expertise-slide-visual.is-active {
  opacity: 1;
  visibility: visible;
  clip-path: circle(75% at 50% 50%);
}

.expertise-slide-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes aboutTitleReveal {
  from {
    transform: translateY(108%);
    opacity: 0;
  }

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

@media (max-width: 991.98px) {
  .about-hero {
    min-height: auto;
  }

  .about-hero-content {
    align-items: flex-start;
    padding: 1.75rem 0 3.5rem;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-hero-copy {
    gap: 1.5rem;
  }

  .about-hero-title {
    /* max-width: 9.5ch; */
    font-size: clamp(2.9rem, 9vw, 4.6rem);
  }

  .about-hero-text {
    max-width: 100%;
    padding-top: 0;
  }

  .about-video-section {
    padding-top: 0;
  }

  .about-needs-layout {
    width: min(100%, 40rem);
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }

  .about-needs-stage {
    width: min(100%, 360px);
    justify-self: center;
    margin: 0 auto;
    min-height: 360px;
  }

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

  .expertise-hero-content {
    align-items: flex-start;
    padding: 1.75rem 0 3.5rem;
  }

  .expertise-hero-copy {
    gap: 1.5rem;
  }

  .expertise-hero-title,
  .expertise-hero-text {
    margin-left: 0;
  }

  .expertise-hero-title {
    /* max-width: 11ch; */
    font-size: clamp(3rem, 8vw, 4.5rem);
  }

  .expertise-hero-text {
    max-width: 100%;
  }

  .expertise-slider-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    min-height: auto;
  }

  .expertise-slider-copy,
  .expertise-slider-media {
    min-height: 520px;
  }

  .expertise-slider-copy {
    border-right: 1px solid rgba(4, 4, 4, 0.82);
  }

  .expertise-slide-copy {
    position: absolute;
    inset-inline: 0;
    top: 0;
    bottom: 0;
    align-content: start;
    height: min(28rem, calc(100% - 2rem));
    margin-block: auto;
    padding: 2.5rem 1.2rem 2.5rem 1rem;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
  }

  .expertise-slide-copy.is-active {
    opacity: 1;
    visibility: visible;
  }

  .expertise-slide-copy h2 {
    max-width: 12ch;
    font-size: clamp(1.6rem, 4vw, 2.15rem);
  }

  .expertise-slide-copy p {
    max-width: 24ch;
    font-size: 1rem;
    line-height: 1.6;
  }

  .expertise-slider-media {
    padding: 2rem 1.5rem;
  }

  .expertise-media-frame {
    width: min(100%, 420px);
    aspect-ratio: 420 / 430;
  }

  .expertise-slide-visual {
    position: absolute;
    inset: 0;
  }

  .contact-page {
    background-size: min(98vw, 1080px) auto;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-page-value {
    font-size: 1.75rem;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .expertise-slider-shell {
    width: min(100% - 2.5rem, 980px);
    margin: 0 auto;
  }

  .expertise-slider-grid {
    grid-template-columns: 42% 58%;
    min-height: 520px;
  }

  .expertise-slider-copy,
  .expertise-slider-media {
    min-height: 520px;
  }

  .expertise-slide-copy {
    padding: 2.25rem 1.5rem;
    height: min(30rem, calc(100% - 2rem));
  }

  .expertise-slide-copy h2 {
    max-width: 11ch;
    font-size: 2rem;
  }

  .expertise-slide-copy p {
    max-width: 25ch;
    font-size: 1rem;
    line-height: 1.58;
  }

  .expertise-slider-media {
    padding: 1.75rem;
  }

  .expertise-media-frame {
    width: min(100%, 360px);
    aspect-ratio: 360 / 390;
  }
}

@media (max-width: 575.98px) {
  .about-hero-content {
    padding: 2rem;
  }

  .about-hero-kicker {
    font-size: 1.35rem;
  }

  .about-hero-title {
    /* max-width: 10ch; */
    font-size: clamp(2.35rem, 12vw, 3.35rem);
    line-height: 0.99;
  }

  .about-hero-text p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .about-video-frame {
    transform: scale(0.88);
  }

  .about-needs-section {
    padding: 3.5rem 0;
  }

  .about-needs-title {
    font-size: clamp(2.6rem, 14vw, 4rem);
    line-height: 0.96;
  }

  .about-needs-stage {
    width: min(100%, 280px);
    justify-self: center;
    margin: 0 auto;
    min-height: 280px;
  }

  .about-needs-section,
  .about-needs-section * {
    cursor: auto;
  }

  .about-needs-cursor {
    display: none;
  }

  .about-needs-orb {
    width: min(64vw, 240px);
  }

  .about-needs-orb-label {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .about-needs-orb-label-active {
    font-size: clamp(1.65rem, 8.5vw, 2.35rem);
  }

  .expertise-hero-content {
    padding: 2rem;
  }

  .expertise-hero-kicker {
    font-size: 1.35rem;
  }

  .expertise-hero-title {
    /* max-width: 9.5ch; */
    font-size: clamp(2.4rem, 12vw, 3.35rem);
    line-height: 0.99;
  }

  .expertise-hero-text {
    font-size: 1rem;
    line-height: 1.68;
  }

  .expertise-slider-shell {
    display: none;
  }

  .expertise-mobile-slider {
    display: block;
    padding: 2rem;
  }

  .expertise-mobile-controls {
    display: flex;
    gap: 0.9rem;
    margin-bottom: 1rem;
  }

  .expertise-mobile-arrow {
    width: 2rem;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 1px solid rgba(4, 4, 4, 0.58);
    border-radius: 50%;
    background: transparent;
    color: #040404;
    padding: 0;
    font-size: 0.95rem;
  }

  .expertise-mobile-card {
    display: grid;
    gap: 1.4rem;
    transition:
      opacity 0.32s ease,
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }

  .expertise-mobile-card.is-transitioning {
    opacity: 0;
    transform: translateX(-18px);
  }

  .expertise-mobile-title {
    margin: 0;
    /* max-width: 10ch; */
    font-size: clamp(1.85rem, 9vw, 2.4rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.045em;
    color: #040404;
  }

  .expertise-mobile-figure {
    margin: 0;
  }

  .expertise-mobile-image {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1.12;
    object-fit: cover;
  }

  .expertise-mobile-text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #040404;
  }

  .contact-page {
    background-size: min(138vw, 760px) auto;
  }

  .contact-page-content {
    padding: 2rem;
  }

  .contact-page-kicker {
    font-size: 1.35rem;
  }

  .contact-page-value {
    font-size: 1.15rem;
    line-height: 1.55;
  }

  .contact-page-form {
    gap: 1.2rem;
  }

  .contact-form-action {
    justify-content: flex-start;
  }
}

.forte-section {
  position: relative;
  background: #101c49;
  padding: clamp(4.5rem, 7vw, 7rem) 0 clamp(4.5rem, 7vw, 6.5rem);
  overflow: hidden;
}

.forte-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/forte-vector.png") right top / min(92%, 1100px)
    auto no-repeat;
  opacity: 0.72;
  pointer-events: none;
  z-index: 0;
}

.forte-wrap {
  position: relative;
  z-index: 1;
}

.forte-grid {
  position: relative;
  min-height: 820px;
}

.forte-title-block {
  position: absolute;
  top: 0;
  left: 40%;
  width: min(55vw, 790px);
  z-index: 3;
}

.forte-title {
  margin: 0;
  color: #f6c313;
  font-size: clamp(3.6rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.forte-media {
  position: absolute;
  left: 5%;
  top: 235px;
  width: min(54vw, 592px);
  margin: 0;
  overflow: hidden;
  z-index: 1;
}

.forte-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.forte-copy {
  position: absolute;
  right: 3%;
  bottom: -14px;
  width: min(31vw, 450px);
  z-index: 2;
}

.forte-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.98);
  font-size: 1.02rem;
  line-height: 1.72;
}

@media (max-width: 1199.98px) {
  .forte-section::before {
    background-size: min(108%, 980px) auto;
    background-position: right -5rem top;
  }

  .forte-grid {
    min-height: 740px;
  }

  .forte-title-block {
    left: 55%;
    width: min(38vw, 440px);
  }

  .forte-title {
    font-size: clamp(3rem, 5vw, 4.2rem);
  }

  .forte-media {
    left: 2%;
    top: 235px;
    width: min(52vw, 520px);
  }

  .forte-copy {
    right: 0;
    bottom: 30px;
    width: min(34vw, 390px);
  }
}

@media (max-width: 991.98px) {
  .forte-section {
    padding: 4rem 0;
  }

  .forte-section::before {
    background-size: min(135%, 900px) auto;
    background-position: right -10rem top -1rem;
    opacity: 0.62;
  }

  .forte-grid {
    min-height: auto;
    display: grid;
    gap: 1.5rem;
    align-items: start;
  }

  .forte-title-block,
  .forte-media,
  .forte-copy {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .forte-title-block {
    max-width: 77ch;
    margin-left: auto;
    margin-right: 0;
    z-index: 3;
  }

  .forte-title {
    font-size: clamp(2.6rem, 7vw, 3.75rem);
    line-height: 1.03;
  }

  .forte-media {
    width: min(100%, 620px);
    margin-top: -3rem;
    margin-left: 60px;
    z-index: 1;
  }

  .forte-copy {
    width: min(100%, 460px);
    margin-left: auto;
    margin-top: -1rem;
  }
}

@media (max-width: 575.98px) {
  .forte-section {
    padding: 3rem 0 3.5rem;
  }

  .forte-section::before {
    background-size: 185% auto;
    background-position: right -12rem top;
    opacity: 0.48;
  }

  .forte-grid {
    gap: 1rem;
  }

  .forte-title-block {
    max-width: 40.8ch;
    top: 45px;
  }

  .forte-title {
    font-size: clamp(2.15rem, 10vw, 2.95rem);
    line-height: 1.02;
  }

  .forte-copy p {
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .forte-media {
    width: 100%;
    margin-top: -1rem;
    margin-left: auto;
  }

  .forte-copy {
    width: 100%;
    margin-top: 0;
  }
}

.source-section {
  position: relative;
  background: #e8e8ed;
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  overflow: hidden;
  cursor: none;
}

.source-title {
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  font-weight: 400;
  color: #0d0d12;
}

.source-marquee {
  overflow: hidden;
  width: 100%;
}

.source-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 94px;
  height: 94px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  border: 1.5px solid #0d1836;
  border-radius: 50%;
  background: rgba(232, 232, 237, 0.78);
  color: #0d1836;
  font-size: 0.95rem;
  line-height: 1.15;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  z-index: 40;
}

.source-cursor.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.source-cursor span {
  display: block;
}

.source-section a,
.source-section button,
.source-section [data-marquee],
.source-section .source-card {
  cursor: none;
}

.source-track {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: max-content;
  will-change: transform;
  transform: translateZ(0);
}

.source-card {
  flex: 0 0 320px;
  width: 320px;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.source-card-media {
  margin: 0 0 0.85rem;
  aspect-ratio: 0.82 / 1;
  overflow: hidden;
  background: #d7d8dd;
}

.source-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.source-card-title {
  margin: 0;
  font-size: 1.04rem;
  font-weight: 400;
  line-height: 1.35;
  color: #202027;
}

@media (max-width: 991.98px) {
  .source-section {
    padding: 3rem 0;
    cursor: auto;
  }

  .source-track {
    gap: 18px;
  }

  .source-card {
    flex-basis: 280px;
    width: 280px;
  }

  .source-card-title {
    font-size: 0.98rem;
  }

  .source-cursor {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .source-section {
    padding: 2.5rem 0;
  }

  .source-track {
    gap: 14px;
  }

  .source-card {
    flex-basis: 230px;
    width: 230px;
  }

  .source-title {
    margin-bottom: 1.5rem;
    font-size: 1.55rem;
  }

  .source-card-title {
    font-size: 0.92rem;
  }
}

.matters-section {
  background: #ffffff;
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.matters-grid {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(400px, 1fr) minmax(
      280px,
      420px
    );
  align-items: start;
  column-gap: clamp(2rem, 4vw, 3rem);
}

.matters-title {
  margin: 0;
  font-size: clamp(0.85rem, 1.5vw, 1.8rem);
  font-weight: 500;
  line-height: 1.08;
  color: #000000;
}

.matters-text {
  margin: 0;
  max-width: 50ch;
  font-size: clamp(0.875rem, 14px, 1.18rem);
  line-height: 1.72;
  color: #000000;
}

.matters-media {
  margin: 0;
  overflow: hidden;
  justify-self: end;
}

.matters-media img {
  display: block;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 0.96 / 1;
  object-fit: cover;
}

@media (max-width: 1199.98px) {
  .matters-grid {
    grid-template-columns: minmax(220px, 300px) minmax(280px, 1fr) minmax(
        240px,
        360px
      );
    column-gap: 2rem;
  }

  .matters-title {
    font-size: clamp(2rem, 3vw, 2.7rem);
  }
}

@media (max-width: 991.98px) {
  .matters-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 2rem;
  }

  .matters-title-col {
    grid-column: 1 / 2;
  }

  .matters-copy-col {
    grid-column: 2 / 3;
  }

  .matters-media {
    grid-column: 2 / 3;
    justify-self: start;
    width: 100%;
  }

  .matters-media img {
    max-width: 100%;
    width: min(100%, 360px);
  }
}

@media (max-width: 575.98px) {
  .matters-section {
    padding: 3rem 0;
  }

  .matters-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .matters-title-col,
  .matters-copy-col,
  .matters-media {
    grid-column: auto;
  }

  .matters-title {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
  }

  .matters-text {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .matters-media {
    justify-self: stretch;
  }

  .matters-media img {
    width: 100%;
    max-width: 100%;
  }
}
.globe-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.globe-wrapper iframe {
  width: 500px;
  height: 500px;
  border: none;
  background: transparent;
}

@media (max-width: 575.98px) {
  .globe-wrapper iframe {
    width: 320px;
    height: 320px;
  }
}

.site-footer {
  background: var(--color-primary-strong);
  color: #ffffff;
  padding: clamp(2rem, 4vw, 2.5rem) 0
    calc(1.75rem + env(safe-area-inset-bottom, 0px));
  margin-bottom: calc(-1 * env(safe-area-inset-bottom, 0px));
}

.site-footer a,
.site-footer p,
.site-footer span,
.site-footer button {
  color: #ffffff;
}

.site-footer-top {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
}

.site-footer-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.site-footer-nav a {
  font-weight: 400;
  font-size: 1rem;
}

.site-footer-nav a:last-child {
  margin-left: auto;
}

.site-footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: end;
  gap: 0rem;
  padding: clamp(5rem, 18vw, 15rem) 0 1.5rem;
}

.site-footer-brand {
  position: relative;
  display: inline-block;
  z-index: 1;
  font-size: clamp(4rem, 13vw, 10rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: transparent;
  background: linear-gradient(
    180deg,
    rgba(198, 209, 240, 0.56) 0%,
    rgb(13, 24, 54, 0.2) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
}

.site-footer-brand::before {
  content: "";
  position: absolute;
  left: 35%;
  top: -19.2rem;
  width: 60%;
  /* width: clamp(110px, 12vw, 170px); */
  aspect-ratio: 1;
  background: url("../images/footer-watermark.png") center / contain no-repeat;
  opacity: 0.85;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.site-footer-info {
  display: grid;
  gap: 1.6rem;
}

.site-footer-row {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 1rem;
  align-items: start;
}

.site-footer-label {
  white-space: nowrap;
}

.site-footer-row a:hover,
.site-footer-nav a:hover {
  color: var(--color-secondary);
}

.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.85);
}

.site-footer-copy {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0;
  border: 0;
  background: transparent;
  text-transform: uppercase;
  font-size: 0.94rem;
  cursor: pointer;
}

.back-to-top:hover {
  color: #f4d557;
}

@media (max-width: 991.98px) {
  .site-footer-main {
    grid-template-columns: 1fr;
    padding: 3.5rem 0 1.5rem;
  }

  .site-footer-brand {
    font-size: clamp(3.6rem, 16vw, 7rem);
  }

  .site-footer-brand::before {
    top: -0.9rem;
  }

  .site-footer-nav {
    justify-content: flex-start;
  }

  .site-footer-nav a:last-child {
    margin-left: 0;
  }
}

@media (max-width: 575.98px) {
  .site-footer-top {
    padding-bottom: 1rem;
  }

  .site-footer-nav {
    gap: 0.85rem 1.5rem;
  }

  .site-footer-nav a {
    font-size: 0.98rem;
  }

  .site-footer-main {
    gap: 1.5rem;
    padding: 2.5rem 0 1.25rem;
  }

  .site-footer-brand::before {
    width: 96px;
    top: -0.65rem;
  }

  .site-footer-info {
    gap: 1.2rem;
  }

  .site-footer-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

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

  .back-to-top {
    gap: 0.65rem;
  }
}
