/*
Theme Name: Futad
Theme URI: https://example.com/
Author: Codex
Description: Custom theme matching the Futad homepage design with dynamic sections.
Version: 1.0.0
Text Domain: futad
*/

@font-face {
  font-family: 'Gilroy-Regular';
  src: url('assets/fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy-Medium';
  src: url('assets/fonts/Gilroy-Medium.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy-SemiBold';
  src: url('assets/fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('assets/fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('assets/fonts/Gilroy-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('assets/fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0a0a0b;
  --bg-2: #0f1113;
  --text: #f2f2f2;
  --muted: #b8b8b8;
  --accent: #16f5b0;
  --accent-2: #2a7bff;
  --card: #151618;
  --border: #1f2226;
  --shadow: 0 12px 30px rgba(0,0,0,0.55);
  --futad-font: 'Gilroy', 'Gilroy-Regular', Arial, sans-serif;
  --futad-font-regular: 'Gilroy-Regular', 'Gilroy', Arial, sans-serif;
  --futad-font-medium: 'Gilroy-Medium', 'Gilroy', Arial, sans-serif;
  --futad-font-semibold: 'Gilroy-SemiBold', 'Gilroy', Arial, sans-serif;
  --futad-gradient-mesh-width: 1443px;
  --futad-gradient-mesh-height: 795px;
}

@keyframes futad-soft-pulse {
  0%, 100% { box-shadow: 0 0 0 rgba(123, 97, 255, 0); }
  50% { box-shadow: 0 0 24px rgba(123, 97, 255, 0.28); }
}

@keyframes futad-partners-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes futad-scroll-cue-bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

@keyframes futad-scroll-chevron {
  0%, 100% {
    opacity: 0.55;
    transform: rotate(45deg) translate(0, 0);
  }
  50% {
    opacity: 1;
    transform: rotate(45deg) translate(3px, 3px);
  }
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--futad-font);
  background: radial-gradient(1200px 600px at 50% -200px, #1a1f27 0%, #0a0a0b 60%) no-repeat, var(--bg);
  color: var(--text);
  line-height: 1.6;
}
html,
body {
  background: #000000;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button,
input,
select,
textarea {
  font-family: inherit;
}

.futad-arrow {
  width: 26px;
  height: 22px;
  display: inline-block;
  flex: 0 0 auto;
  overflow: visible;
  color: currentColor;
  vertical-align: middle;
}

.futad-arrow--left {
  transform: rotate(180deg);
}

.futad-arrow--down {
  transform: rotate(90deg);
}

.futad-intro-loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  opacity: 1;
  visibility: visible;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.futad-intro-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.futad-intro-loader__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000000;
}

.futad-animations-ready .futad-animate {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--futad-delay, 0ms);
}

.futad-animations-ready .futad-animate.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.futad-animations-ready .futad-text-animate {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  filter: blur(5px);
  transition:
    opacity 640ms ease,
    transform 640ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 640ms ease;
  transition-delay: var(--futad-text-delay, 0ms);
}

.futad-animations-ready .futad-text-animate.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.futad-animations-ready .futad-animate img {
  transition:
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 700ms ease;
}

a,
button,
.futad-button,
.footer-message,
.nav-contact {
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease;
}

.futad-button:hover,
.futad-button:focus-visible,
.footer-message:hover,
.footer-message:focus-visible,
.nav-contact:hover,
.nav-contact:focus-visible,
.contact-message-form__button:hover,
.contact-message-form__button:focus-visible,
.not-found-page__button:hover,
.not-found-page__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(123, 97, 255, 0.28);
}

.home-main-hero__panel,
.showreel-page-hero__panel,
.home-hero__panel {
  animation: none;
}

.service-landing__card,
.showreel-card,
.core-service-card,
.clients-partners-logo,
.home-team-card,
.home-drive-card,
.insights-row__image,
.media-detail-gallery__item,
.about-story-cards__item,
.about-metrics__image {
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    opacity 260ms ease;
}

.service-landing__card:hover,
.showreel-card:hover,
.core-service-card:hover,
.clients-partners-logo:hover,
.home-team-card:hover,
.home-drive-card:hover,
.media-detail-gallery__item:hover,
.about-story-cards__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 46px rgba(0, 198, 255, 0.12);
}

.service-landing__card:hover img,
.showreel-card:hover img,
.core-service-card:hover img,
.home-team-card:hover img,
.home-drive-card:hover img,
.media-detail-gallery__item:hover img,
.about-story-cards__item:hover img,
.insights-row__image:hover img,
.about-metrics__image:hover img {
  transform: scale(1.035);
}

.clients-partners-logo:hover {
  background: transparent;
  box-shadow: none;
  opacity: 1;
  filter: brightness(1.18);
}

.home .home-main-hero__panel:hover,
.page-template-page-about-us .home-hero__panel:hover,
.page-template-page-showreel .showreel-page-hero__panel:hover {
  transform: none;
  box-shadow: none;
  filter: none;
}

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

  .futad-animate {
    opacity: 1 !important;
    transform: none !important;
  }

  .futad-text-animate {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

.container {
  width: min(var(--futad-home-width, 1280px), calc(100vw - var(--futad-home-gutter, 48px)));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: none;
  background: #000000;
  border-bottom: 1px solid transparent;
}
.header-inner {
  padding: 48px 0 0;
  display: flex;
  justify-content: center;
}
.site-branding {
  font-weight: 700;
  letter-spacing: 1px;
}
.nav-shell {
  width: min(var(--futad-nav-width, 1280px), calc(100vw - var(--futad-home-gutter, 48px)));
  height: 112px;
  display: grid;
  grid-template-columns: 212px 1fr;
  grid-template-rows: 1fr 1fr;
  border-radius: 24px;
  border: 2px solid #282828;
  background: #000000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.55);
  overflow: hidden;
}
.nav-logo {
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 28px;
  border-right: 1px solid #2a2a2a;
  font-weight: 700;
  font-size: 22px;
}
.nav-logo a { letter-spacing: 1px; }
.nav-logo img {
  max-height: 74px;
  width: auto;
}
.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border-bottom: 1px solid #2a2a2a;
  height: 56px;
}
.nav-top-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  margin: 0;
  padding: 0;
  font-size: 15px;
  text-transform: none;
}
.primary-nav a { color: #cfcfcf; }
.nav-toggle {
  width: 212px;
  height: 56px;
  border: 0;
  border-left: 1px solid #2a2a2a;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 48px;
  height: 1px;
  background: #cfcfcf;
  border-radius: 2px;
}
.nav-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 56px;
}
.nav-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
  font-size: 15px;
  color: #cfcfcf;
}
.nav-action + .nav-action {
  border-left: 1px solid #2a2a2a;
}
.nav-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}
.nav-icon svg {
  width: 16px;
  height: 16px;
  fill: #cfcfcf;
}

.section {
  padding: 90px 0;
}
.about-section {
  padding: 0;
}
.about-frame {
  width: min(var(--futad-home-width, 1280px), calc(100vw - var(--futad-home-gutter, 48px)));
  height: auto;
  display: flex;
  align-items: center;
  padding: 0 80px 0 0;
  margin: 0 auto;
}
.about-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 349px 853px;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
.about-title {
  width: 349px;
  height: 294px;
}
.about-title h2 {
  margin: 0;
  font-size: 100px;
  font-weight: 800;
  line-height: 96px;
  letter-spacing: -8px;
  text-align: right;
}
.about-text p {
  margin: 0;
  max-width: 783px;
  font-size: 34px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -1px;
  color: var(--text);
}
.about-text {
  width: 853px;
  height: 334px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  gap: 64px;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  margin: 0 0 24px 0;
}
.section-kicker {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.muted {
  color: var(--muted);
  font-size: 13px;
}

.hero {
  padding: 90px 0;
  text-align: center;
}
.hero .container {
  width: min(var(--futad-home-width, 1280px), calc(100vw - var(--futad-home-gutter, 48px)));
}
.hero-title {
  font-size: 100px;
  font-weight: 700;
  line-height: 94px;
  letter-spacing: -9px;
  max-width: 1184px;
  min-height: 188px;
  margin: 0 auto;
}
.hero-bars {
  width: 1166px;
  height: 638px;
  margin: 18px auto 0;
  background: url('https://futadwebsite.bizzcard.ai//wp-content/uploads/bars/bar.png') center/contain no-repeat;
}
.hero-scroll {
  margin-top: 72px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #d0d0d0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero-scroll-icon {
  width: 22px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-scroll-icon svg {
  width: 22px;
  height: 28px;
  display: block;
  color: #d0d0d0;
}
.hero-line {
  display: block;
}
.hero-accent {
  color: var(--accent);
}
.hero-subtitle {
  max-width: 720px;
  margin: 0 auto 28px;
  color: var(--muted);
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--text);
  color: #0a0a0b;
  font-weight: 600;
}
.hero-glow {
  height: 160px;
  margin-top: 30px;
  background: linear-gradient(180deg, rgba(22,245,176,0.35), rgba(42,123,255,0.0));
  border-radius: 999px;
  filter: blur(6px);
  opacity: 0.75;
}

.split {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 1fr;
}

.services-list {
  display: grid;
  gap: 16px;
}
.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  border-bottom: 1px solid #282828;
}

.service-types-archive {
  padding: 120px 0 90px;
}
.service-types-archive__title {
  margin: 0 0 28px;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
}
.service-types-archive__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.service-types-archive__card {
  border: 2px solid #282828;
  border-radius: 24px;
  background: #000;
  padding: 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.service-types-archive__card:hover {
  border-color: var(--service-accent);
  transform: translateY(-3px);
}
.service-types-archive__card h2 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.service-types-archive__card p {
  margin: 0;
  color: #bdbdbd;
  font-size: 18px;
  line-height: 1.5;
}

.service-landing {
  background: #000;
  overflow-x: hidden;
}
.service-landing__hero {
  padding: 90px 0 48px;
}
.service-landing__title {
  margin: 0;
  max-width: 1184px;
  font-size: clamp(48px, 9vw, 100px);
  line-height: 0.94;
  letter-spacing: -0.08em;
  text-align: center;
}
.service-landing__title .accent { color: var(--service-accent); }
.service-landing__subtitle {
  max-width: 760px;
  margin: 24px auto 0;
  font-size: clamp(18px, 2.1vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #f2f2f2;
  text-align: center;
}
.service-landing__hero-image {
  margin: 38px auto 0;
  max-width: 1200px;
  border-radius: 24px;
  overflow: hidden;
}
.service-landing__hero-image img {
  width: 100%;
  height: auto;
  display: block;
}
.service-landing__intro-blurb-section {
  background: #000;
  padding: 0;
}
.service-landing__intro-blurb-wrap {
  width: min(var(--futad-home-width, 1280px), calc(100vw - var(--futad-home-gutter, 48px)));
  min-height: 334px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-landing__intro-blurb-content {
  width: min(1144px, 100%);
  min-height: 334px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 64px;
}
.service-landing__intro-blurb-box {
  width: 260px;
  height: 260px;
  border-radius: 34px;
  background: #cfcfcf;
  flex: 0 0 auto;
}
.service-landing__intro-blurb {
  margin: 0;
  width: min(783px, 100%);
  color: #f2f2f2;
  font-size: 34px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -1px;
}
.service-landing__intro,
.service-landing__why,
.service-landing__cta,
.service-landing__process,
.service-landing__action {
  padding: 90px 0;
}
.service-landing__why {
  padding-top: 32px;
}
.service-landing__process {
  padding-top: 36px;
}
.service-landing__action {
  padding-top: 56px;
  padding-bottom: 56px;
}
.service-landing__action .container,
.service-landing__cta .container,
.service-landing__process .container {
  width: min(1144px, 92vw);
  margin: 0 auto;
}
.service-landing__intro {
  padding-top: 56px;
}
.service-landing__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.service-landing__split--what-we-do {
  display: block;
  margin-bottom: 72px;
}
.service-landing__what-we-do {
  width: min(1184px, 100%);
  min-height: 94px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  font-family: var(--futad-font);
  font-style: normal;
  font-weight: 700;
  font-size: 90px !important;
  line-height: 94px;
  letter-spacing: -4px;
  color: #fff;
}
.service-landing__split h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.service-landing__why-title {
  width: min(447px, 100%);
  margin: 0;
  font-family: var(--futad-font);
  font-style: normal;
  font-weight: 600;
  font-size: 64px;
  line-height: 69px;
  letter-spacing: -1px;
  color: #ffffff;
}
.service-landing__why-title-brand {
  display: block;
  color: var(--why-title-accent, #16f5b0);
}
.service-landing__subheading {
  margin: 0;
  width: min(447px, 100%);
  font-size: 59px;
  font-weight: 600;
  line-height: 69px;
  letter-spacing: -1px;
  color: #fff;
}
.service-landing__split--capabilities {
  width: min(1144px, 100%);
  margin: 0 auto;
  grid-template-columns: 447px 624px;
  justify-content: space-between;
  align-items: start;
  gap: 32px;
}
.service-landing__split--why {
  width: min(1144px, 100%);
  margin: 0 auto;
  grid-template-columns: 447px 624px;
  justify-content: space-between;
  align-items: start;
  gap: 32px;
}
.service-landing__content,
.service-landing__content p {
  width: 624px;
  max-width: 100%;
  font-size: 29px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -1px;
  margin: 0;
  color: #fff;
}
.service-landing__portfolio {
  padding: 40px 0 100px;
}
.service-landing .services-title-text {
  color: var(--service-accent);
}
.service-landing__portfolio-heading {
  width: min(1226px, 100%);
  min-height: 145px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.service-landing__portfolio-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: scaleX(-1);
}
.service-landing__portfolio-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service-landing__portfolio-title {
  margin: 0;
  display: block;
  width: min(900px, 100%);
  min-height: 145px;
  font-size: 64px;
  line-height: 69px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -1px;
  color: #FFFFFF;
  white-space: normal;
}
.service-landing__center-title {
  margin: 0 0 26px;
  text-align: center;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.service-landing__cards {
  width: min(1144px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: stretch;
  gap: 32px;
}
.service-landing__cards--slider {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 6px 14px 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.service-landing__cards--slider::-webkit-scrollbar {
  display: none;
}
.service-landing__cards--slider .service-landing__card {
  flex: 0 0 420px;
  max-width: 86vw;
  scroll-snap-align: start;
}
.service-landing__cards--slider .service-landing__card-image {
  height: 513px;
  aspect-ratio: auto;
  overflow: hidden;
}
.service-landing__cards--slider .service-landing__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.service-landing__cards--slider .service-landing__card-info {
  width: 100%;
  max-width: 100%;
  min-height: 114px;
  height: auto;
  box-sizing: border-box;
  padding-left: 28px;
  padding-right: 28px;
}
.service-landing__cards--slider .service-landing__card-info h3 {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.service-landing--engagement.service-landing--cards-slider .service-landing__cards--slider .service-landing__card {
  flex: 0 0 577px;
  width: 577px;
  max-width: 577px;
  height: 726px;
  position: relative;
  border-radius: 36px;
  border: 0;
  background: #282828;
}
.service-landing--engagement .service-landing__cards--slider {
  gap: 32px;
}
.service-landing--engagement .service-landing__cards--slider .service-landing__card-image {
  width: 577px;
  height: 726px;
  aspect-ratio: auto;
  background: #282828;
}
.service-landing--engagement .service-landing__cards--slider .service-landing__card-image img {
  width: 588px;
  height: 784px;
  max-width: none;
  margin-left: -5.5px;
  margin-top: -186px;
  object-fit: cover;
}
.service-landing--engagement .service-landing__cards--slider .service-landing__card-placeholder {
  width: 577px;
  height: 726px;
  background: #282828;
}
.service-landing--engagement .service-landing__cards--slider .service-landing__card-info {
  position: absolute;
  left: 0;
  top: 598px;
  width: 577px;
  height: 128px;
  z-index: 4;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 12px;
  background: linear-gradient(90deg, #0C1C44 0%, #3B72FF 100%);
  border-radius: 0 0 36px 36px;
}
.service-landing--engagement .service-landing__cards--slider .service-landing__card-info h3 {
  margin: 0;
  width: 420px;
  flex: 0 0 auto;
  height: 69px;
  font-family: var(--futad-font);
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 69px;
  text-align: center;
  letter-spacing: -1px;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.service-landing--engagement .service-landing__cards--slider .service-landing__card-info::after {
  content: "";
  width: 18px;
  height: 18px;
  border-top: 3px solid #FFFFFF;
  border-right: 3px solid #FFFFFF;
  transform: rotate(45deg);
  margin-left: 0;
  flex: none;
}
.service-landing--engagement .service-landing__cards--slider .service-landing__card-info p {
  display: none;
}
.service-landing--engagement .service-landing__portfolio .service-landing__cards {
  counter-reset: engagement-step;
  width: min(1220px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 32px;
}
.service-landing--engagement .service-landing__portfolio .service-landing__card {
  counter-increment: engagement-step;
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  min-height: 266px;
  border-radius: 20px;
  border: 2px solid rgba(16, 180, 209, 0.5);
  background: linear-gradient(99.99deg, #0A1C26 0.64%, #0F192C 102.77%);
}
.service-landing--engagement .service-landing__portfolio .service-landing__cards--slider .service-landing__card {
  flex: 0 0 380px;
  width: 380px;
  max-width: 86vw;
  height: 266px;
  min-height: 266px;
  border-radius: 20px;
  border: 2px solid rgba(16, 180, 209, 0.5);
  background: linear-gradient(99.99deg, #0A1C26 0.64%, #0F192C 102.77%);
}
.service-landing--engagement .service-landing__portfolio .service-landing__card-image,
.service-landing--engagement .service-landing__portfolio .service-landing__card-placeholder {
  display: none;
}
.service-landing--engagement .service-landing__portfolio .service-landing__card-info {
  position: static;
  width: 100%;
  height: 100%;
  min-height: 266px;
  padding: 31px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 21px;
  background: transparent;
  border-radius: 0;
}
.service-landing--engagement .service-landing__portfolio .service-landing__card-info::before {
  content: none;
}
.service-landing--engagement .service-landing__portfolio .service-landing__card-info::after {
  display: none;
}
.service-landing--engagement .service-landing__portfolio .service-landing__card-icon-media {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  overflow: hidden;
  background: #093B4B;
  flex: none;
}
.service-landing--engagement .service-landing__portfolio .service-landing__card-icon-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-landing--engagement .service-landing__portfolio .service-landing__card-info h3 {
  width: 100%;
  max-width: 324px;
  height: auto;
  margin: 0;
  font-family: var(--futad-font);
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 31px;
  letter-spacing: 0;
  color: #FFFFFF;
  text-align: left;
  white-space: normal;
  overflow: visible;
}
.service-landing--engagement .service-landing__portfolio .service-landing__card-info h3::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  margin-bottom: 21px;
  border-radius: 12px;
  background-color: #093B4B;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 2 8 4.5v9L12 20l-8-4.5v-9L12 2Z'/%3E%3Cpath d='M12 2v9m8-4.5-8 4.5m0 0L4 6.5'/%3E%3C/svg%3E");
}
.service-landing--engagement .service-landing__portfolio .service-landing__card-info.has-featured-icon h3::before {
  display: none;
}
.service-landing--engagement .service-landing__portfolio .service-landing__card-info p {
  display: block;
  width: 100%;
  max-width: 324px;
  margin: 0;
  font-family: var(--futad-font);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -1px;
  color: #BDBDBD;
}
.service-landing__swipe-hint {
  margin: 8px 0 0;
  text-align: center;
  color: #fff;
  font-size: 18px;
  letter-spacing: -0.02em;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.service-landing__swipe-hint::after {
  content: "";
  width: 26px;
  height: 22px;
  display: inline-block;
  margin-left: 8px;
  background: var(--service-accent);
  vertical-align: middle;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='22' viewBox='0 0 26 22' fill='none'%3E%3Cpath d='M1 11H24.372M24.372 11L15.372 2M24.372 11L15.372 20' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='22' viewBox='0 0 26 22' fill='none'%3E%3Cpath d='M1 11H24.372M24.372 11L15.372 2M24.372 11L15.372 20' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.service-landing__card {
  border: 2px solid #282828;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 0;
}
.service-landing__card-image {
  background: #282828;
  width: 100%;
  height: 513px;
  aspect-ratio: auto;
  overflow: hidden;
}
.service-landing__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-landing__card-placeholder {
  width: 100%;
  height: 100%;
  background: #343434;
}
.service-landing__card-info {
  width: 624px;
  max-width: 100%;
  height: 114px;
  min-height: 114px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  background: linear-gradient(90deg, #6353A2 0%, #03B3DF 100%);
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}
.service-landing__card-info h3 {
  margin: 0;
  width: 544px;
  max-width: 100%;
  height: 34px;
  font-family: var(--futad-font);
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: -0.6px;
  color: #FFFFFF;
  text-align: center;
}
.service-landing__card-info p {
  margin: 0;
  color: #bdbdbd;
}
.service-landing__card-icon-media {
  display: none;
}
.service-landing__empty {
  margin: 20px 0 0;
  color: #bdbdbd;
}
.service-landing__why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service-landing__why-item h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  position: relative;
  padding-left: 28px;
}
.service-landing__why-item h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #d9d9d9;
}
.service-landing__why-item p {
  margin: 6px 0 0 28px;
  color: #fff;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.35;
}
.service-landing__process-grid {
  width: min(807px, 100%);
  margin: 24px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.service-landing__process-description {
  width: min(760px, 100%);
  margin: 14px auto 0;
  color: #ffffff;
  text-align: center;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.2px;
}
.service-landing__process-item {
  box-sizing: border-box;
  width: 253px;
  min-height: 211px;
  border: 1.5px solid #0B5467;
  border-radius: 15px;
  background: #12121A;
  padding: 20px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  min-width: 0;
}
.service-landing__process-step {
  margin: 0;
  width: 100%;
  color: #03B3DF;
  font-family: var(--futad-font);
  font-style: normal;
  font-weight: 600;
  font-size: 10px;
  line-height: 28px;
  letter-spacing: -1px;
  text-transform: uppercase;
}
.service-landing__process-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(308.48deg, rgba(99, 83, 162, 0.2) -15.57%, rgba(3, 179, 223, 0.2) 87.18%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-landing__process-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #03B3DF;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-landing__process-item-title {
  margin: 0;
  color: #ffffff;
  font-family: var(--futad-font);
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -1px;
}
.service-landing__process-item-description {
  margin: 0;
  color: #ffffff;
  font-family: var(--futad-font);
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: -1px;
}
.service-landing__process-grid--emerging {
  width: 100%;
  max-width: 100%;
  margin-top: 56px;
}
.service-landing__process-flow--emerging {
  width: 100%;
  max-width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.service-landing__process-flow-row--top,
.service-landing__process-flow-row--bottom {
  display: grid;
  align-items: start;
}
.service-landing__process-flow-row--top {
  grid-template-columns: minmax(0, 1fr) 38px minmax(0, 1fr) 38px minmax(0, 1fr);
  column-gap: 10px;
  width: 100%;
  justify-content: space-between;
}
.service-landing__process-item--emerging {
  width: 100%;
  max-width: 340px;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  gap: 0;
}
.service-landing__process-item-title--emerging {
  width: 100%;
  margin: 0;
  font-weight: 600;
  font-size: 34px;
  line-height: 40px;
  letter-spacing: -1px;
}
.service-landing__process-item-description--emerging {
  width: 325px;
  margin: 14px 0 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -1px;
}
.service-landing__process-flow-arrow {
  color: #b11bff;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  margin-top: 0;
  transform-origin: center;
}

.service-landing__process-flow-arrow .futad-arrow {
  width: 38px;
  height: 32px;
}
.service-landing__process-flow-arrow-down-wrap {
  display: flex;
  justify-content: flex-end;
  padding-right: 120px;
  margin: -4px 0 2px;
}
.service-landing__process-flow-arrow--down {
  transform: rotate(90deg);
}
.service-landing__process-flow-arrow--left {
  transform: rotate(180deg);
  justify-self: center;
  align-self: center;
  margin-top: 0;
}
.service-landing__process-flow-row--bottom {
  width: 100%;
  margin-left: 0;
  grid-template-columns: minmax(0, 1fr) 38px minmax(0, 1fr);
  column-gap: 18px;
  justify-content: end;
}
.service-landing__process-flow-row--bottom .service-landing__process-item--emerging {
  max-width: 420px;
}
.service-landing__process-flow-row--bottom .service-landing__process-item-title--emerging {
  white-space: nowrap;
}
.service-landing .service-landing__process-grid--emerging {
  overflow-x: clip;
}
.service-landing__action-title {
  margin: 0;
  width: min(704px, 100%);
  font-family: var(--futad-font);
  font-style: normal;
  font-weight: 600;
  font-size: 62px;
  line-height: 66px;
  letter-spacing: -1px;
  color: #ffffff;
}
.service-landing__action-subtitle {
  margin: 2px 0 0;
  width: min(704px, 100%);
  font-family: var(--futad-font);
  font-style: normal;
  font-weight: 600;
  font-size: 62px;
  line-height: 66px;
  letter-spacing: -1px;
  color: var(--service-accent, #0BDC9E);
}
.service-landing__action-description {
  margin: 14px 0 0;
  width: min(560px, 100%);
  color: #ffffff;
  font-family: var(--futad-font);
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.1px;
  text-wrap: balance;
}
.service-landing__action-top-title {
  margin: 0;
  width: min(704px, 100%);
  font-family: var(--futad-font);
  font-style: normal;
  font-weight: 600;
  font-size: 62px;
  line-height: 66px;
  letter-spacing: -1px;
  color: #ffffff;
}
.service-landing__action-top-subtitle {
  margin: 2px 0 50px;
  width: min(704px, 100%);
  font-family: var(--futad-font);
  font-style: normal;
  font-weight: 600;
  font-size: 62px;
  line-height: 66px;
  letter-spacing: -1px;
  color: var(--service-accent, #0BDC9E);
}
.service-landing__cards--action {
  margin-top: 14px;
  margin-bottom: 120px;
}
.service-landing__cta h2:not(.service-landing__cta-main):not(.cta-title) {
  margin: 0;
  max-width: 760px;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.service-landing__cta-lead {
  margin: 0;
  max-width: 760px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.service-landing__cta-body {
  margin: 16px 0 0;
  max-width: 760px;
  font-size: 26px;
  line-height: 1.3;
}
.service-landing__cta .service-landing__cta-main {
  margin: 34px 0 0;
  width: min(704px, 100%);
  max-width: 100%;
  height: auto;
  min-height: 0;
  font-family: var(--futad-font);
  font-style: normal;
  font-weight: 600;
  font-size: 52px;
  line-height: 56px;
  letter-spacing: -0.8px;
  color: #ffffff;
}
.service-landing__cta-main-line {
  display: block;
  color: #ffffff;
}
.service-landing__cta-main-line--accent {
  color: var(--service-accent);
}
.service-landing__cta-subdescription {
  margin: 14px 0 0;
  width: min(704px, 100%);
  max-width: 100%;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.2px;
}
.service-landing__cta-button {
  display: inline-flex;
  margin-top: 20px;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--service-accent);
  color: #000;
  font-weight: 600;
}
.service-landing__cta .service-landing__cta-button.cta-pill {
  margin-top: 0;
  padding: 8px 8px 8px 25px;
  border-radius: 100px;
  background: #ffffff;
  color: #000000;
}
.service-landing__cta-line-1,
.service-landing__cta-line-2 {
  display: block;
}
.service-landing__cta-line-1 {
  white-space: nowrap;
}

.service-detail-page__hero {
  padding: 110px 0 30px;
}
.service-detail-page__back {
  color: var(--service-accent);
  font-size: 14px;
  line-height: 1;
}
.service-detail-page__hero h1 {
  margin: 16px 0 0;
  font-size: clamp(36px, 7vw, 74px);
  line-height: 1;
  letter-spacing: -0.05em;
}
.service-detail-page__excerpt {
  margin: 18px 0 0;
  max-width: 860px;
  color: #f2f2f2;
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.service-detail-page__media {
  padding: 24px 0 0;
}
.service-detail-page__image-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid #282828;
  background: #282828;
}
.service-detail-page__content {
  padding: 55px 0 90px;
}
.service-detail-page__content .entry-content {
  max-width: 980px;
}
.service-detail-page__content .entry-content p {
  font-size: 20px;
  line-height: 1.65;
  color: #f2f2f2;
}

@media (max-width: 991px) {
  .service-types-archive__grid,
  .service-landing__cards:not(.service-landing__cards--slider),
  .service-landing__split,
  .service-landing__process-grid {
    grid-template-columns: 1fr;
  }
  .service-landing__cards--slider .service-landing__card {
    flex: 0 0 78vw;
    width: auto;
    min-height: 0;
  }
  .service-landing--engagement.service-landing--cards-slider .service-landing__cards--slider .service-landing__card {
    flex: 0 0 86vw;
    width: 86vw;
    max-width: 86vw;
    height: auto;
    aspect-ratio: 577 / 726;
  }
  .service-landing--engagement .service-landing__cards--slider .service-landing__card-info {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 96px;
    border-radius: 0 0 24px 24px;
    justify-content: center;
    padding: 10px 16px;
    gap: 10px;
  }
  .service-landing--engagement .service-landing__cards--slider .service-landing__card-info h3 {
    width: auto;
    max-width: calc(100% - 36px);
    height: auto;
    font-size: clamp(20px, 4.8vw, 32px);
    line-height: 1.2;
    white-space: normal;
    text-align: center;
  }
  .service-landing--engagement .service-landing__cards--slider .service-landing__card-info::after {
    width: 14px;
    height: 14px;
    border-top-width: 2px;
    border-right-width: 2px;
    margin-left: 0;
  }
  .service-landing--engagement .service-landing__cards--slider .service-landing__card-image,
  .service-landing--engagement .service-landing__cards--slider .service-landing__card-placeholder {
    width: 100%;
    height: 100%;
  }
  .service-landing--engagement .service-landing__cards--slider .service-landing__card-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    margin: 0;
    object-fit: cover;
  }
  .service-landing--engagement .service-landing__portfolio .service-landing__cards--slider .service-landing__card {
    flex: 0 0 min(380px, 86vw);
    width: min(380px, 86vw);
    max-width: min(380px, 86vw);
    height: 266px;
    aspect-ratio: auto;
    border-radius: 20px;
    border: 2px solid rgba(16, 180, 209, 0.5);
    background: linear-gradient(99.99deg, #0A1C26 0.64%, #0F192C 102.77%);
  }
  .service-landing--engagement .service-landing__portfolio .service-landing__card-info {
    min-height: 266px;
    height: 100%;
    padding: 31px 28px;
    gap: 21px;
    border-radius: 0;
  }
  .service-landing--engagement .service-landing__portfolio .service-landing__card-info h3 {
    width: 100%;
    max-width: 324px;
    font-size: 24px;
    line-height: 31px;
    text-align: left;
  }
  .service-landing--engagement .service-landing__portfolio .service-landing__cards {
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
  }
  .service-landing__split--what-we-do {
    margin-bottom: 28px;
  }
  .service-landing__what-we-do {
    min-height: 0;
    font-size: clamp(44px, 10vw, 90px);
    line-height: 1.05;
    letter-spacing: -2px;
  }
  .service-landing__subheading {
    width: 100%;
    font-size: clamp(38px, 9vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.5px;
  }
  .service-landing__split--capabilities {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-landing__content,
  .service-landing__content p {
    width: 100%;
    font-size: clamp(20px, 5.4vw, 34px);
    line-height: 1.2;
    letter-spacing: -0.03em;
  }
  .service-landing__card {
    width: 100%;
    min-height: 0;
  }
  .service-landing__card-image {
    width: 100%;
    height: 513px;
    aspect-ratio: auto;
    overflow: hidden;
  }
  .service-landing__card-info {
    min-height: 0;
    padding: 24px;
    gap: 10px;
  }
  .service-landing__card-info h3 {
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -0.02em;
  }
  .service-landing__portfolio-title {
    font-size: clamp(34px, 8vw, 64px);
    line-height: 1.1;
    min-height: 0;
  }
  .service-landing__intro-blurb-wrap {
    min-height: auto;
    padding: 24px 0 0;
  }
  .service-landing__intro-blurb-content {
    width: 100%;
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .service-landing__intro-blurb-box {
    width: 120px;
    height: 120px;
    border-radius: 18px;
  }
  .service-landing__intro-blurb {
    width: 100%;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.5px;
  }
  .service-landing__why-title {
    font-size: clamp(38px, 10vw, 64px);
    line-height: 1.08;
  }
  .service-landing__cta-body {
    font-size: 18px;
  }
  .service-landing__cta .service-landing__cta-main {
    width: 100%;
    height: auto;
    font-size: clamp(32px, 8vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.5px;
  }
  .service-landing__cta-subdescription {
    font-size: 15px;
  }
  .service-landing__action-description {
    font-size: 18px;
    line-height: 1.32;
    letter-spacing: -0.3px;
  }
  .service-landing__process-description {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.35;
  }
  .service-landing__process-grid {
    width: 100%;
  }
  .service-landing__process-grid--emerging {
    margin-top: 28px;
  }
  .service-landing__process-flow-row--top,
  .service-landing__process-flow-row--bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .service-landing__process-item--emerging,
  .service-landing__process-item-title--emerging,
  .service-landing__process-item-description--emerging {
    width: 100%;
    max-width: 353px;
  }
  .service-landing__process-item-title--emerging {
    font-size: 30px;
    line-height: 1.14;
  }
  .service-landing__process-item-description--emerging {
    margin-top: 10px;
    font-size: 19px;
    line-height: 1.35;
  }
  .service-landing__process-flow-arrow,
  .service-landing__process-flow-arrow-down-wrap {
    display: none;
  }
  .service-landing__action-title,
  .service-landing__action-subtitle,
  .service-landing__action-top-title,
  .service-landing__action-top-subtitle {
    width: 100%;
    font-size: clamp(30px, 8.6vw, 62px);
    line-height: 1.08;
    letter-spacing: -0.5px;
  }
  .service-landing__cta-line-1 {
    white-space: normal;
  }
  .service-landing__why-item h3 {
    padding-left: 24px;
  }
  .service-landing__why-item h3::before {
    width: 10px;
    height: 10px;
  }
  .service-landing__why-item p {
    margin-left: 24px;
    font-size: 15px;
    line-height: 1.35;
  }
}
.service-label {
  display: flex;
  align-items: center;
  gap: 14px;
}

.services-section {
  padding: 70px 0 24px;
}
.services-frame {
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 10px 6vw 0;
}
.services-title {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding: 24px 0;
}
.services-title-content {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.services-title-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.services-title-icon img {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}
.services-title-text {
  font-size: 40px;
  line-height: 38px;
  font-weight: 600;
  color: #0bdc9e;
}
.services-items {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.services-section .service-item {
  display: block;
  padding: 0;
}
.service-content {
  display: flex;
  align-items: center;
  gap: 32px;
  min-width: 0;
  width: 100%;
}
.service-thumb {
  width: 150px;
  height: 40px;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-name {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.4px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.service-plus {
  width: 40px;
  height: 40px;
  position: relative;
  flex: 0 0 auto;
  margin-left: auto;
}
.service-plus::before,
.service-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #9d9fa2;
  transform: translate(-50%, -50%);
}
.service-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-item {
  width: 100%;
}
.service-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  background: transparent;
  border: 0;
  color: inherit;
  padding: 20px 0;
  cursor: pointer;
  text-align: left;
}
.service-panel {
  width: 100%;
  max-width: 780px;
  padding: 0 0 24px 182px;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
.service-toggle[aria-expanded="true"] + .service-panel {
  max-height: 600px;
  opacity: 1;
}
.service-toggle[aria-expanded="true"] .service-plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.cards-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
  min-height: 627px;
  flex-wrap: wrap;
}
.projects-section {
  padding: 70px 0 40px;
}
.projects-frame {
  width: 100%;
  margin: 0;
  padding: 0 6vw;
}
.team-section {
  padding: 70px 0 40px;
}
.team-frame {
  width: 100%;
  margin: 0;
  padding: 0 6vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  min-height: 796px;
}
.projects-section .container {
  width: 100%;
  margin: 0;
  padding-top: 30px;
}
.projects-section .services-title {
  width: 100%;
  margin: 0;
  padding: 24px 0;
}
.team-section .container {
  width: 100%;
  margin: 0;
  padding-top: 0;
}
.team-section .services-title {
  width: 100%;
  margin: 0;
  padding: 24px 0;
}
.team-container {
  width: 100%;
}
.team-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0;
  min-height: 382px;
}
.team-intro {
  flex: 0 0 520px;
}
.team-intro p {
  margin: 0 auto;
  width: 547px;
  height: 184px;
  font-size: 42px;
  line-height: 46px;
  font-weight: 600;
  letter-spacing: -2px;
  color: #ffffff;
}
.team-row-cards {
  display: flex;
  gap: 32px;
  flex: 1 1 auto;
  justify-content: flex-end;
  margin: 0;
  width: 733px;
  min-height: 382px;
}
.team-row-cards .team-card {
  flex: 0 0 296px;
  min-height: 382px;
}
.team-list {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
}
.team-list .team-card {
  flex: 0 0 calc((100% - 96px) / 4);
  min-height: 382px;
}
.card {
  flex: 0 0 calc((100% - 32px) / 2);
  overflow: hidden;
  background: #000000;
  border: 2px solid #282828;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  min-height: 627px;
}
.card .thumb {
  width: 100%;
  flex: 1 1 auto;
  min-height: 520px;
  background: #3a3a3a;
}
.card .card-body {
  width: 100%;
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  background: #000000;
  border-top: 1px solid #282828;
}
.projects-section .card .card-body .muted,
.projects-section .card .card-body a {
  display: none;
}
.projects-section .card .card-body strong {
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
  color: #ffffff;
}
.team-card .card-body .muted {
  display: block;
  margin-top: 6px;
  color: #b8b8b8;
  font-size: 16px;
  line-height: 22px;
}

.team-card .thumb {
  height: 282px;
  min-height: 0;
  background: #000000;
  overflow: hidden;
}
.team-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-card .card-body {
  width: 264px;
  height: 60px;
  min-height: 60px;
  margin: 0 16px 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  overflow: hidden;
  border-top: 1px solid #282828;
}
.team-card .card-body strong {
  display: block;
  width: 264px;
  height: 30px;
  margin-top: 6px;
  font-size: 15px;
  line-height: 30px;
  font-weight: 600;
  color: #ffffff;
}
.team-card .card-body .muted {
  width: 264px;
  height: 26px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  color: #9d9fa2;
  margin: 0;
}

.testimonial {
  padding: 24px;
  border-radius: 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
}

.cta {
  text-align: left;
  padding: 96px 0 40px;
}
.cta-wrap {
  width: min(691px, 92vw);
  display: flex;
  flex-direction: column;
  gap: 51px;
}
.cta-title {
  margin: 0;
  width: min(691px, 92vw);
  font-family: var(--futad-font);
  font-style: normal;
  font-weight: 700;
  font-size: 120px;
  line-height: 138px;
  letter-spacing: -0.06em;
  color: #ffffff;
}
.cta-pill {
  width: 191px;
  height: 60px;
  background: #ffffff;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 8px 8px 25px;
  color: #000000;
}
.cta-pill-label {
  font-family: var(--futad-font);
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 36px;
  letter-spacing: -0.025em;
  color: #000000;
}
.cta-pill-icon {
  width: 44px;
  height: 44px;
  border-radius: 100px;
  background: #0bdc9e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.cta-pill-icon svg {
  width: 17.61px;
  height: 14px;
  fill: #000000;
}

.site-footer {
  background: #000000;
  border-top: 0;
  padding: 0 0 46px;
  color: #ffffff;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.site-footer__top {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  gap: 24px;
}
.site-footer__brand {
  min-width: 132px;
}
.site-footer__brand .custom-logo-link {
  display: inline-flex;
}
.site-footer__brand .custom-logo {
  width: auto;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}
.site-footer__brand a {
  font-family: var(--futad-font);
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}
.site-footer__menu {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.site-footer__menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 43px;
}
.site-footer__menu-list li {
  margin: 0;
  padding: 0;
}
.site-footer__menu-list a {
  color: #ffffff;
  font-family: var(--futad-font);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
}
.site-footer__divider {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  border-top: 2px solid #0BDC9E;
}
.site-footer__copyright {
  margin: 0;
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-family: var(--futad-font);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0.025em;
}

/* 2. Showreel */
.page-showreel {
  background: #000000;
}
.showreel-hero {
  padding: 90px 0 40px;
}
.showreel-hero--single {
  padding: 0 0 40px;
  background: #000000;
}
.showreel-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}
.showreel-header-bar {
  width: min(var(--futad-home-width), calc(100vw - var(--futad-home-gutter)));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.showreel-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.2px;
  width: 104px;
  height: 28px;
  margin-top: 60px;
}
.showreel-back-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.showreel-back-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.showreel-back-icon img {
  width: 20px;
  height: 20px;
  display: block;
}
.showreel-hero-card {
  width: 100%;
  display: grid;
  grid-template-columns: 357px 466px 1fr;
  gap: 24px;
  padding: 0;
  min-height: 124px;
  border-radius: 24px;
  border: 2px solid #282828;
  background: #0b0b0b;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}
.showreel-hero-title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 80px;
  border-right: 2px solid #282828;
  height: 124px;
  width: 357px;
}
.showreel-hero-title span {
  font-size: 42px;
  line-height: 46px;
  font-weight: 600;
  letter-spacing: -2px;
}
.showreel-hero-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  gap: 8px;
  width: 466px;
  height: 124px;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  color: #bdbdbd;
  border-right: 2px solid #282828;
}
.showreel-hero-text p {
  margin: 0;
  color: #bdbdbd;
  width: 402px;
  height: 60px;
}
.showreel-hero-text .muted {
  color: #bdbdbd;
}
.showreel-hero-spacer {
  padding: 32px;
}
.showreel-hero-info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
.showreel-gallery {
  padding: 10px 0 60px;
}
.showreel-gallery--single .showreel-block {
  margin-bottom: 36px;
}
.showreel-block {
  display: grid;
  gap: 20px;
  margin-bottom: 28px;
}
.showreel-media {
  border-radius: 24px;
  overflow: hidden;
  background: #101010;
  border: 1px solid #222222;
}
.showreel-media img {
  width: 100%;
  height: auto;
  display: block;
}
.showreel-copy {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
.showreel-copy h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
}
.showreel-copy p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}
.showreel-block--accent .showreel-copy {
  grid-template-columns: 1fr;
}
.showreel-block--device .showreel-media {
  width: min(var(--futad-home-width), 100%);
  height: 650px;
  border-radius: 24px;
  border: 0;
  background: transparent;
  flex: none;
  order: 2;
  align-self: stretch;
  flex-grow: 0;
}
.showreel-block--device img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block;
}

.showreel-page-hero {
  min-height: 704px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 var(--futad-home-gutter);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.08) 54%, #000000 100%),
    var(--showreel-hero-image) center center / cover no-repeat;
}

.page-template-page-showreel .showreel-page-hero {
  min-height: 796px;
  background:
    radial-gradient(720px 520px at 20% 18%, rgba(123, 97, 255, 0.56) 0%, rgba(75, 59, 228, 0.34) 42%, rgba(0, 0, 0, 0) 74%),
    radial-gradient(780px 520px at 58% 44%, rgba(67, 58, 190, 0.42) 0%, rgba(35, 28, 90, 0.34) 48%, rgba(0, 0, 0, 0) 78%),
    linear-gradient(180deg, #050507 0%, #08070f 48%, #000000 100%);
}

.showreel-page-hero__panel {
  position: relative;
  width: min(var(--futad-home-width), 100%);
  height: 406px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 53px 212px 39px;
  border-radius: 5px 5px 0 0;
  background: rgba(0, 0, 0, 0.20);
  -webkit-backdrop-filter: blur(12.15px);
  backdrop-filter: blur(12.15px);
  text-align: center;
}

.showreel-page-hero__panel h1 {
  width: min(703px, 100%);
  margin: 0;
  color: #ffffff;
  font-family: var(--futad-font-semibold) !important;
  font-size: 56px;
  font-weight: 400 !important;
  line-height: 57px;
  letter-spacing: -0.03em;
}

.showreel-page-hero__panel h1 span {
  color: var(--futad-green);
}

.showreel-page-hero__panel p {
  width: min(728px, 100%);
  margin: 0;
  color: var(--futad-muted);
  font-size: 18px;
  font-family: var(--futad-font-medium);
  font-weight: 400;
  line-height: 22px;
}

.showreel-page-hero__panel .story-scroll-cue {
  position: absolute;
  top: calc(100% + 86px);
  left: 50%;
  margin-top: 0;
  transform: translateX(-50%);
}

.page-template-page-about-us .home-hero--story .story-scroll-cue {
  position: absolute;
  top: calc(100% + 86px);
  left: 50%;
  margin-top: 0;
  transform: translateX(-50%);
}

.showreel-listing {
  padding: 100px 0 178px;
  background: #000000;
}

.showreel-listing__inner {
  width: min(var(--futad-home-width), calc(100vw - var(--futad-home-gutter)));
  margin: 0 auto;
}

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

.showreel-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 5px;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.showreel-card__thumb {
  display: block;
  aspect-ratio: 520 / 424;
  overflow: hidden;
  background: #101010;
}

.showreel-card__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.showreel-card__body {
  min-height: 174px;
  padding: 18px 20px 22px;
  background: #070707;
}

.showreel-card__date {
  margin-bottom: 12px;
  color: #8c8c8c;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
}

.showreel-card__body h2 {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  line-height: 27px;
}

.showreel-card__body h2 a {
  color: inherit;
}

.showreel-card__body p {
  margin: 15px 0 20px;
  color: #c6c6c6;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.showreel-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
}

.showreel-card__link .futad-arrow,
.insights-row__read .futad-arrow {
  width: 20px;
  height: 17px;
  color: var(--futad-cyan);
}

.showreel-pagination {
  width: 210px;
  margin: 98px auto 0;
  display: grid;
  grid-template-columns: 28px 1fr 56px;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.showreel-pagination__bar {
  height: 3px;
  overflow: hidden;
  background: #2a2a2a;
}

.showreel-pagination__bar span {
  display: block;
  height: 100%;
  background: var(--futad-purple);
}

.showreel-pagination__arrows {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  font-size: 30px;
  line-height: 1;
}

.showreel-pagination__arrows a,
.showreel-pagination__arrows span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8a8a8a;
}

.showreel-pagination__arrows .futad-arrow {
  width: 26px;
  height: 22px;
}

.showreel-pagination__next {
  grid-column: 2 / 4;
  justify-self: start;
  margin-top: 6px;
  color: #8c8c8c;
  font-size: 11px;
  font-weight: 500;
}

.showreel-empty {
  margin: 0;
  color: #ffffff;
  text-align: center;
}

.core-services-page {
  position: relative;
  overflow: hidden;
  padding: 278px 0 185px;
  background: #000000;
}

.core-services-page__glow {
  display: none;
  position: absolute;
  inset: 1px 0 auto 0;
  width: 100%;
  height: 1266px;
  pointer-events: none;
  overflow: hidden;
  background: #000000;
}

.core-services-page__glow::before,
.core-services-page__glow::after,
.core-services-page::before {
  position: absolute;
  content: "";
  pointer-events: none;
  filter: blur(250px);
}

.core-services-page__glow::before {
  left: 16%;
  top: 514px;
  width: 602px;
  height: 561px;
  background: #7b61ff;
}

.core-services-page__glow::after {
  right: 8%;
  top: 163px;
  width: 602px;
  height: 561px;
  background: #7b61ff;
  transform: rotate(180deg);
}

.core-services-page::before {
  display: none;
  left: 52%;
  top: 443px;
  z-index: 0;
  width: 627px;
  height: 704px;
  background: #1c163b;
}

.core-services-page__inner {
  position: relative;
  z-index: 1;
  width: min(var(--futad-home-width), calc(100vw - var(--futad-home-gutter)));
  margin: 0 auto;
}

.core-services-hero {
  width: min(760px, 100%);
  margin: 0 auto 80px;
  text-align: center;
}

.core-services-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: 56px;
  font-weight: 600;
  line-height: 57px;
  letter-spacing: -0.03em;
}

.core-services-hero h1 span {
  color: var(--futad-green);
}

.core-services-hero p {
  width: min(720px, 100%);
  margin: 31px auto 0;
  color: var(--futad-muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
}

.core-services-grid {
  position: relative;
  width: min(818px, 100%);
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.core-service-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  grid-column: span 2;
  padding: 24px 17px 0;
  border: 1px solid rgba(123, 97, 255, 0.28);
  border-radius: 5px;
  background: #050416;
  color: #ffffff;
  box-shadow: inset 0 0 80px rgba(123, 97, 255, 0.12);
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.core-service-card:hover,
.core-service-card:focus-visible {
  border-color: rgba(123, 97, 255, 0.8);
  background: rgba(123, 97, 255, 0.8);
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.08), 0 18px 44px rgba(123, 97, 255, 0.24);
}

.core-service-card--large {
  grid-column: span 2;
}

.core-services-grid .core-service-card--large:nth-child(1) {
  grid-column: 1 / span 2;
}

.core-services-grid .core-service-card--small:nth-child(2) {
  grid-column: 3 / span 2;
}

.core-services-grid .core-service-card--small:nth-child(3) {
  grid-column: 5 / span 2;
}

.core-services-grid .core-service-card:nth-child(4) {
  grid-column: 1 / span 3;
  padding: 25px 39px 0 43px;
}

.core-services-grid .core-service-card:nth-child(5) {
  grid-column: 4 / span 3;
  padding: 25px 39px 0 43px;
}

.core-services-grid .core-service-card:nth-child(n + 6) {
  display: none;
}

.core-services-grid .core-service-card--wide:nth-child(6) .core-service-card__image,
.core-services-grid .core-service-card--wide:nth-child(6) .core-service-card__title {
  width: 100%;
  max-width: none;
}

.core-service-card--small {
  grid-column: span 2;
}

.core-service-card--wide {
  min-height: 187px;
}

.core-services-grid .core-service-card:nth-child(4),
.core-services-grid .core-service-card:nth-child(5) {
  min-height: 187px;
}

.core-services-grid .core-service-card:nth-child(4) .core-service-card__image,
.core-services-grid .core-service-card:nth-child(5) .core-service-card__image {
  width: 100%;
  height: 104px !important;
  min-height: 104px;
  flex: 0 0 104px;
}

.core-services-grid .core-service-card:nth-child(4) .core-service-card__title,
.core-services-grid .core-service-card:nth-child(5) .core-service-card__title {
  width: 100%;
  max-width: none;
  min-height: 58px;
  font-size: 20px;
  line-height: 21px;
}

.core-service-card__image {
  display: block;
  overflow: hidden;
  border-radius: 5px;
  background: #111111;
}

.core-service-card--large .core-service-card__image {
  width: 100%;
  height: 260px;
}

.core-service-card--small .core-service-card__image {
  width: 100%;
  height: 260px;
}

.core-service-card--wide .core-service-card__image {
  width: 100%;
  height: 104px;
  flex: 0 0 auto;
}

.core-service-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.core-service-card:hover img,
.core-service-card:focus-visible img {
  transform: none;
}

.core-service-card__title {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.02em;
  text-align: center;
  text-transform: none;
}

.core-service-card--large .core-service-card__title {
  margin-top: 0;
}

.core-service-card--small .core-service-card__title {
  margin-top: 0;
}

.core-service-card--wide .core-service-card__title {
  width: 100%;
  max-width: none;
  min-height: 58px;
  font-size: 20px;
  line-height: 21px;
}

.core-services-empty {
  margin: 0;
  color: #ffffff;
  text-align: center;
}

.clients-partners-page {
  position: relative;
  overflow: hidden;
  padding: 287px 0 193px;
  background: #000000;
}

.clients-partners-page__glow {
  display: none;
}

.clients-partners-page__inner {
  position: relative;
  z-index: 1;
  width: min(var(--futad-home-width), calc(100vw - var(--futad-home-gutter)));
  margin: 0 auto;
}

.clients-partners-hero {
  width: min(728px, 100%);
  margin: 0 auto 144px;
  text-align: center;
}

.clients-partners-hero h1 {
  width: min(703px, 100%);
  margin: 0 auto;
  color: #ffffff;
  font-size: 56px;
  font-weight: 600;
  line-height: 57px;
  letter-spacing: -0.03em;
}

.clients-partners-hero p {
  margin: 31px 0 0;
  color: var(--futad-muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
}

.clients-partners-hero .story-scroll-cue {
  margin-top: 32px;
}

.clients-partners-groups {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.clients-partners-group__head {
  display: flex;
  align-items: center;
  gap: 29px;
  margin-bottom: 52px;
}

.clients-partners-group__head h2 {
  margin: 0;
  flex: 0 0 auto;
  color: #ffffff;
  font-family: var(--futad-font);
  font-size: 42px;
  font-weight: 600;
  line-height: 46px;
  letter-spacing: -2px;
}

.clients-partners-group__head span {
  height: 3px;
  flex: 1 1 auto;
  border-radius: 84px;
  background: linear-gradient(92.43deg, #00E6A8 2.04%, #00C6FF 52.04%);
}

.clients-partners-logo-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(92px, 1fr));
  column-gap: 43px;
  row-gap: 42px;
  align-items: center;
}

.clients-partners-group--our-partners .clients-partners-logo-grid,
.clients-partners-group--banking-sectors .clients-partners-logo-grid {
  grid-template-columns: repeat(6, minmax(112px, 1fr));
  column-gap: 58px;
}

.clients-partners-group--international-brands .clients-partners-logo-grid,
.clients-partners-group--national-brands .clients-partners-logo-grid {
  grid-template-columns: repeat(7, minmax(98px, 1fr));
}

.clients-partners-group--international-brands .clients-partners-logo {
  width: 89px;
  height: 89px;
  min-height: 89px;
  justify-self: center;
}

.clients-partners-group--international-brands .clients-partners-logo img {
  width: auto;
  height: auto;
  max-width: 89px;
  max-height: 89px;
  object-fit: contain;
}

.clients-partners-group--international-brands .clients-partners-logo-grid {
  row-gap: 34px;
}

.clients-partners-logo {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

.clients-partners-logo img {
  max-width: 100%;
  max-height: 88px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
}

.clients-partners-logo span {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

.clients-partners-empty {
  margin: -22px 0 0;
  color: var(--futad-muted);
  font-size: 16px;
  line-height: 24px;
}

@media (max-width: 900px) {
  .showreel-page-hero {
    min-height: 640px;
    padding: 0 24px;
  }
  .showreel-page-hero__panel {
    width: 100%;
    padding: 48px 24px;
  }
  .showreel-page-hero__panel h1 {
    font-size: 40px;
    line-height: 44px;
  }
  .showreel-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .core-services-page {
    padding: 278px 0 110px;
  }
  .core-services-hero h1 {
    font-size: 42px;
    line-height: 46px;
  }
  .core-services-grid {
    width: min(520px, calc(100vw - 48px));
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .core-service-card,
  .core-service-card--large,
  .core-service-card--small,
  .core-service-card--wide {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 240px;
  }
  .core-service-card--wide {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .core-service-card--wide .core-service-card__image {
    width: min(322px, 100%);
    flex-basis: auto;
  }
  .core-service-card__title,
  .core-service-card--wide .core-service-card__title,
  .core-services-grid .core-service-card--wide:nth-child(6) .core-service-card__title {
    width: 100%;
    max-width: 100%;
  }
  .clients-partners-page {
    padding: 287px 0 110px;
  }
  .clients-partners-page__inner {
    width: min(100% - 48px, 720px);
  }
  .clients-partners-hero {
    margin-bottom: 86px;
  }
  .clients-partners-hero h1 {
    font-size: 42px;
    line-height: 46px;
  }
  .clients-partners-group__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 36px;
  }
  .clients-partners-group__head span {
    width: 100%;
    flex: 0 0 3px;
  }
  .clients-partners-logo-grid,
  .clients-partners-group--our-partners .clients-partners-logo-grid,
  .clients-partners-group--banking-sectors .clients-partners-logo-grid,
  .clients-partners-group--international-brands .clients-partners-logo-grid,
  .clients-partners-group--national-brands .clients-partners-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
  .showreel-block--device .showreel-media {
    height: auto;
  }
  .showreel-block--device img {
    height: auto;
  }
}

/* 3. About Us */
.page-template-page-about-us {
  background: #000000;
}
.about-story-hero {
  padding: 72px 0 48px;
}
.about-story-hero__inner {
  width: min(907px, 92vw);
  min-height: 208px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-story-hero__title {
  margin: 0;
  width: 100%;
  text-align: center;
  font-family: var(--futad-font);
  font-style: normal;
  font-weight: 600;
  font-size: 98px;
  line-height: 104px;
  letter-spacing: -4.5px;
  color: #ffffff;
}
.about-story-hero__line {
  display: block;
}
.about-story-hero__accent {
  color: #16f5b0;
}

.about-story-cards {
  padding: 0 0 56px;
}
.about-story-cards__row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  width: min(var(--futad-home-width), calc(100vw - var(--futad-home-gutter)));
  height: 659px;
  margin: 0 auto;
  border-radius: 40px;
  overflow: hidden;
  flex: none;
  order: 1;
  flex-grow: 0;
}
.about-story-cards__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 426.67px;
  height: 659px;
  align-self: stretch;
  flex-grow: 1;
  overflow: hidden;
}
.about-story-cards__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-story-cards__item--1 {
  padding: 0;
  gap: 24px;
  order: 0;
}
.about-story-cards__item--2 {
  padding: 0;
  gap: 8px;
  order: 1;
}
.about-story-cards__item--3 {
  padding: 0;
  order: 2;
}

.about-metrics {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 52px 120px;
  gap: 10px;
  background: #000000;
}
.about-metrics__frame {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  gap: 32px;
  width: min(var(--futad-home-width), calc(100vw - var(--futad-home-gutter)));
  min-height: 432px;
}
.about-metrics__image {
  margin: 0 auto;
  width: 624px;
  height: 432px;
  border-radius: 40px;
  overflow: hidden;
  background: #111111;
  flex: none;
  order: 0;
  flex-grow: 0;
}
.about-metrics__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-metrics__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 40px;
  margin: 0 auto;
  width: 624px;
  min-height: 432px;
  flex: none;
  order: 1;
  flex-grow: 0;
}
.about-metrics__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 10px;
  width: 624px;
  min-height: 116px;
}
.about-metrics__header h2 {
  width: 624px;
  margin: 0;
  font-family: var(--futad-font);
  font-style: normal;
  font-weight: 600;
  font-size: 42px;
  line-height: 46px;
  letter-spacing: -2px;
  color: #ffffff;
}
.about-metrics__header p {
  width: 624px;
  margin: 0;
  font-family: var(--futad-font);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #9d9fa2;
}
.about-metrics__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  width: 624px;
  min-height: 276px;
}
.about-metrics__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 8px;
  width: 296px;
  min-height: 122px;
}
.about-metrics__item-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 4px;
  width: 296px;
  min-height: 70px;
}
.about-metrics__item h3 {
  margin: 0;
  font-family: var(--futad-font);
  font-style: normal;
  font-weight: 600;
  font-size: 34px;
  line-height: 40px;
  letter-spacing: -1px;
  color: #dddddd;
}
.about-metrics__item h4 {
  margin: 0;
  font-family: var(--futad-font);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
}
.about-metrics__item p {
  margin: 0;
  width: 296px;
  font-family: var(--futad-font);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #9d9fa2;
}

.about-testimonials {
  background: #000000;
  display: flex;
  justify-content: center;
  padding: 0 0 96px;
}
.about-testimonials__shell {
  position: relative;
  width: min(1440px, 100vw);
  min-height: 560px;
  background: #000000;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 96px 408px;
  gap: 8px;
}
.about-testimonials__track-wrap {
  width: 624px;
  overflow: hidden;
}
.about-testimonials__track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}
.about-testimonials__slide {
  width: 624px;
  flex: 0 0 624px;
}
.about-testimonials__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 32px;
  width: 624px;
  min-height: 368px;
}
.about-testimonials__person {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 16px;
  width: 624px;
  min-height: 60px;
}
.about-testimonials__avatar {
  width: 59px;
  height: 59px;
  border-radius: 50%;
  overflow: hidden;
  background: #151515;
  flex: none;
}
.about-testimonials__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-testimonials__person-meta {
  width: 549px;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-testimonials__person-meta h3 {
  margin: 0;
  font-family: var(--futad-font);
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  color: #ffffff;
}
.about-testimonials__person-meta p {
  margin: 0;
  font-family: var(--futad-font);
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  color: #9d9fa2;
}
.about-testimonials__quote {
  width: 624px;
}
.about-testimonials__quote p {
  margin: 0;
  font-family: var(--futad-font);
  font-weight: 600;
  font-size: 28px;
  line-height: 34px;
  letter-spacing: -0.6px;
  color: #ffffff;
}
.about-testimonials__logo {
  width: 119.92px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.about-testimonials__logo img {
  max-width: 100%;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.about-testimonials__company-name {
  font-family: var(--futad-font);
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -0.2px;
  color: #ffffff;
  white-space: nowrap;
}
.about-testimonials__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.about-testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: #3b3b3b;
  padding: 0;
  cursor: pointer;
}
.about-testimonials__dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: #ffffff;
}

.page-template-page-insights {
  background: #000000;
}

.insights-page {
  position: relative;
  overflow: hidden;
  padding: 257px 0 181px;
  background: #000000;
}

.insights-page__glow {
  display: none;
}

.insights-page__inner {
  position: relative;
  z-index: 1;
  width: min(var(--futad-home-width), calc(100vw - var(--futad-home-gutter)));
  margin: 0 auto;
}

.insights-page-hero {
  width: min(733px, 100%);
  margin: 0 auto 107px;
  text-align: center;
}

.insights-page-hero h1 {
  width: min(548px, 100%);
  margin: 0 auto;
  color: #ffffff;
  font-size: 48px;
  font-weight: 600;
  line-height: 49px;
  letter-spacing: -0.03em;
}

.insights-page-hero h1 span {
  color: var(--futad-green);
}

.insights-page-hero p {
  margin: 30px 0 0;
  color: var(--futad-muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.insights-list {
  display: flex;
  flex-direction: column;
}

.insights-row {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 520px);
  justify-content: space-between;
  gap: 64px;
  padding: 0 0 40px;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--futad-cyan);
}

.insights-row__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 2px;
}

.insights-row__date {
  margin-bottom: 11px;
  color: #9d9fa2;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
}

.insights-row h2 {
  width: min(415px, 100%);
  margin: 0;
  color: #ffffff;
  font-size: 34px;
  font-weight: 600;
  line-height: 39px;
  letter-spacing: -0.03em;
}

.insights-row h2 a {
  color: inherit;
}

.insights-row__copy p {
  width: min(335px, 100%);
  margin: 13px 0 8px;
  color: #d1d5dc;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
}

.insights-row__read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
}

.insights-row__read .futad-arrow {
  color: var(--futad-cyan);
}

.insights-row__author {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 52px;
  color: #d1d5dc;
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
}

.insights-row__avatar,
.insights-row__avatar img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.insights-row__avatar {
  overflow: hidden;
  background: #e8e8e8;
  flex: none;
}

.insights-row__image {
  display: block;
  width: 520px;
  height: 334px;
  overflow: hidden;
  border-radius: 5px;
  background: #101010;
}

.insights-row__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.insights-load-more-wrap {
  width: 100%;
  margin-top: 40px;
}
.insights-load-more {
  box-sizing: border-box;
  width: 100%;
  height: 62px;
  border: 2px solid #282828;
  border-radius: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--futad-font);
  font-weight: 600;
  font-size: 20px;
  line-height: 34px;
  text-align: center;
  color: #bdbdbd;
}
.insights-empty {
  color: #9d9fa2;
  text-align: center;
}

.page-template-page-contact-us {
  background: #000000;
}

.contact-page {
  position: relative;
  overflow: hidden;
  background: #000000;
  padding: 279px 0 160px;
}

.contact-page__glow {
  display: none;
}

.contact-page__inner {
  position: relative;
  z-index: 1;
  width: min(var(--futad-home-width), calc(100vw - var(--futad-home-gutter)));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 81px;
}

.contact-page__inner > h1 {
  width: min(703px, 100%);
  margin: 0 auto 100px;
  color: #ffffff;
  font-size: 56px;
  font-weight: 600;
  line-height: 57px;
  letter-spacing: -0.03em;
  text-align: center;
}

.contact-message-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 102px;
  width: 100%;
  margin: 0;
}

.contact-message-form__fields {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 78px;
}

.contact-form__cf7--figma,
.contact-form__cf7--figma .wpcf7,
.contact-form__cf7--figma .wpcf7 form {
  width: 100%;
  margin: 0;
}

.contact-form__cf7--figma .wpcf7 form {
  display: block;
}

.contact-message-form__top {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  gap: 13px;
}

.contact-message-form__top > p {
  margin: 0;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  gap: 13px;
}

.contact-message-form__top > p br {
  display: none;
}

.contact-message-form__top > label,
.contact-message-form__top > p > label {
  flex: 1 1 0;
  width: 100%;
}

.contact-message-form label {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: #696969;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

.contact-message-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.contact-message-form p {
  margin: 0;
}

.contact-message-form__actions,
.contact-message-form__actions p {
  margin: 0;
}

.contact-message-form__actions {
  display: flex;
  align-items: center;
}

.contact-message-form__actions p {
  margin: 0;
  width: 100%;
}

.contact-message-form input,
.contact-message-form textarea {
  width: 100%;
  height: 1px;
  padding: 0 0 21px;
  border: 0;
  border-bottom: 1px solid #ffffff;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #ffffff;
  font: inherit;
}

.contact-message-form__message {
  width: 100%;
}

.contact-message-form textarea {
  height: 96px;
  resize: vertical;
}

.contact-message-form__button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 239px;
  min-height: 60px;
  padding: 22px 36px;
  border: 0;
  border-radius: 100px;
  background: var(--futad-purple);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.contact-message-form__button::after {
  content: "\2192";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  position: relative;
  top: -1px;
}

.contact-message-form input.contact-message-form__button {
  appearance: none;
  display: inline-flex;
  box-sizing: border-box;
  width: 239px;
  height: 60px;
  min-height: 60px;
  margin-top: 0;
  padding: 20px 62px 20px 30px;
  border: 0;
  border-radius: 100px;
  background: var(--futad-purple);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-align: left;
  cursor: pointer;
}

.contact-form__cf7--figma .wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #ff8b8b;
  font-size: 13px;
}

.contact-form__cf7--figma .wpcf7-response-output {
  margin: 24px 0 0;
  color: #ffffff;
  border-color: var(--futad-cyan);
}

.contact-form__cf7--figma .wpcf7-spinner {
  margin-left: 12px;
}

.contact-info-panel {
  width: 100%;
  min-height: 279px;
  margin-top: 0;
  display: grid;
  grid-template-columns: minmax(0, 603px) minmax(0, 181px) minmax(0, 184px);
  align-items: end;
  gap: 73px;
  padding: 50px 30px;
  border: 0.5px solid var(--futad-cyan);
  border-radius: 5px;
  background: rgba(4, 187, 212, 0.05);
}

.contact-info-panel__heading {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.contact-info-panel__heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: -0.02em;
}

.contact-info-panel__heading p {
  margin: 0;
  color: #ffffff;
  font-size: 56px;
  font-weight: 600;
  line-height: 57px;
  letter-spacing: -0.03em;
}

.contact-info-panel__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 23px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
}

.contact-info-panel__item h3,
.contact-info-panel__item p {
  margin: 0;
}

.contact-info-panel__item h3 {
  font: inherit;
}

.contact-info-panel__item span {
  display: block;
  width: 60px;
  height: 1px;
  background: #ffffff;
}

.page-template-page-coming-soon {
  background: #000000;
}

.coming-soon-page {
  position: relative;
  overflow: hidden;
  background: #000000;
  padding: 386px 0 161px;
}

.coming-soon-page__glow {
  display: none;
  position: absolute;
  left: -179px;
  top: -243px;
  width: 491px;
  height: 992px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(159, 100, 255, 0.4) 0%, rgba(75, 59, 228, 0.4) 71.42%);
  filter: blur(150px);
  transform: rotate(-87.3deg);
}

.core-services-page,
.clients-partners-page,
.insights-page,
.contact-page,
.coming-soon-page {
  isolation: isolate;
}

.core-services-page::before,
.clients-partners-page::before,
.insights-page::before,
.contact-page::before,
.coming-soon-page::before,
.core-services-page::after,
.clients-partners-page::after,
.insights-page::after,
.contact-page::after,
.coming-soon-page::after,
.core-services-page__glow,
.clients-partners-page__glow,
.insights-page__glow,
.contact-page__glow,
.coming-soon-page__glow {
  position: absolute;
  z-index: 0;
  content: "";
  display: block;
  pointer-events: none;
  border-radius: 999px;
}

.core-services-page::before,
.clients-partners-page::before,
.insights-page::before,
.contact-page::before,
.coming-soon-page::before {
  width: 602.03px;
  height: 560.53px;
  left: 479px;
  top: 496px;
  background: #7B61FF;
  filter: blur(250px);
}

.core-services-page::after,
.clients-partners-page::after,
.insights-page::after,
.contact-page::after,
.coming-soon-page::after {
  width: 602.03px;
  height: 560.53px;
  left: 201px;
  top: -130px;
  background: #7B61FF;
  filter: blur(250px);
  transform: rotate(-180deg);
}

.core-services-page__glow,
.clients-partners-page__glow,
.insights-page__glow,
.contact-page__glow,
.coming-soon-page__glow {
  width: 627.41px;
  height: 703.72px;
  left: 749px;
  top: 444px;
  background: #1C163B;
  filter: blur(250px);
  transform: none;
}

@media (max-width: 520px) {
  .story-scroll-cue {
    display: none !important;
  }

  .core-services-page,
  .clients-partners-page,
  .insights-page,
  .contact-page,
  .coming-soon-page {
    background: #000000 !important;
  }
}

.core-services-page__glow::before,
.core-services-page__glow::after {
  display: none;
}

.coming-soon-page__inner {
  position: relative;
  z-index: 1;
  width: min(var(--futad-home-width), calc(100vw - var(--futad-home-gutter)));
  margin: 0 auto;
}

.coming-soon-page__hero {
  width: min(456px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  color: #ffffff;
  text-align: center;
}

.coming-soon-page__hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: 56px;
  font-weight: 600;
  line-height: 57px;
  letter-spacing: -0.03em;
}

.coming-soon-page__button {
  width: 246px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 100px;
  background: var(--futad-purple);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
}

.coming-soon-page__button .futad-arrow {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.coming-soon-page__button:hover,
.coming-soon-page__button:focus-visible {
  color: #ffffff;
  background: #6d52f5;
}

.coming-soon-page__contact {
  margin-top: 378px;
}

.error404 {
  background: #000000;
}

.not-found-page {
  position: relative;
  overflow: hidden;
  min-height: 1041px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 270px 24px 225px;
  background: #000000;
}

.not-found-page__glow {
  position: absolute;
  left: -179px;
  top: -243px;
  width: 491px;
  height: 992px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(159, 100, 255, 0.4) 0%, rgba(75, 59, 228, 0.4) 71.42%);
  filter: blur(150px);
  transform: rotate(-87.3deg);
}

.not-found-page__content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  text-align: center;
}

.not-found-page__code {
  margin: 0 0 26px;
  font-size: 140px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}

.not-found-page h1 {
  margin: 0 0 25px;
  color: #ffffff;
  font-size: 56px;
  font-weight: 600;
  line-height: 57px;
  letter-spacing: -0.03em;
}

.not-found-page__lead {
  margin: 0 0 42px;
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: -0.02em;
}

.not-found-page__note {
  margin: 0 0 59px;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.025em;
}

.not-found-page__button {
  width: 244px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 100px;
  background: var(--futad-purple);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
}

.not-found-page__button:hover,
.not-found-page__button:focus {
  color: #ffffff;
  background: #6d52f5;
}

.contact-locations,
.contact-form__form {
  display: none;
}

/* Legacy Contact Form 7 helpers, kept for admin-entered shortcode compatibility. */
.contact-form__row {
  width: 100%;
}

.contact-form__row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-form__row input,
.contact-form__row select,
.contact-form__row textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #282828;
  background: transparent;
  border-radius: 0;
  color: #9d9fa2;
  padding: 12px 0;
  font-family: var(--futad-font);
  font-size: 16px;
  line-height: 26px;
  outline: 0;
}

.contact-form__row textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-form__row input::placeholder,
.contact-form__row textarea::placeholder {
  color: #9d9fa2;
}

.contact-form__row select {
  color: #9d9fa2;
}

.contact-form__row select:focus,
.contact-form__row input:focus,
.contact-form__row textarea:focus {
  border-bottom-color: #0bdc9e;
}

.contact-form__cf7 textarea.wpcf7-form-control {
  min-height: 110px;
}

.contact-form__submit {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 39px;
  background: #0bdc9e;
  color: #282828;
  font-family: var(--futad-font);
  font-weight: 600;
  font-size: 18px;
  line-height: 32px;
  cursor: pointer;
}

.contact-form__terms {
  margin: 0;
  font-family: var(--futad-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #9d9fa2;
}

.contact-form__cf7--figma textarea.wpcf7-form-control {
  min-height: 96px;
}

.contact-form__cf7--figma .wpcf7-form-control:not(.contact-message-form__button) {
  width: 100%;
}

.article-quote-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 71px;
  gap: 10px;
  width: 1280px;
  height: 316px;
  background: #000000;
  border-radius: 24px;
}

.article-quote-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 16px;
  width: 770px;
  height: 204px;
}

.article-quote-card__icon {
  width: 27px;
  height: 23px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.article-quote-card__text {
  margin: 0;
  width: 770px;
  height: 114px;
  font-family: var(--futad-font);
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 38px;
  text-align: center;
  color: #ffffff;
}

.article-quote-card__author {
  width: 770px;
  height: 35px;
  font-family: var(--futad-font);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
  text-align: center;
  color: #ffffff;
}

.single-post,
.single-service_detail {
  background: #000000;
}

.media-detail-page {
  position: relative;
  overflow: hidden;
  padding: 269px 0 132px;
  background: #000000;
}

.media-detail-page__glow {
  position: absolute;
  left: -179px;
  top: -243px;
  width: 491px;
  height: 992px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(159, 100, 255, 0.4) 0%, rgba(75, 59, 228, 0.4) 71.42%);
  filter: blur(150px);
  transform: rotate(-87.3deg);
}

.media-detail-page__inner {
  position: relative;
  z-index: 1;
  width: min(var(--futad-home-width), calc(100vw - var(--futad-home-gutter)));
  margin: 0 auto;
}

.media-detail-hero h1 {
  width: min(912px, 100%);
  margin: 0 auto 50px;
  color: #ffffff;
  font-size: 56px;
  font-weight: 600;
  line-height: 57px;
  letter-spacing: -0.03em;
  text-align: center;
}

.media-detail-hero__image {
  width: 100%;
  height: 765px;
  margin: 0;
  overflow: hidden;
  border-radius: 5px;
  background: #111111;
}

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

.media-detail-intro {
  width: min(1147px, 100%);
  margin: 49px 0 60px;
  color: #ffffff;
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: -0.02em;
}

.media-detail-split {
  display: grid;
  grid-template-columns: minmax(0, 505px) minmax(0, 576px);
  gap: 71px;
  align-items: start;
  margin-bottom: 82px;
}

.media-detail-copy {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.media-detail-copy p {
  margin: 0;
  color: var(--futad-muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
}

.media-detail-side-image {
  width: 100%;
  height: 296px;
  margin: 0;
  overflow: hidden;
  border-radius: 5px;
  background: #111111;
}

.media-detail-side-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.media-detail-gallery {
  width: calc(100vw - 144px);
  margin-left: calc((1152px - min(1152px, calc(100vw - 96px))) / -2);
}

.media-detail-gallery__track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  padding-bottom: 12px;
  scrollbar-width: none;
}

.media-detail-gallery__track::-webkit-scrollbar {
  display: none;
}

.media-detail-gallery__track.is-auto-sliding {
  scroll-snap-type: none;
}

.media-detail-gallery__item {
  display: block;
  flex: 0 0 450px;
  width: 450px;
  height: 450px;
  margin: 0;
  overflow: hidden;
  border-radius: 5px;
  background: #111111;
  scroll-snap-align: start;
  color: #ffffff;
  text-decoration: none;
}

.media-detail-gallery__track.is-auto-sliding .media-detail-gallery__item {
  scroll-snap-align: none;
}

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

.media-detail-gallery__hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: max-content;
  margin: 39px auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
}

.insight-article__body h2 {
  margin: 0 0 24px;
  font-family: var(--futad-font);
  font-weight: 600;
  font-size: 42px;
  line-height: 46px;
  letter-spacing: -2px;
  color: #ffffff;
}

.insight-article__body h3,
.insight-article__body h4 {
  margin: 0 0 16px;
  color: #ffffff;
}

.insight-article__body .wp-block-columns {
  margin: 0;
  gap: 56px;
}

.insight-article__body .wp-block-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.insight-article__body figure {
  margin: 0;
}

.insight-article__body .wp-block-image img,
.insight-article__body figure img {
  width: 100%;
  border-radius: 24px;
}

.insight-article__body figcaption {
  margin-top: 16px;
  text-align: center;
  font-family: var(--futad-font);
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #9d9fa2;
}

.insight-article__body blockquote {
  margin: 0;
  width: 100%;
  border: 2px solid #282828;
  border-radius: 24px;
  padding: 56px 71px;
  text-align: center;
}

.insight-article__body blockquote p {
  color: #ffffff;
}

.insight-article__body blockquote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 20px;
  line-height: 35px;
  color: #ffffff;
}

.insight-article__body blockquote::before {
  content: "❞";
  display: block;
  margin-bottom: 16px;
  font-size: 34px;
  line-height: 1;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .about-story-hero__title {
    font-size: 76px;
    line-height: 82px;
    letter-spacing: -2.8px;
  }
}

@media (max-width: 768px) {
  .about-story-hero__inner {
    min-height: auto;
  }
  .about-story-hero__title {
    font-size: 52px;
    line-height: 58px;
    letter-spacing: -1.4px;
  }
  .about-story-cards__row {
    width: 92vw;
    height: auto;
    flex-direction: column;
  }
  .about-story-cards__item {
    width: 100%;
    height: auto;
  }
  .about-story-cards__item img {
    height: auto;
  }
  .about-metrics {
    padding: 56px 0 80px;
  }
  .about-metrics__frame {
    width: 92vw;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .about-metrics__image,
  .about-metrics__content,
  .about-metrics__header,
  .about-metrics__header h2,
  .about-metrics__header p,
  .about-metrics__grid,
  .about-metrics__item,
  .about-metrics__item-header,
  .about-metrics__item p {
    width: 100%;
  }
  .about-metrics__grid {
    grid-template-columns: 1fr;
  }
  .about-metrics__image {
    height: auto;
  }
  .about-metrics__image img {
    height: auto;
  }
  .about-testimonials {
    padding: 0 0 64px;
  }
  .about-testimonials__shell {
    width: 92vw;
    min-height: auto;
    padding: 48px 24px;
    border-radius: 24px;
  }
  .about-testimonials__track-wrap,
  .about-testimonials__slide,
  .about-testimonials__inner,
  .about-testimonials__person,
  .about-testimonials__quote,
  .about-testimonials__person-meta {
    width: 100%;
    flex-basis: 100%;
  }
  .about-testimonials__quote p {
    font-size: 22px;
    line-height: 30px;
    letter-spacing: -0.4px;
  }
  .insights-page {
    padding: 257px 0 110px;
  }
  .insights-page-hero {
    margin-bottom: 72px;
  }
  .insights-page-hero h1 {
    font-size: 40px;
    line-height: 44px;
  }
  .insights-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .insights-row__image {
    width: 100%;
    height: auto;
    aspect-ratio: 520 / 334;
    order: -1;
  }
  .insights-row h2 {
    font-size: 30px;
    line-height: 35px;
  }
  .contact-page {
    padding: 279px 0 110px;
  }
  .contact-page__inner > h1 {
    margin-bottom: 64px;
    font-size: 42px;
    line-height: 46px;
  }
  .coming-soon-page__hero h1 {
    font-size: 42px;
    line-height: 46px;
  }
  .contact-message-form__top {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 42px;
  }
  .contact-message-form__top > p {
    flex-direction: column;
    gap: 42px;
  }
  .contact-message-form__top > label,
  .contact-message-form__top > p > label {
    flex: 0 0 auto;
  }
  .contact-info-panel {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 42px;
  }
  .contact-info-panel__heading p {
    font-size: 42px;
    line-height: 46px;
  }
  .not-found-page {
    min-height: 760px;
    padding: 210px 24px 120px;
  }
  .not-found-page__code {
    font-size: 104px;
  }
  .not-found-page h1 {
    font-size: 42px;
    line-height: 46px;
  }
  .not-found-page__lead {
    font-size: 26px;
    line-height: 34px;
  }
  .media-detail-page {
    padding: 190px 0 96px;
  }
  .media-detail-page__inner {
    width: min(100% - 48px, 720px);
  }
  .media-detail-hero h1 {
    font-size: 42px;
    line-height: 46px;
  }
  .media-detail-hero__image {
    height: auto;
    aspect-ratio: 1152 / 765;
  }
  .media-detail-intro {
    font-size: 28px;
    line-height: 34px;
  }
  .media-detail-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .media-detail-gallery {
    width: 100%;
    margin-left: 0;
  }
  .media-detail-gallery__item {
    flex-basis: 82vw;
    width: 82vw;
    height: auto;
    aspect-ratio: 1;
  }
}

@media (max-width: 480px) {
  .about-story-hero__title {
    font-size: 38px;
    line-height: 44px;
    letter-spacing: -1px;
  }
}

@media (max-width: 900px) {
  .showreel-hero-card {
    grid-template-columns: 1fr;
  }
  .showreel-hero-text {
    border-right: 0;
    padding: 16px 20px;
  }
  .showreel-hero-spacer {
    display: none;
  }
  .showreel-copy {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .nav-shell { grid-template-columns: 1fr; grid-template-rows: auto auto auto; height: auto; }
  .nav-logo { grid-row: 1; border-right: 0; border-bottom: 1px solid #2a2a2a; }
  .primary-nav ul { gap: 16px; font-size: 15px; flex-wrap: wrap; }
  .nav-bottom { grid-template-columns: 1fr; height: auto; }
  .nav-action + .nav-action { border-left: 0; border-top: 1px solid #2a2a2a; }
  .nav-toggle { width: 90px; height: 64px; }
}

@media (max-width: 600px) {
  .header-inner { padding: 16px 0; }
  .nav-top { padding: 10px 16px; }
  .hero { padding-top: 100px; }
  .cta {
    padding: 72px 0 32px;
  }
  .cta-wrap {
    gap: 28px;
  }
  .cta-title {
    font-size: 62px;
    line-height: 72px;
    letter-spacing: -0.04em;
  }
  .site-footer {
    padding-bottom: 28px;
  }
  .site-footer__top {
    min-height: auto;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .site-footer__menu {
    width: 100%;
  }
  .site-footer__menu-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 26px;
  }
  .site-footer__menu-list a {
    font-size: 15px;
    line-height: 1.2;
  }
  .site-footer__copyright {
    font-size: 15px;
    line-height: 22px;
  }
}

/* Desktop - 2 homepage refresh */
:root {
  --futad-purple: #7B61FF;
  --futad-cyan: #04BBD4;
  --futad-green: #0EDB9D;
  --futad-muted: #D1D5DC;
  --futad-gradient: linear-gradient(90deg, #472CE6 -106.01%, #04BBD4 46.57%, #0ACFB0 141.02%, #0EDB9D 240.92%);
  --futad-home-width: 1152px;
  --futad-nav-width: var(--futad-home-width);
  --futad-home-gutter: 48px;
}

@media (min-width: 1600px) {
  :root {
    --futad-home-width: 1280px;
    --futad-nav-width: 1280px;
  }
}

@media (min-width: 1900px) {
  :root {
    --futad-home-width: 1440px;
    --futad-nav-width: 1440px;
  }
}

@media (min-width: 2400px) {
  :root {
    --futad-home-width: 1600px;
    --futad-nav-width: 1600px;
  }
}

body {
  background: #000000;
  color: #ffffff;
}

.site-header {
  position: fixed;
  top: 59px;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border: 0;
}

.site-header {
  background: transparent;
  border: 0;
}

.header-inner {
  position: relative;
  width: min(var(--futad-nav-width), calc(100vw - var(--futad-home-gutter)));
  height: 60px;
  margin: 0 auto;
  padding: 0;
}

.nav-shell {
  position: relative;
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px 5px 0 0;
  background: rgba(0, 0, 0, 0.20);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(12.15px);
  backdrop-filter: blur(12.15px);
}

.nav-logo {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 57px;
  padding: 14px 20px 14px 0;
  border: 0;
  font-size: 0;
}

.nav-logo .custom-logo-link,
.nav-logo a {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.nav-logo img,
.nav-logo .custom-logo {
  width: 114px;
  max-width: 114px;
  max-height: 29px;
  object-fit: contain;
}

.primary-nav {
  width: 100%;
  min-width: 0;
  padding: 0 194px 0 220px;
}

.primary-nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  line-height: 20px;
}

.primary-nav li {
  display: flex;
}

.nav-services-menu {
  position: static;
}

.nav-services-menu__toggle {
  gap: 8px;
}

.nav-services-menu__toggle::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transform-origin: center;
  order: 2;
  transition: transform 180ms ease;
}

.nav-contact-mobile {
  display: none;
}

@media (min-width: 821px) {
  .primary-nav .nav-contact-mobile {
    display: none !important;
  }
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 16px 20px;
  color: #ffffff;
  font-weight: 400;
  white-space: nowrap;
  position: relative;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00E6A8 0%, #00C6FF 100%);
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a {
  color: #00E6A8;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav .current-menu-item > a::after,
.primary-nav .current_page_item > a::after {
  opacity: 1;
  transform: scaleX(1);
}

.services-mega-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  z-index: 60;
  display: flex;
  width: 100%;
  height: 558px;
  padding: 46px 34px 27px 45px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0A0A0A;
  color: #ffffff;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 180ms ease;
}

@media (min-width: 821px) {
  .nav-services-menu:hover .services-mega-menu,
  .nav-services-menu:focus-within .services-mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-services-menu:hover .nav-services-menu__toggle::before,
  .nav-services-menu:focus-within .nav-services-menu__toggle::before {
    transform: rotate(225deg) translate(-2px, -2px);
  }

  .services-mega-menu {
    border-color: rgba(255, 255, 255, 0.12);
    background: #0A0A0A;
    color: #ffffff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  }
}

.services-mega-menu__grid {
  display: grid;
  grid-template-columns: 1.1fr 1.18fr 1fr 1fr;
  column-gap: 78px;
  width: 100%;
}

.services-mega-menu__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.services-mega-menu h2 {
  margin: 0 0 35px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.primary-nav .services-mega-menu h2 .services-mega-menu__heading-link {
  min-height: 0;
  padding: 0;
  margin: 0;
  color: var(--futad-green);
  background: var(--futad-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font: inherit;
  white-space: normal;
}

.services-mega-menu h2:not(:first-child) {
  margin-top: 54px;
}

.primary-nav .services-mega-menu a {
  display: inline-flex;
  min-height: 0;
  justify-content: flex-start;
  padding: 0;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  white-space: normal;
}

.primary-nav .services-mega-menu a:hover,
.primary-nav .services-mega-menu a:focus-visible {
  color: #00E6A8;
}

.primary-nav .services-mega-menu a::after {
  display: none;
}

@media (min-width: 821px) {
  .primary-nav .services-mega-menu a {
    color: rgba(255, 255, 255, 0.68);
  }

  .primary-nav .services-mega-menu a:hover,
  .primary-nav .services-mega-menu a:focus-visible {
    color: #00E6A8;
  }

  .primary-nav .services-mega-menu h2 .services-mega-menu__heading-link:hover,
  .primary-nav .services-mega-menu h2 .services-mega-menu__heading-link:focus-visible {
    filter: brightness(1.18);
  }
}

.nav-contact {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 109px;
  height: 43px;
  margin-right: 0;
  padding: 0 20px;
  border-radius: 5px;
  background: var(--futad-purple);
  color: #ffffff;
  font-weight: 400;
  line-height: 20px;
  white-space: nowrap;
}

.nav-contact:hover,
.nav-contact:focus-visible {
  background: linear-gradient(180deg, #7B61FF 0%, #A855F7 100%);
  color: #ffffff;
  transform: translateY(-50%);
}

.nav-socials a:hover,
.nav-socials a:focus-visible {
  color: #00C6FF;
  transform: translateY(-2px);
}

.site-footer__menu a {
  position: relative;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.site-footer__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00E6A8 0%, #00C6FF 100%);
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.site-footer__menu a:hover,
.site-footer__menu a:focus-visible {
  color: #00E6A8;
  transform: translateY(-2px);
}

.site-footer__menu a:hover::after,
.site-footer__menu a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-socials {
  position: absolute;
  right: 0;
  top: -49px;
  width: 138px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 15px;
  gap: 12px;
}

.nav-socials a {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
  font-size: 0;
  flex: none;
}

.nav-socials svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.site-header .nav-toggle {
  display: none;
}

.home-container {
  width: min(var(--futad-home-width), calc(100vw - var(--futad-home-gutter)));
  margin: 0 auto;
}

.home-main-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: #000000;
}

.home-main-hero__media,
.home-main-hero__slide,
.home-main-hero__slide img,
.home-main-hero__slide video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-main-hero__slide {
  opacity: 0;
  transition: opacity 600ms ease;
}

.home-main-hero__slide.is-active {
  opacity: 1;
}

.home-main-hero__slide img,
.home-main-hero__slide video {
  display: block;
  object-fit: cover;
}

.home-main-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #000000 97.12%);
  mix-blend-mode: hard-light;
  pointer-events: none;
}

.home-main-hero__inner {
  position: relative;
  z-index: 2;
  width: min(var(--futad-home-width), calc(100vw - var(--futad-home-gutter)));
  min-height: 100%;
  height: 100%;
  margin: 0 auto;
}

.home-main-hero__panel {
  position: absolute;
  right: 0;
  bottom: clamp(44px, 7vh, 72px);
  width: clamp(470px, 43vw, 639px);
  min-height: 0;
  padding: clamp(32px, 3.4vw, 55px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px 5px 0 0;
  background: rgba(0, 0, 0, 0.20);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12.15px);
}

.home-main-hero__panel h1 {
  width: 100%;
  margin: 0 0 clamp(12px, 1.4vw, 20px);
  color: var(--Futad-Green, #00E6A8);
  font-family: var(--futad-font-medium);
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -1.44px;
}

.home-main-hero__panel p {
  width: 100%;
  max-width: 545px;
  margin: 0 0 clamp(20px, 2.1vw, 31px);
  color: #FFF;
  font-family: var(--futad-font-regular);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
}

.home-main-hero__slider {
  position: absolute;
  left: 0;
  bottom: clamp(44px, 6.4vh, 64px);
  width: 304px;
  color: #ffffff;
}

.home-main-hero__slider-top {
  width: 284px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
}

.home-main-hero__arrows {
  display: flex;
  align-items: center;
  gap: 13px;
}

.home-main-hero__arrow {
  width: 26px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.home-main-hero__arrow svg {
  width: 26px;
  height: 22px;
  display: block;
  overflow: visible;
}

.home-main-hero__arrow--prev {
  color: #525252;
}

.home-main-hero__progress {
  width: 284px;
  height: 6px;
  padding: 1px;
  margin-bottom: 9px;
  border-radius: 5px;
  background: #3C3C3C;
}

.home-main-hero__progress span {
  display: block;
  height: 4px;
  border-radius: 5px;
  background: linear-gradient(180deg, #7B61FF 0%, #A855F7 100%);
  transition: width 300ms ease;
}

.home-main-hero__slider p {
  width: 284px;
  margin: 0;
  padding: 10px 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
}

.home-hero {
  min-height: 796px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 0 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.2) 62%, #000000 100%),
    var(--hero-image) center top / cover no-repeat;
}

.page-template-page-about-us .home-hero--story {
  background:
    radial-gradient(760px 560px at 18% 14%, rgba(123, 97, 255, 0.62) 0%, rgba(75, 59, 228, 0.38) 42%, rgba(0, 0, 0, 0) 74%),
    radial-gradient(820px 560px at 58% 43%, rgba(67, 58, 190, 0.46) 0%, rgba(35, 28, 90, 0.38) 48%, rgba(0, 0, 0, 0) 78%),
    linear-gradient(180deg, #050507 0%, #08070f 48%, #000000 100%);
}

.home-hero__panel {
  position: relative;
  width: min(var(--futad-home-width), calc(100vw - var(--futad-home-gutter)));
  height: 406px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 53px 212px 39px;
  border-radius: 5px 5px 0 0;
  background: rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(8px);
  text-align: center;
}

.page-template-page-about-us .home-hero--story .home-hero__panel,
.page-template-page-showreel .showreel-page-hero__panel {
  background: rgba(0, 0, 0, 0.20);
}

.home-hero h1 {
  width: min(703px, 100%);
  margin: 0;
  color: #ffffff;
  font-family: var(--futad-font-semibold) !important;
  font-size: 56px;
  font-weight: 400 !important;
  line-height: 57px;
  letter-spacing: -0.03em;
}

.home-hero h1 span {
  color: var(--futad-green);
}

.home-hero p {
  width: min(728px, 100%);
  margin: 0;
  color: var(--futad-muted);
  font-family: var(--futad-font-medium);
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
}

.futad-button,
.footer-message {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 60px;
  padding: 20px 30px;
  border-radius: 100px;
  background: var(--futad-purple);
  color: #ffffff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  white-space: nowrap;
}

.home-hero__panel .futad-button,
.showreel-page-hero__panel .futad-button {
  width: 197px;
  height: 60px;
  min-height: 60px;
  padding: 20px 30px;
  font-family: var(--futad-font-semibold);
  font-weight: 400;
}

.coming-soon-page__button span {
  white-space: nowrap;
}

.home-vision {
  padding: 197px 0 173px;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 453px) minmax(320px, 1fr);
  align-items: center;
  gap: 128px;
  margin-bottom: 118px;
}

.about-story__images {
  position: relative;
  min-height: 360px;
}

.about-story__image {
  position: absolute;
  width: min(300px, 48%);
  aspect-ratio: 1 / 1;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  background: #d9d9d9;
  color: #111111;
  font-size: 13px;
  line-height: 1.2;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.24);
}

.about-story__image--one {
  top: 12px;
  left: 9%;
  transform: rotate(-9deg);
}

.about-story__image--two {
  right: 6%;
  bottom: 0;
  transform: rotate(9deg);
}

.about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-vision__grid {
  display: grid;
  grid-template-columns: 453px 1fr;
  align-items: center;
  justify-content: space-between;
  gap: 176px;
  margin-bottom: 56px;
}

.section-heading h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--futad-font-medium);
  font-size: 56px;
  font-weight: 500;
  line-height: 57px;
  letter-spacing: -0.03em;
}

.section-heading > span {
  display: block;
  width: 246px;
  height: 2px;
  margin: 18px 0 20px;
  background: var(--futad-gradient);
}

.section-heading p {
  margin: 0;
  color: var(--futad-muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
}

.section-heading--wide {
  width: min(760px, 100%);
}

.section-heading--wide > span {
  width: min(578px, 100%);
}

.home-vision blockquote {
  margin: 0;
  background: var(--Futad-Purple-Gradient, linear-gradient(180deg, #7B61FF 0%, #A855F7 100%));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-family: var(--futad-font-semibold);
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.72px;
  text-align: right;
}

.home-vision__image {
  margin: 0;
  width: 100%;
  height: 436px;
  overflow: hidden;
  border-radius: 5px;
  background: #111111;
}

.home-vision__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-drives {
  padding: 0 0 158px;
}

.home-drives .section-heading,
.home-partners .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.home-drives .section-heading h2,
.home-partners .section-heading h2 {
  margin-right: auto;
  margin-left: auto;
}

.home-drives .section-heading > span,
.home-partners .section-heading > span {
  margin-right: auto;
  margin-left: auto;
}

.home-drives .section-heading p,
.home-partners .section-heading p {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.home-drives__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 29px;
}

.home-drive-card {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  min-height: 208px;
  padding: 26px 19px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  text-align: center;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.page-template-page-about-us .home-drive-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.page-template-page-about-us .home-drive-card:hover {
  background: #7b61ff;
  border-color: transparent;
  box-shadow: none;
  transform: none;
  text-align: center;
}

.page-template-page-about-us .home-drive-card:hover::before {
  opacity: 1;
}

.home-drive-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #ffffff;
  font-family: var(--futad-font-medium);
  font-size: 36px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: -0.02em;
}

.home-drive-card span {
  position: relative;
  z-index: 1;
  display: block;
  width: 156px;
  height: 3px;
  margin: 13px auto;
  background: var(--futad-gradient);
}

.home-drive-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
}

.page-template-page-about-us .home-drive-card p {
  font-family: var(--futad-font-medium);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  text-align: center;
}

.page-template-page-about-us .home-drive-card:hover span {
  margin: 13px auto;
}

.page-template-page-about-us .home-drive-card:hover p {
  max-width: none;
  margin: 0 auto;
  font-family: var(--futad-font-medium);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  text-align: center;
}

.about-what {
  padding: 96px 0 124px;
  background:
    radial-gradient(680px 420px at 50% 18%, rgba(44, 50, 164, 0.34), rgba(0, 0, 0, 0) 72%),
    linear-gradient(180deg, #010011 0%, #02001d 100%);
  border-radius: 0 0 30px 30px;
}

.about-what .section-heading,
.about-achievements .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.about-what .section-heading h2,
.about-achievements .section-heading h2,
.about-what .section-heading > span,
.about-achievements .section-heading > span,
.about-what .section-heading p,
.about-achievements .section-heading p {
  margin-right: auto;
  margin-left: auto;
}

.about-what .section-heading p {
  width: min(1112px, 100%);
  background: linear-gradient(92.43deg, #00E6A8 2.04%, #00C6FF 52.04%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-family: var(--futad-font-medium);
  font-size: 26px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: -0.02em;
}

.about-what__grid {
  width: min(818px, 100%);
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.about-what-card {
  min-width: 0;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 24px 17px 0;
  border: 1px solid rgba(123, 97, 255, 0.28);
  border-radius: 5px;
  background: #050416;
  text-align: center;
}

.about-what-card:nth-child(4) {
  grid-column: 1 / span 3;
  width: auto;
  padding: 25px 39px 0 43px;
  justify-self: stretch;
}

.about-what-card:nth-child(5) {
  grid-column: 4 / span 3;
  width: auto;
  padding: 25px 39px 0 43px;
  justify-self: stretch;
}

.about-what-card:nth-child(n + 4) {
  min-height: 187px;
}

.about-what-card:nth-child(n + 4) .about-what-card__image {
  min-height: 104px;
}

.about-what-card__image {
  width: 100%;
  height: auto;
  min-height: 260px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #d9d9d9;
  color: #111111;
  font-size: 13px;
  line-height: 1.2;
}

.about-what-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-what-card h3 {
  min-height: 72px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
  color: #ffffff;
  font-family: var(--futad-font-medium);
  font-size: 20px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.02em;
  text-align: center;
}

.about-what-card:nth-child(n + 4) h3 {
  min-height: 58px;
  padding: 14px 0 12px;
}

.about-achievements {
  padding: 134px 0 152px;
  background: #000000;
}

.about-achievements .section-heading p {
  width: min(720px, 100%);
  font-size: 15px;
  line-height: 20px;
}

.about-achievements__grid {
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-achievement-card {
  min-width: 0;
  text-align: center;
}

.about-achievement-card__image {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 3px;
  background: #d9d9d9;
  color: #111111;
  font-size: 13px;
  line-height: 1.2;
}

.about-achievement-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-achievement-card h3 {
  margin: 18px 0 2px;
  color: #ffffff;
  font-family: var(--futad-font-medium);
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
}

.about-achievement-card p {
  margin: 0;
  color: var(--futad-muted);
  font-size: 13px;
  line-height: 16px;
}

.story-scroll-cue {
  width: 58px;
  min-height: 62px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  text-align: center;
  transition: color 180ms ease, transform 180ms ease;
  animation: futad-scroll-cue-bob 2.4s ease-in-out infinite;
}

.story-scroll-cue__pill {
  width: 22px;
  height: 42px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: 1.5px solid var(--futad-purple);
  border-radius: 100px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.story-scroll-cue__chevron {
  width: 9px;
  height: 9px;
  border-right: 1.25px solid var(--futad-purple);
  border-bottom: 1.25px solid var(--futad-purple);
  transform: rotate(45deg);
  animation: futad-scroll-chevron 1.35s ease-in-out infinite;
}

.story-scroll-cue__chevron:nth-child(2) {
  animation-delay: 160ms;
}

.story-scroll-cue__text {
  color: #ffffff;
  font-family: var(--futad-font-regular);
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  white-space: nowrap;
}

.story-scroll-cue:hover,
.story-scroll-cue:focus-visible {
  color: var(--futad-green);
  transform: translateY(3px);
}

.story-scroll-cue:hover .story-scroll-cue__pill,
.story-scroll-cue:focus-visible .story-scroll-cue__pill {
  border-color: var(--futad-green);
  background-color: rgba(0, 230, 168, 0.08);
  box-shadow: 0 0 18px rgba(123, 97, 255, 0.28), 0 0 12px rgba(0, 230, 168, 0.18);
}

.story-scroll-cue:hover .story-scroll-cue__chevron,
.story-scroll-cue:focus-visible .story-scroll-cue__chevron {
  border-color: var(--futad-green);
}

.story-scroll-cue:hover .story-scroll-cue__text,
.story-scroll-cue:focus-visible .story-scroll-cue__text {
  color: var(--futad-green);
}

.futad-reduced-motion .story-scroll-cue,
.futad-reduced-motion .story-scroll-cue__chevron {
  animation: none;
}

.home-team {
  padding: 0 0 156px;
}

.home-team .section-heading {
  margin-right: auto;
  margin-left: auto;
  align-items: center;
  text-align: center;
}

.home-team .section-heading h2 {
  display: flex;
  width: 239px;
  max-width: 100%;
  height: 69px;
  margin-right: auto;
  margin-left: auto;
  padding: 10px 0 20px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: var(--futad-font-medium);
  font-size: 56px;
  font-style: normal;
  font-weight: 500;
  line-height: 57px;
  letter-spacing: -0.03em;
  box-sizing: border-box;
}

.home-team .section-heading > span {
  width: 239px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.home-team .section-heading p {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.home-team__grid {
  width: min(992px, 100%);
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 286px);
  justify-content: start;
  gap: 53px 67px;
}

.home-team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  min-width: 0;
  width: 286px;
  height: 340px;
  min-height: 340px;
  overflow: visible;
  background: #000000;
  transform: none;
}

.home-team-card__image {
  width: 286px;
  height: 286px;
  display: block;
  padding: 0;
  background: transparent;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 5px;
}

.home-team-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 5px;
  filter: grayscale(1);
  transform: none;
}

.home-team-card__body {
  width: 286px;
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
  gap: 1px;
  border-radius: 5px;
  background: rgba(67, 67, 67, 0.2);
  box-sizing: border-box;
  transition:
    background 220ms ease,
    color 220ms ease;
}

.home-team-card__body strong,
.home-team-card__body span {
  display: block;
  width: 286px;
  color: #ffffff;
  white-space: nowrap;
  text-align: center;
}

.home-team-card__body strong {
  height: auto;
  font-family: var(--futad-font-semibold);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  overflow: visible;
}

.home-team-card__body span {
  height: auto;
  margin-top: 0;
  font-family: var(--futad-font-regular);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  overflow: visible;
}

.home-team-card:hover .home-team-card__body,
.home-team-card:focus-within .home-team-card__body {
  background: linear-gradient(92.43deg, #00E6A8 2.04%, #00C6FF 52.04%);
}

.home-team-card:hover,
.home-team-card:focus-within {
  transform: none;
  box-shadow: none;
}

.home-team-card:hover img,
.home-team-card:focus-within img {
  transform: none;
}

.page-template-page-about-us .home-team-card:hover img,
.page-template-page-about-us .home-team-card:focus-within img {
  transform: none;
}

.home-team-card:hover .home-team-card__body strong,
.home-team-card:hover .home-team-card__body span,
.home-team-card:focus-within .home-team-card__body strong,
.home-team-card:focus-within .home-team-card__body span {
  color: #000000;
}

.home-partners {
  padding: 0 0 245px;
}

.home-partners .section-heading p {
  margin-top: 20px;
}

.home-partners__logos {
  width: 100%;
  margin-top: 64px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000000 7%, #000000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000000 7%, #000000 93%, transparent 100%);
}

.home-partners__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 64px;
  animation: futad-partners-marquee 120s linear infinite;
  will-change: transform;
}

.home-partners__logos:hover .home-partners__track {
  animation-play-state: paused;
}

.home-partners__logo {
  width: 142px;
  min-width: 142px;
  min-height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-partners__logo img {
  max-width: 142px;
  max-height: 85px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.5);
  opacity: 0.9;
}

@media (prefers-reduced-motion: reduce) {
  .home-partners__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
}

.home-empty {
  color: var(--futad-muted);
}

.site-footer {
  position: relative;
  background: linear-gradient(92.89deg, #00E6A8 -8.41%, #00C6FF 102.31%);
  color: #000000;
  padding: 0;
}

.footer-inner {
  position: relative;
  width: min(var(--futad-home-width), calc(100vw - var(--futad-home-gutter)));
  min-height: 827px;
  margin: 0 auto;
  display: block;
}

.site-footer__cta {
  position: absolute;
  left: 0;
  top: 183px;
}

.site-footer__cta h2 {
  margin: 0 0 27px;
  color: #000000;
  font-size: 96px;
  font-weight: 500;
  line-height: 102px;
  letter-spacing: -0.025em;
}

.footer-message {
  min-width: 239px;
  background: var(--futad-purple);
  color: #ffffff;
}

.site-footer__socials {
  position: absolute;
  right: 0;
  top: 191px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}

.site-footer__socials a {
  color: #000000;
  font-size: 22px;
  line-height: 36px;
  letter-spacing: -0.025em;
}

.site-footer__bottom {
  position: absolute;
  left: 15px;
  right: 0;
  bottom: 171px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.site-footer__brand {
  min-width: 119px;
}

.site-footer__brand .custom-logo-link,
.site-footer__brand a {
  display: inline-flex;
  align-items: center;
  color: #000000;
  font-size: 31px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.site-footer__brand .custom-logo {
  width: 119px;
  max-width: 119px;
  max-height: 29px;
  object-fit: contain;
  filter: brightness(0);
}

.site-footer__menu {
  flex: 0 1 auto;
}

.site-footer__menu-list {
  display: flex;
  align-items: center;
  gap: 48px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__menu-list a {
  color: #000000;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
}

.site-footer__divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 112px;
  width: 100%;
  margin: 0;
  transform: none;
  border-top: 2px solid #000000;
}

.site-footer__copyright {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 49px;
  margin: 0;
  color: #000000;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.025em;
  text-align: center;
}

.site-footer__copyright span {
  display: inline-block;
  margin: 0 24px;
}

@media (max-width: 1180px) {
  .primary-nav ul {
    gap: 4px;
  }
  .primary-nav a {
    padding: 14px 12px;
    font-size: 14px;
  }
  .home-hero__panel {
    padding-left: 80px;
    padding-right: 80px;
  }
  .home-vision__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  .home-team__grid {
    grid-template-columns: repeat(2, 286px);
    width: min(639px, 100%);
    justify-content: center;
  }
  .home-drives__cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-partners__track {
    gap: 48px;
  }
}

@media (max-width: 820px) {
  body.nav-open {
    overflow: hidden;
  }
  .site-header,
  body.home .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    z-index: 10000;
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0, 0, 0, 0.20);
    -webkit-backdrop-filter: blur(12.15px);
    backdrop-filter: blur(12.15px);
    border-bottom: 0;
  }
  body.admin-bar .site-header,
  body.admin-bar.home .site-header {
    top: 46px !important;
  }
  .header-inner {
    width: 100%;
    padding: 0;
  }
  .nav-shell {
    width: 100%;
    height: 60px;
    min-height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 18px;
    gap: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .site-header.is-menu-open,
  body.home .site-header.is-menu-open {
    background: #0a0a0a;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .nav-logo {
    position: static;
    transform: none;
    height: 24px;
    padding: 0;
    border: 0;
  }
  .nav-logo img,
  .nav-logo .custom-logo {
    width: 93px;
    max-width: 93px;
    max-height: 24px;
  }
  .nav-logo a {
    font-size: 28px;
    line-height: 24px;
  }
  .site-header .nav-toggle {
    width: 24px;
    height: 24px;
    display: inline-flex;
    flex: 0 0 24px;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 4px;
    border: 0;
    background: transparent;
  }
  .site-header .nav-toggle span {
    width: 18px;
    height: 2px;
    background: #ffffff;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }
  .site-header.is-menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .site-header.is-menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .site-header.is-menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .primary-nav,
  .nav-contact {
    display: none;
  }
  .site-header.is-menu-open .primary-nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    display: block;
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);
    padding: 16px 16px 24px;
    background: #0A0A0A;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .site-header.is-menu-open .primary-nav ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: nowrap;
    width: 100%;
  }
  .site-header.is-menu-open .primary-nav li {
    display: block;
    width: 100%;
  }
  .site-header.is-menu-open .primary-nav a {
    width: 100%;
    min-height: 43px;
    justify-content: flex-start;
    padding: 16px 20px;
    border-radius: 5px;
    background: transparent;
    color: #ffffff;
  }
  .site-header.is-menu-open .primary-nav a::after {
    left: 20px;
    right: 20px;
    bottom: 7px;
  }
  .site-header.is-menu-open .nav-services-menu__toggle {
    position: relative;
    padding-right: 44px;
  }
  .site-header.is-menu-open .services-mega-menu {
    position: static;
    display: flex;
    width: 100%;
    height: auto;
    max-height: 0;
    padding: 0 20px;
    margin-top: 0;
    gap: 0;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #0A0A0A;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    overflow: hidden;
    transition:
      max-height 240ms ease,
      opacity 180ms ease,
      visibility 180ms ease,
      margin 180ms ease,
      padding 180ms ease;
  }
  .site-header.is-menu-open .nav-services-menu.is-services-open .services-mega-menu {
    max-height: min(56vh, 620px);
    padding: 18px 20px 4px;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .site-header.is-menu-open .primary-nav .nav-services-menu__toggle::before,
  .site-header.is-menu-open .primary-nav .nav-services-menu__toggle::after {
    left: auto;
    bottom: auto;
    opacity: 1;
    transform-origin: center;
  }
  .site-header.is-menu-open .nav-services-menu__toggle::before,
  .site-header.is-menu-open .nav-services-menu__toggle::after {
    content: "";
    position: absolute;
    order: initial;
    right: 20px;
    top: 50%;
    width: 14px;
    height: 2px;
    border: 0;
    border-radius: 999px;
    background: currentColor;
    transform: translateY(-50%);
  }
  .site-header.is-menu-open .nav-services-menu__toggle::after {
    transform: translateY(-50%) rotate(90deg);
    transition: transform 180ms ease;
  }
  .site-header.is-menu-open .nav-services-menu.is-services-open .nav-services-menu__toggle::after {
    transform: translateY(-50%) rotate(0deg);
  }
  .site-header.is-menu-open .services-mega-menu__grid {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 16px;
    column-gap: 0;
  }
  .site-header.is-menu-open .services-mega-menu h2 {
    margin: 0 0 12px;
    color: var(--futad-green);
    background: var(--futad-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--futad-font-semibold);
    font-size: 15px;
    font-weight: 400;
    line-height: 19px;
  }
  .site-header.is-menu-open .services-mega-menu h2:not(:first-child) {
    margin-top: 16px;
  }
  .site-header.is-menu-open .primary-nav .services-mega-menu a {
    width: auto;
    min-height: 0;
    padding: 0;
    margin: 0 0 12px;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.68);
    font-family: var(--futad-font-medium);
    font-size: 15px;
    font-weight: 400;
    line-height: 19px;
  }
  .site-header.is-menu-open .primary-nav .services-mega-menu h2 .services-mega-menu__heading-link {
    margin: 0;
    color: var(--futad-green);
    background: var(--futad-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--futad-font-semibold);
    font-size: 15px;
    font-weight: 400;
    line-height: 19px;
  }
  .site-header.is-menu-open .primary-nav .services-mega-menu a::after {
    display: none;
  }
  .site-header.is-menu-open .primary-nav .menu-item-has-children > a,
  .site-header.is-menu-open .primary-nav .current-menu-item > a,
  .site-header.is-menu-open .primary-nav .current_page_item > a {
    background: #171717;
  }
  .site-header.is-menu-open .nav-contact {
    display: none;
  }
  .site-header.is-menu-open .nav-contact-mobile {
    display: block;
  }
  .site-header.is-menu-open .primary-nav .nav-contact-mobile a {
    min-height: 50px;
    justify-content: center;
    margin-top: 12px;
    border-radius: 5px;
    background: linear-gradient(94.94deg, #7B61FF 24.89%, #A855F7 53.98%);
    color: #ffffff;
  }
  .site-header.is-menu-open .primary-nav .nav-contact-mobile a::after {
    display: none;
  }
  .nav-socials {
    display: none;
  }
  .home-main-hero {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 75px 24px 40px;
    overflow: visible;
  }
  .home-main-hero__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    min-height: 0;
  }
  .home-main-hero__media {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 390 / 382;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 5px;
  }
  .home-main-hero__shade {
    display: none;
  }
  .home-main-hero__panel {
    position: relative;
    order: 1;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    width: 100%;
    min-height: 0;
    margin-top: 18px;
    padding: 22px;
    background: rgba(0, 0, 0, 0.20);
    border-color: rgba(255, 255, 255, 0.14);
  }
  .home-main-hero__panel h1 {
    width: 100%;
    margin-bottom: 11px;
    color: var(--Futad-Green, #00E6A8);
    font-family: var(--futad-font-medium);
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.75px;
  }
  .home-main-hero__panel p {
    width: 100%;
    margin-bottom: 24px;
    max-height: none;
    overflow: visible;
    color: #FFF;
    font-family: var(--futad-font-regular);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
  }
  .home-main-hero__panel .futad-button {
    width: 100%;
    min-height: 50px;
    height: 50px;
    padding: 15px 30px;
    border-radius: 999px;
    background: linear-gradient(94.94deg, #7B61FF 24.89%, #A855F7 53.98%);
  }
  .home-main-hero__slider {
    position: relative;
    order: 2;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 26px;
  }
  .home-main-hero__arrow {
    width: 26px;
    height: 24px;
  }
  .home-main-hero__arrow svg {
    width: 26px;
    height: 22px;
  }
  .home-main-hero__slider-top,
  .home-main-hero__progress {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  .home-main-hero__slider p {
    width: 100%;
    text-align: center;
  }
  .home-hero {
    min-height: 720px;
    padding-top: 140px;
  }
  .home-hero__panel {
    width: calc(100vw - 32px);
    min-height: 0;
    padding: 44px 24px;
  }
  .home-hero h1,
  .section-heading h2 {
    font-size: 42px;
    line-height: 44px;
  }
  .home-team .section-heading h2 {
    width: 239px;
    height: 69px;
    font-size: 56px;
    line-height: 57px;
    letter-spacing: -0.03em;
  }
  .home-hero p,
  .section-heading p,
  .home-drive-card p {
    font-size: 16px;
    line-height: 22px;
  }
  .home-vision {
    padding: 96px 0;
  }
  .about-story {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 86px;
  }
  .about-story__images {
    min-height: 300px;
  }
  .about-story__image {
    width: min(230px, 56%);
  }
  .home-vision__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .home-vision blockquote {
    text-align: right;
    font-size: 30px;
    line-height: normal;
    letter-spacing: -0.6px;
  }
  .home-vision__image {
    height: auto;
    aspect-ratio: 1091 / 436;
  }
  .home-drives,
  .about-what,
  .about-achievements,
  .home-team,
  .home-partners {
    padding-bottom: 96px;
  }
  .about-what {
    padding-top: 80px;
    border-radius: 0 0 22px 22px;
  }
  .about-achievements {
    padding-top: 96px;
  }
  .about-what .section-heading p {
    font-size: 22px;
    line-height: 29px;
  }
  .about-what__grid,
  .about-achievements__grid {
    margin-top: 44px;
  }
  .about-achievements__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 16px;
  }
  .home-team__grid {
    grid-template-columns: 286px;
    width: 286px;
    max-width: 100%;
    justify-content: center;
  }
  .home-drives__cards {
    grid-template-columns: 1fr;
  }
  .home-team__grid {
    margin-top: 40px;
    row-gap: 41px;
  }
  .home-partners__track {
    gap: 28px;
  }
  .footer-inner {
    min-height: 680px;
  }
  .site-footer__cta {
    top: 72px;
  }
  .site-footer__cta h2 {
    font-size: 56px;
    line-height: 62px;
  }
  .site-footer__socials {
    top: 86px;
  }
  .site-footer__bottom {
    left: 0;
    bottom: 150px;
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer__menu-list {
    flex-wrap: wrap;
    gap: 18px 28px;
  }
  .site-footer__menu-list a,
  .site-footer__copyright,
  .site-footer__socials a {
    font-size: 16px;
  }
}

@media (max-width: 820px) and (max-height: 760px) {
  .home-main-hero {
    padding-top: 68px;
    padding-bottom: 28px;
  }
  .home-main-hero__media {
    aspect-ratio: 390 / 330;
  }
  .home-main-hero__panel {
    margin-top: 16px;
    padding: 20px;
  }
  .home-main-hero__panel h1 {
    margin-bottom: 8px;
    font-size: 23px;
    line-height: 29px;
    letter-spacing: -0.69px;
  }
  .home-main-hero__panel p {
    max-height: none;
    overflow: visible;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 17px;
  }
  .home-main-hero__panel .futad-button {
    min-height: 48px;
    height: 48px;
  }
  .home-main-hero__slider {
    margin-top: 20px;
  }
}

@media (max-width: 820px) and (max-height: 760px) {
  body.admin-bar .home-main-hero {
    padding-top: 62px;
  }
}

@media (max-width: 520px) {
  .home-container {
    width: calc(100vw - 32px);
  }
  .primary-nav a {
    min-height: 34px;
    padding: 8px 10px;
  }
  .home-hero h1,
  .section-heading h2 {
    font-size: 34px;
    line-height: 38px;
  }
  .home-team .section-heading h2 {
    width: 239px;
    height: 69px;
    font-size: 56px;
    line-height: 57px;
    letter-spacing: -0.03em;
  }
  .home-drive-card h3 {
    font-size: 28px;
    line-height: 34px;
  }
  .about-story__images {
    min-height: 248px;
  }
  .about-story__image {
    width: min(178px, 58%);
    border-radius: 12px;
  }
  .about-story__image--one {
    left: 2%;
  }
  .about-story__image--two {
    right: 2%;
  }
  .about-what__grid {
    grid-template-columns: 1fr;
    width: min(286px, 100%);
  }
  .about-what-card,
  .about-what-card:nth-child(4),
  .about-what-card:nth-child(5) {
    grid-column: auto;
  }
  .about-what .section-heading p {
    font-size: 18px;
    line-height: 24px;
  }
  .about-what-card h3 {
    font-size: 12px;
    line-height: 14px;
  }
  .about-achievements__grid {
    grid-template-columns: 1fr;
    width: min(286px, 100%);
  }
  .home-team-card__image {
    width: 286px;
    height: 286px;
    aspect-ratio: auto;
  }
  .home-team-card__image img {
    width: 100%;
    height: 100%;
  }
  .site-footer__socials {
    position: static;
    padding-top: 260px;
    align-items: flex-start;
  }
  .footer-inner {
    min-height: 760px;
  }
  .site-footer__cta h2 {
    font-size: 44px;
    line-height: 50px;
  }
}

@media (max-width: 520px) {
  .story-scroll-cue {
    display: none !important;
  }

  .page-template-page-about-us .home-container {
    width: calc(100vw - 28px);
  }

  .page-template-page-about-us .home-hero--story {
    min-height: 684px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 24px;
    background: #000000 url('assets/images/splash.4edddc9a.jpg.png') center top / cover no-repeat;
  }

  .page-template-page-about-us .home-hero--story .home-hero__panel {
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 120px 0 0;
    align-items: flex-start;
    gap: 0;
    border-radius: 0;
    background: transparent !important;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    text-align: left;
  }

  .page-template-page-about-us .home-hero--story h1 {
    width: min(366px, 100%);
    font-size: 56px;
    line-height: 57px;
    letter-spacing: -0.03em;
  }

  .page-template-page-about-us .home-hero--story p {
    width: min(301px, 100%);
    margin-top: 36px;
    color: #D1D5DC;
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
  }

  .page-template-page-about-us .home-hero--story .futad-button {
    display: inline-flex;
    min-height: 50px;
    margin-top: 24px;
    padding: 15px 30px;
  }

  .page-template-page-about-us .story-scroll-cue {
    display: none;
  }

  .page-template-page-about-us .home-vision {
    padding: 52px 0 108px;
  }

  .page-template-page-about-us .home-vision__grid {
    display: block;
    margin-bottom: 58px;
  }

  .page-template-page-about-us .section-heading,
  .page-template-page-about-us .section-heading--wide {
    width: 100%;
  }

  .page-template-page-about-us .section-heading h2 {
    width: min(389px, 100%);
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.02em;
  }

  .page-template-page-about-us .home-drives .section-heading h2,
  .page-template-page-about-us .home-partners .section-heading h2 {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .page-template-page-about-us .section-heading > span {
    width: 246px;
    height: 2px;
    margin: 18px 0 20px;
  }

  .page-template-page-about-us .home-drives .section-heading > span,
  .page-template-page-about-us .home-partners .section-heading > span {
    margin-right: auto;
    margin-left: auto;
  }

  .page-template-page-about-us .section-heading p {
    width: min(406px, 100%);
    color: #D1D5DC;
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
  }

  .page-template-page-about-us .home-vision blockquote {
    width: min(310px, 100%);
    margin: 41px 0 0 auto;
    font-family: var(--futad-font-semibold);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.36px;
    text-align: right;
    background: var(--Futad-Purple-Gradient, linear-gradient(180deg, #7B61FF 0%, #A855F7 100%));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }

  .page-template-page-about-us .home-vision__image {
    width: 100vw;
    height: 172px;
    margin-left: calc(50% - 50vw);
    border-radius: 0;
    aspect-ratio: auto;
  }

  .page-template-page-about-us .home-drives {
    padding: 0 0 77px;
  }

  .page-template-page-about-us .home-drives .section-heading p {
    margin-top: 37px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .page-template-page-about-us .home-drives__cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }

  .page-template-page-about-us .home-drive-card {
    min-height: 0;
    padding: 26px 19px;
    background: rgba(255, 255, 255, 0.1);
  }

  .page-template-page-about-us .home-drive-card h3 {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.02em;
  }

  .page-template-page-about-us .home-drive-card span {
    width: 156px;
    height: 3px;
  }

  .page-template-page-about-us .home-drive-card p {
    color: #ffffff;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    text-align: center;
  }

  .page-template-page-about-us .home-team {
    padding: 28px 0 100px;
  }

  .page-template-page-about-us .home-team .section-heading h2 {
    width: 239px;
    height: 69px;
    margin-right: auto;
    margin-left: auto;
    padding: 10px 0 20px;
    font-family: var(--futad-font-medium);
    font-size: 56px;
    font-weight: 500;
    line-height: 57px;
    letter-spacing: -0.03em;
    text-align: center;
  }

  .page-template-page-about-us .home-team .section-heading > span {
    width: 239px;
    margin-right: auto;
    margin-left: auto;
  }

  .page-template-page-about-us .home-team .section-heading p {
    width: min(320px, 100%);
    margin-top: 37px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .page-template-page-about-us .home-team__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 44px;
  }

  .page-template-page-about-us .home-team-card {
    width: min(286px, calc(100vw - 48px));
    height: auto;
    min-height: 0;
    margin: 0;
  }

  .page-template-page-about-us .home-team-card + .home-team-card {
    margin-top: 0;
  }

  .page-template-page-about-us .home-team-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 0;
  }
  .page-template-page-about-us .home-team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .page-template-page-about-us .home-team-card__body {
    width: 100%;
    height: 50px;
    padding: 8px 0;
  }

  .page-template-page-about-us .home-team-card__body strong {
    width: 100%;
    font-size: 20px;
    line-height: 25px;
  }

  .page-template-page-about-us .home-team-card__body span {
    width: 100%;
    font-size: 12px;
    line-height: 14px;
  }

  .page-template-page-about-us .home-partners {
    padding: 0 0 142px;
  }

  .page-template-page-about-us .home-partners .section-heading p {
    width: 100%;
    margin-top: 7px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .page-template-page-about-us .home-partners__logos {
    width: 100%;
    margin: 45px auto 0;
  }

  .page-template-page-about-us .home-partners__track {
    gap: 34px;
  }

  .page-template-page-about-us .home-partners__logo img {
    max-width: 142px;
    max-height: 85px;
  }

  .site-footer {
    overflow: hidden;
  }

  .footer-inner {
    width: 100%;
    min-height: 882px;
  }

  .site-footer__cta {
    top: 62px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .site-footer__cta h2 {
    width: 317px;
    margin-bottom: 48px;
    font-size: 40px;
    line-height: 45px;
    text-align: center;
  }

  .footer-message {
    min-width: 239px;
    min-height: 50px;
    padding: 15px 30px;
  }

  .site-footer__bottom {
    top: 316px;
    bottom: auto;
    left: 0;
    right: 0;
    height: 430px;
    display: block;
  }

  .site-footer__menu {
    width: 170px;
    margin: 0 auto;
  }

  .site-footer__menu-list {
    flex-direction: column;
    align-items: center;
    gap: 23px;
  }

  .site-footer__menu-list a {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
  }

  .site-footer__brand {
    position: absolute;
    top: 401px;
    left: 23px;
    min-width: 119px;
  }

  .site-footer__socials {
    position: absolute;
    top: 650px;
    right: 15px;
    padding-top: 0;
    align-items: flex-end;
  }

  .site-footer__socials a {
    font-size: 12px;
    line-height: 27px;
  }

  .site-footer__divider {
    bottom: 95px;
    border-top-color: #ffffff;
  }

  .site-footer__copyright {
    bottom: 36px;
    padding: 0 18px;
    font-size: 10px;
    line-height: 30px;
  }

  .site-footer__copyright span {
    margin: 0 8px;
  }
}

@media (max-width: 520px) {
  .page-template-page-core-services .core-services-page {
    padding: 195px 0 129px;
    overflow: hidden;
    background: #000000;
  }

  .page-template-page-core-services .core-services-page__glow {
    inset: auto;
    left: -195px;
    top: -133px;
    width: 491px;
    height: 992px;
    display: none;
    overflow: visible;
    background: linear-gradient(90deg, rgba(159, 100, 255, 0.4) 0%, rgba(75, 59, 228, 0.4) 71.42%);
    filter: blur(150px);
    transform: rotate(-87.3deg);
  }

  .page-template-page-core-services .core-services-page__glow::before,
  .page-template-page-core-services .core-services-page__glow::after,
  .page-template-page-core-services .core-services-page::before {
    display: none;
  }

  .page-template-page-core-services .core-services-page__inner {
    width: 100%;
  }

  .page-template-page-core-services .core-services-hero {
    width: calc(100vw - 48px);
    min-height: 0;
    margin: 0 auto 80px;
    display: block;
    padding: 0;
    background: transparent;
    border-radius: 0;
    text-align: left;
  }

  .page-template-page-core-services .core-services-hero h1 {
    width: min(366px, 100%);
    font-size: 56px;
    line-height: 57px;
    letter-spacing: -0.03em;
  }

  .page-template-page-core-services .core-services-hero h1 span {
    color: #ffffff;
  }

  .page-template-page-core-services .core-services-hero p {
    width: min(324px, 100%);
    margin: 96px 0 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
  }

  .page-template-page-core-services .core-services-grid {
    width: min(384px, calc(100vw - 44px));
    margin: 0 auto;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .page-template-page-core-services .core-service-card,
  .page-template-page-core-services .core-service-card--large,
  .page-template-page-core-services .core-service-card--small,
  .page-template-page-core-services .core-service-card--wide {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    height: auto;
    grid-column: auto;
    grid-row: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 16px 16px 0;
    border: 1px solid rgba(123, 97, 255, 0.28);
    border-radius: 5px;
    background: #050416;
    box-shadow: inset 0 0 40px rgba(123, 97, 255, 0.08);
    text-align: center;
  }

  .page-template-page-core-services .core-services-grid .core-service-card--large:nth-child(1),
  .page-template-page-core-services .core-services-grid .core-service-card--small:nth-child(2),
  .page-template-page-core-services .core-services-grid .core-service-card--small:nth-child(3),
  .page-template-page-core-services .core-services-grid .core-service-card--large:nth-child(4),
  .page-template-page-core-services .core-services-grid .core-service-card--wide:nth-child(5),
  .page-template-page-core-services .core-services-grid .core-service-card--wide:nth-child(6) {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .page-template-page-core-services .core-services-grid .core-service-card:nth-child(n + 6) {
    display: none;
  }

  .page-template-page-core-services .core-service-card__image,
  .page-template-page-core-services .core-service-card--large .core-service-card__image,
  .page-template-page-core-services .core-service-card--small .core-service-card__image,
  .page-template-page-core-services .core-service-card--wide .core-service-card__image,
  .page-template-page-core-services .core-services-grid .core-service-card--wide:nth-child(6) .core-service-card__image {
    width: 100%;
    height: auto;
    min-height: 190px;
    flex: 0 0 auto;
    border-radius: 5px;
  }

  .page-template-page-core-services .core-service-card__title,
  .page-template-page-core-services .core-service-card--large .core-service-card__title,
  .page-template-page-core-services .core-service-card--small .core-service-card__title,
  .page-template-page-core-services .core-service-card--wide .core-service-card__title,
  .page-template-page-core-services .core-services-grid .core-service-card--wide:nth-child(6) .core-service-card__title {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
    min-height: 58px;
    margin-top: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0;
    text-align: center;
  }

  .page-template-page-core-services .site-header,
  .page-template-page-core-services .mobile-header {
    z-index: 20;
  }

  .page-template-page-contact-us .contact-page {
    padding: 195px 0 168px;
    overflow: hidden;
    background: #000000;
  }

  .page-template-page-contact-us .contact-page__glow {
    left: -195px;
    top: -133px;
    width: 491px;
    height: 992px;
    display: none;
  }

  .page-template-page-contact-us .contact-page__inner {
    width: calc(100vw - 48px);
    gap: 0;
  }

  .page-template-page-contact-us .contact-page__inner > h1 {
    width: min(324px, 100%);
    min-height: 0;
    margin: 0 0 128px;
    display: block;
    padding: 0;
    background: transparent;
    border-radius: 0;
    font-size: 56px;
    line-height: 57px;
    letter-spacing: -0.03em;
    text-align: left;
  }

  .page-template-page-contact-us .contact-form__cf7--figma,
  .page-template-page-contact-us .contact-form__cf7--figma .wpcf7,
  .page-template-page-contact-us .contact-form__cf7--figma .wpcf7 form,
  .page-template-page-contact-us .contact-message-form {
    width: min(371px, 100%);
    margin: 0 auto;
  }

  .page-template-page-contact-us .contact-message-form {
    gap: 101px;
  }

  .page-template-page-contact-us .contact-message-form__fields {
    gap: 62px;
  }

  .page-template-page-contact-us .contact-message-form__top,
  .page-template-page-contact-us .contact-message-form__top > p {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 36px;
  }

  .page-template-page-contact-us .contact-message-form__top > label,
  .page-template-page-contact-us .contact-message-form__top > p > label {
    flex: 0 0 auto;
    width: 100%;
  }

  .page-template-page-contact-us .contact-message-form label {
    gap: 12px;
    font-size: 16px;
    line-height: 20px;
  }

  .page-template-page-contact-us .contact-message-form input,
  .page-template-page-contact-us .contact-message-form textarea {
    height: 1px;
    padding-bottom: 12px;
  }

  .page-template-page-contact-us .contact-message-form textarea {
    height: 96px;
    padding-bottom: 0;
  }

  .page-template-page-contact-us .contact-message-form__actions,
  .page-template-page-contact-us .contact-message-form__actions p {
    display: flex;
    justify-content: center;
  }

  .page-template-page-contact-us .contact-message-form__actions {
    width: 239px;
    margin: 0 auto;
  }

  .page-template-page-contact-us .contact-message-form__button {
    box-sizing: border-box;
    min-width: 239px;
    min-height: 50px;
    padding: 15px 30px;
  }

  .page-template-page-contact-us .contact-info-panel {
    width: min(370px, 100%);
    min-height: 758px;
    margin: 181px auto 0;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 73px;
    padding: 50px 30px;
  }

  .page-template-page-contact-us .contact-info-panel__heading {
    gap: 38px;
  }

  .page-template-page-contact-us .contact-info-panel__heading h2,
  .page-template-page-contact-us .contact-info-panel__heading p {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.02em;
  }

  .page-template-page-contact-us .contact-info-panel__item {
    gap: 23px;
    font-size: 18px;
    line-height: 22px;
  }

  .page-template-page-coming-soon .coming-soon-page {
    padding: 195px 0 129px;
    overflow: hidden;
    background: #000000;
  }

  .page-template-page-coming-soon .coming-soon-page__glow {
    left: -195px;
    top: -133px;
    width: 491px;
    height: 992px;
    display: none;
  }

  .page-template-page-coming-soon .coming-soon-page__inner {
    width: calc(100vw - 48px);
  }

  .page-template-page-coming-soon .coming-soon-page__hero {
    width: min(324px, 100%);
    min-height: 0;
    gap: 24px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    border-radius: 0;
  }

  .page-template-page-coming-soon .coming-soon-page__hero h1 {
    font-size: 56px;
    line-height: 57px;
    letter-spacing: -0.03em;
  }

  .page-template-page-coming-soon .coming-soon-page__button {
    width: min(295px, 100%);
    height: 50px;
    padding: 15px 22px;
    gap: 10px;
    font-size: 14px;
  }

  .page-template-page-coming-soon .contact-info-panel {
    width: min(370px, 100%);
    min-height: 758px;
    margin: 181px auto 0;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 73px;
    padding: 50px 30px;
  }

  .page-template-page-coming-soon .contact-info-panel__heading {
    gap: 38px;
  }

  .page-template-page-coming-soon .contact-info-panel__heading h2,
  .page-template-page-coming-soon .contact-info-panel__heading p {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.02em;
  }

  .page-template-page-coming-soon .contact-info-panel__item {
    gap: 23px;
    font-size: 18px;
    line-height: 22px;
  }

  .page-template-page-insights .insights-page {
    padding: 195px 0 26px;
    overflow: hidden;
    background: #000000;
  }

  .page-template-page-insights .insights-page__glow {
    display: none;
  }

  .page-template-page-insights .insights-page__inner {
    width: 100%;
  }

  .page-template-page-insights .insights-page-hero {
    width: 100%;
    min-height: 0;
    margin: 0 0 44px;
    padding: 0 24px;
    display: block;
    background: transparent;
    border-radius: 0;
    text-align: left;
    box-sizing: border-box;
  }

  .page-template-page-insights .insights-page-hero h1 {
    width: min(366px, 100%);
    margin: 0;
    font-family: var(--futad-font-semibold);
    font-size: 56px;
    font-weight: 400;
    line-height: 57px;
    letter-spacing: -0.03em;
  }

  .page-template-page-insights .insights-page-hero p {
    width: min(324px, 100%);
    margin: 28px 0 0;
    color: #D1D5DC;
    font-family: var(--futad-font-regular);
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
  }

  .page-template-page-insights .insights-list {
    width: min(389px, calc(100vw - 38px));
    margin: 0 auto;
    gap: 50px;
  }

  .page-template-page-insights .insights-row {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    min-height: 416px;
    margin: 0;
    padding: 0;
    border-bottom: 0;
  }

  .page-template-page-insights .insights-row__image {
    order: -1;
    width: 100%;
    height: 250px;
    aspect-ratio: auto;
    border-radius: 10px;
  }

  .page-template-page-insights .insights-row__image:hover,
  .page-template-page-insights .insights-row__image:hover img {
    transform: none;
    box-shadow: none;
  }

  .page-template-page-insights .insights-row__copy {
    width: min(355px, 100%);
    padding-top: 20px;
  }

  .page-template-page-insights .insights-row__date {
    margin-bottom: 10px;
    color: #9D9D9D;
    font-family: var(--futad-font-semibold);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
  }

  .page-template-page-insights .insights-row h2 {
    width: 100%;
    font-family: var(--futad-font-medium);
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0;
  }

  .page-template-page-insights .insights-row__copy p {
    width: 100%;
    max-height: 34px;
    margin: 16px 0;
    overflow: hidden;
    color: #C5C5C5;
    font-family: var(--futad-font-regular);
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
  }

  .page-template-page-insights .insights-row__read {
    min-height: 22px;
    padding-bottom: 0;
    gap: 4px;
    border-bottom: 1px solid #282828;
    color: #ffffff;
    font-family: var(--futad-font-medium);
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
  }

  .page-template-page-insights .insights-row__read .futad-arrow {
    width: 20px;
    height: 20px;
    color: #ffffff;
  }

  .page-template-page-insights .insights-row__author {
    display: none;
  }

  .page-template-page-insights .insights-load-more-wrap {
    width: min(389px, calc(100vw - 38px));
    margin: 50px auto 0;
  }

  .page-template-page-clients-partners .clients-partners-page {
    padding: 195px 0 77px;
    overflow: hidden;
    background: #000000;
  }

  .page-template-page-clients-partners .clients-partners-page__glow {
    left: -195px;
    top: -133px;
    width: 491px;
    height: 992px;
    display: none;
  }

  .page-template-page-clients-partners .clients-partners-page__inner {
    width: 100%;
  }

  .page-template-page-clients-partners .clients-partners-hero {
    width: 100%;
    min-height: 0;
    margin: 0 0 72px;
    padding: 0 24px;
    display: block;
    background: transparent;
    border-radius: 0;
    text-align: left;
    box-sizing: border-box;
  }

  .page-template-page-clients-partners .clients-partners-hero h1 {
    width: min(366px, 100%);
    margin: 0;
    font-family: var(--futad-font-semibold);
    font-size: 56px;
    font-weight: 400;
    line-height: 57px;
    letter-spacing: -0.03em;
  }

  .page-template-page-clients-partners .clients-partners-hero p {
    width: min(324px, 100%);
    margin: 28px 0 0;
    color: #D1D5DC;
    font-family: var(--futad-font-regular);
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
  }

  .page-template-page-clients-partners .clients-partners-hero .story-scroll-cue {
    margin: 24px auto 0;
  }

  .page-template-page-clients-partners .clients-partners-groups {
    gap: 44px;
    padding: 0 20px;
  }

  .page-template-page-clients-partners .clients-partners-group__head {
    display: block;
    margin: 0 0 25px;
  }

  .page-template-page-clients-partners .clients-partners-group__head h2 {
    width: 100%;
    margin: 0 0 5px;
    font-family: var(--futad-font-semibold);
    font-size: 36px;
    font-weight: 400;
    line-height: 44px;
    letter-spacing: -0.02em;
  }

  .page-template-page-clients-partners .clients-partners-group__head span {
    display: block;
    width: 100%;
    height: 1px;
    border-radius: 84px;
  }

  .page-template-page-clients-partners .clients-partners-logo-grid,
  .page-template-page-clients-partners .clients-partners-group--our-partners .clients-partners-logo-grid,
  .page-template-page-clients-partners .clients-partners-group--banking-sectors .clients-partners-logo-grid,
  .page-template-page-clients-partners .clients-partners-group--international-brands .clients-partners-logo-grid,
  .page-template-page-clients-partners .clients-partners-group--national-brands .clients-partners-logo-grid {
    width: 100%;
    min-height: 129px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 24px;
    padding: 18px 22px;
    border-radius: 20px;
    background: transparent;
    box-sizing: border-box;
  }

  .page-template-page-clients-partners .clients-partners-group--our-partners .clients-partners-logo-grid,
  .page-template-page-clients-partners .clients-partners-group--banking-sectors .clients-partners-logo-grid {
    min-height: 64px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .page-template-page-clients-partners .clients-partners-group--international-brands .clients-partners-logo-grid {
    min-height: 243px;
  }

  .page-template-page-clients-partners .clients-partners-group--national-brands .clients-partners-logo-grid {
    min-height: 336px;
  }

  .page-template-page-clients-partners .clients-partners-logo {
    min-height: 0;
    flex: 0 1 42px;
    padding: 0;
    transform: none;
    box-shadow: none;
  }

  .page-template-page-clients-partners .clients-partners-logo:hover {
    transform: none;
    box-shadow: none;
  }

  .page-template-page-clients-partners .clients-partners-logo img {
    max-width: 62px;
    max-height: 36px;
    opacity: 0.78;
  }

  .page-template-page-clients-partners .clients-partners-group--international-brands .clients-partners-logo,
  .page-template-page-clients-partners .clients-partners-group--national-brands .clients-partners-logo {
    flex-basis: 42px;
  }

  .page-template-page-clients-partners .clients-partners-group--international-brands .clients-partners-logo {
    flex-basis: 74px;
  }

  .page-template-page-clients-partners .clients-partners-group--international-brands .clients-partners-logo img {
    max-width: 92px;
    max-height: 54px;
  }

  .page-template-page-clients-partners .clients-partners-group--national-brands .clients-partners-logo img {
    max-width: 62px;
    max-height: 36px;
  }

  .page-template-page-clients-partners .clients-partners-empty {
    margin: 0;
    padding: 18px 22px;
    border-radius: 20px;
    background: transparent;
    font-size: 14px;
    line-height: 20px;
  }

  .page-template-page-showreel .showreel-page-hero {
    position: relative;
    min-height: 684px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 24px;
    overflow: hidden;
    background: #000000 url('assets/images/splash.4edddc9a.jpg.png') center top / cover no-repeat;
  }

  .page-template-page-showreel .showreel-page-hero::before {
    display: none;
  }

  .page-template-page-showreel .showreel-page-hero__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 120px 0 0;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    border-radius: 0;
    background: transparent !important;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    text-align: left;
  }

  .page-template-page-showreel .showreel-page-hero__panel h1 {
    width: min(366px, calc(100vw - 64px));
    font-size: 56px;
    line-height: 57px;
    letter-spacing: -0.03em;
  }

  .page-template-page-showreel .showreel-page-hero__panel p {
    width: min(324px, calc(100vw - 64px));
    margin-top: 36px;
    color: #D1D5DC;
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
  }

  .page-template-page-showreel .showreel-page-hero__panel .futad-button {
    display: inline-flex;
    min-height: 50px;
    margin-top: 24px;
    padding: 15px 30px;
  }

  .page-template-page-showreel .showreel-page-hero__panel .story-scroll-cue {
    display: none;
  }

  .page-template-page-showreel .showreel-listing {
    padding: 24px 0 36px;
  }

  .page-template-page-showreel .showreel-listing__inner {
    width: 343px;
    max-width: calc(100vw - 48px);
  }

  .page-template-page-showreel .showreel-grid {
    display: flex;
    flex-direction: column;
    gap: 41px;
  }

  .page-template-page-showreel .showreel-card {
    width: 100%;
    min-height: 553px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 5px;
    background: #050505;
    border: 0;
  }

  .page-template-page-showreel .showreel-card:hover {
    transform: none;
    box-shadow: none;
  }

  .page-template-page-showreel .showreel-card__thumb {
    flex: 0 0 auto;
    height: 300px;
    aspect-ratio: auto;
    border-radius: 0;
  }

  .page-template-page-showreel .showreel-card:hover img {
    transform: none;
  }

  .page-template-page-showreel .showreel-card__body {
    flex: 0 0 auto;
    min-height: 0;
    height: 237px;
    padding: 10px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
  }

  .page-template-page-showreel .showreel-card__date {
    margin-bottom: 8px;
    color: #F5F5F5;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
  }

  .page-template-page-showreel .showreel-card__body h2 {
    font-size: 28px;
    line-height: 34px;
    letter-spacing: -0.6px;
  }

  .page-template-page-showreel .showreel-card__body p {
    max-height: 78px;
    margin: 12px 0 12px;
    overflow: hidden;
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
  }

  .page-template-page-showreel .showreel-card__link {
    min-height: 48px;
    padding: 10px 0;
    gap: 4px;
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    letter-spacing: -0.2px;
  }

  .page-template-page-showreel .showreel-pagination {
    width: min(407px, calc(100vw - 22px));
    margin: 36px auto 0;
    display: grid;
    grid-template-columns: 20px 1fr 60px;
    grid-template-rows: 22px 6px 30px;
    row-gap: 9px;
    column-gap: 14px;
    align-items: center;
    font-size: 16px;
    line-height: 20px;
  }

  .page-template-page-showreel .showreel-pagination > span:first-child {
    grid-column: 1;
    grid-row: 1;
  }

  .page-template-page-showreel .showreel-pagination__bar {
    grid-column: 1 / -1;
    grid-row: 2;
    width: min(350px, calc(100vw - 80px));
    justify-self: center;
    height: 6px;
    padding: 1px;
    border-radius: 5px;
    background: #3C3C3C;
  }

  .page-template-page-showreel .showreel-pagination__bar span {
    height: 4px;
    border-radius: 5px;
    background: linear-gradient(180deg, #7B61FF 0%, #A855F7 100%);
  }

  .page-template-page-showreel .showreel-pagination__arrows {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    gap: 13px;
    font-size: 31px;
  }

  .page-template-page-showreel .showreel-pagination__arrows a:last-child,
  .page-template-page-showreel .showreel-pagination__arrows span:last-child {
    color: #ffffff;
  }

  .page-template-page-showreel .showreel-pagination__next {
    display: block;
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: center;
    margin-top: 0;
    color: #ffffff;
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
  }
}

@media (min-width: 521px) and (max-width: 767px) {
  .page-template-page-core-services .core-services-page {
    padding: 195px 0 129px;
    overflow: hidden;
    background: #000000;
  }

  .page-template-page-core-services .core-services-page__glow {
    inset: auto;
    left: -195px;
    top: -133px;
    width: 491px;
    height: 992px;
    display: none;
    overflow: visible;
    background: linear-gradient(90deg, rgba(159, 100, 255, 0.4) 0%, rgba(75, 59, 228, 0.4) 71.42%);
    filter: blur(150px);
    transform: rotate(-87.3deg);
  }

  .page-template-page-core-services .core-services-page__glow::before,
  .page-template-page-core-services .core-services-page__glow::after,
  .page-template-page-core-services .core-services-page::before {
    display: none;
  }

  .page-template-page-core-services .core-services-page__inner {
    width: 100%;
  }

  .page-template-page-core-services .core-services-hero {
    width: calc(100vw - 48px);
    min-height: 0;
    margin: 0 auto 80px;
    display: block;
    padding: 0;
    background: transparent;
    border-radius: 0;
    text-align: left;
  }

  .page-template-page-core-services .core-services-hero h1 {
    width: min(366px, 100%);
    font-size: 56px;
    line-height: 57px;
    letter-spacing: -0.03em;
  }

  .page-template-page-core-services .core-services-hero h1 span {
    color: #ffffff;
  }

  .page-template-page-core-services .core-services-hero p {
    width: min(324px, 100%);
    margin: 96px 0 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
  }

  .page-template-page-core-services .core-services-grid {
    width: min(480px, calc(100vw - 44px));
    height: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .page-template-page-core-services .core-service-card,
  .page-template-page-core-services .core-service-card--large,
  .page-template-page-core-services .core-service-card--small,
  .page-template-page-core-services .core-service-card--wide {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    height: auto;
    grid-column: auto;
    grid-row: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 16px 16px 0;
    border: 1px solid rgba(123, 97, 255, 0.28);
    border-radius: 5px;
    background: #050416;
    box-shadow: inset 0 0 40px rgba(123, 97, 255, 0.08);
    text-align: center;
  }

  .page-template-page-core-services .core-services-grid .core-service-card--large:nth-child(1),
  .page-template-page-core-services .core-services-grid .core-service-card--small:nth-child(2),
  .page-template-page-core-services .core-services-grid .core-service-card--small:nth-child(3),
  .page-template-page-core-services .core-services-grid .core-service-card--large:nth-child(4),
  .page-template-page-core-services .core-services-grid .core-service-card--wide:nth-child(5),
  .page-template-page-core-services .core-services-grid .core-service-card--wide:nth-child(6) {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .page-template-page-core-services .core-services-grid .core-service-card:nth-child(n + 6) {
    display: none;
  }

  .page-template-page-core-services .core-service-card__image,
  .page-template-page-core-services .core-service-card--large .core-service-card__image,
  .page-template-page-core-services .core-service-card--small .core-service-card__image,
  .page-template-page-core-services .core-service-card--wide .core-service-card__image,
  .page-template-page-core-services .core-services-grid .core-service-card--wide:nth-child(6) .core-service-card__image {
    width: 100%;
    height: auto;
    min-height: 220px;
    flex: 0 0 auto;
    border-radius: 5px;
  }

  .page-template-page-core-services .core-service-card__title,
  .page-template-page-core-services .core-service-card--large .core-service-card__title,
  .page-template-page-core-services .core-service-card--small .core-service-card__title,
  .page-template-page-core-services .core-service-card--wide .core-service-card__title,
  .page-template-page-core-services .core-services-grid .core-service-card--wide:nth-child(6) .core-service-card__title {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
    min-height: 58px;
    margin-top: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0;
    text-align: center;
  }
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: var(--futad-font-regular) !important;
  font-weight: 400 !important;
}

.home-hero h1,
.showreel-page-hero__panel h1,
.core-services-hero h1,
.clients-partners-hero h1,
.insights-page-hero h1,
.contact-page__inner > h1,
.coming-soon-page__hero h1,
.media-detail-hero h1,
.not-found-page h1 {
  width: min(728px, 100%);
  color: #ffffff;
  font-family: var(--futad-font-regular) !important;
  font-size: 56px;
  font-weight: 400 !important;
  line-height: 57px;
  letter-spacing: -0.03em;
}

.home-hero h1 span,
.showreel-page-hero__panel h1 span,
.core-services-hero h1 span,
.clients-partners-hero h1 span,
.insights-page-hero h1 span {
  color: var(--futad-green);
}

@media (max-width: 520px) {
  .home-hero h1,
  .showreel-page-hero__panel h1,
  .page-template-page-core-services .core-services-hero h1,
  .page-template-page-clients-partners .clients-partners-hero h1,
  .page-template-page-insights .insights-page-hero h1,
  .page-template-page-contact-us .contact-page__inner > h1,
  .page-template-page-coming-soon .coming-soon-page__hero h1 {
    width: min(366px, 100%);
    font-family: var(--futad-font-regular) !important;
    font-size: 56px;
    font-weight: 400 !important;
    line-height: 57px;
    letter-spacing: -0.03em;
  }
}

.core-services-page,
.clients-partners-page,
.insights-page,
.contact-page,
.coming-soon-page {
  background: #000000 !important;
}

.core-services-page::before,
.clients-partners-page::before,
.insights-page::before,
.contact-page::before,
.coming-soon-page::before,
.page-template-page-core-services .core-services-page::before,
.page-template-page-contact-us .contact-page::before,
.page-template-page-coming-soon .coming-soon-page::before,
.page-template-page-insights .insights-page::before,
.page-template-page-clients-partners .clients-partners-page::before {
  display: block !important;
  width: 602.03px;
  height: 560.53px;
  left: 231px;
  top: 515px;
  background: #7B61FF;
  filter: blur(250px);
}

.core-services-page::after,
.clients-partners-page::after,
.insights-page::after,
.contact-page::after,
.coming-soon-page::after,
.page-template-page-core-services .core-services-page::after,
.page-template-page-contact-us .contact-page::after,
.page-template-page-coming-soon .coming-soon-page::after,
.page-template-page-insights .insights-page::after,
.page-template-page-clients-partners .clients-partners-page::after {
  display: block !important;
  width: 602.03px;
  height: 560.53px;
  left: 721px;
  top: 163px;
  background: #7B61FF;
  filter: blur(250px);
  transform: rotate(-180deg);
}

.core-services-page__glow,
.clients-partners-page__glow,
.insights-page__glow,
.contact-page__glow,
.coming-soon-page__glow,
.page-template-page-core-services .core-services-page__glow,
.page-template-page-contact-us .contact-page__glow,
.page-template-page-coming-soon .coming-soon-page__glow,
.page-template-page-insights .insights-page__glow,
.page-template-page-clients-partners .clients-partners-page__glow {
  display: block !important;
  width: 627.41px;
  height: 703.72px;
  left: 749px;
  top: 444px;
  background: #1C163B;
  filter: blur(250px);
  transform: none;
}
