/*
Theme Name: AAM
Author: Your Name
Description: AAM Custom Theme
Version: 1.0
*/

:root {
  --aam-bg: #12081c;
  --aam-red: #e31e26;
  --aam-hot-red: #f51735;
  --aam-magenta: rgba(234, 21, 89, 0.7);
  --aam-white: #ffffff;
  --aam-copy: rgba(255, 255, 255, 0.8);
  --aam-dim: rgba(255, 255, 255, 0.6);
  --aam-line: rgba(245, 23, 53, 0.86);
  --aam-primary-gradient: linear-gradient(118.67deg, rgba(245, 23, 53, 0.7) 9.44%, rgba(234, 21, 89, 0.42) 92.36%);
  --aam-text-gradient: linear-gradient(133.66deg, rgb(245, 23, 53) 9.44%, rgba(234, 21, 89, 0.7) 92.36%);
  --aam-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --aam-header-x: 70px;
  --aam-header-pad: 40px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--aam-bg);
  color: var(--aam-white);
  font-family: "Instrument Sans", Arial, sans-serif;
  scroll-behavior: auto;
  scrollbar-gutter: stable;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--aam-bg);
  color: var(--aam-white);
  font-family: "Instrument Sans", Arial, sans-serif;
}

body.aam-lock {
  overflow: hidden;
}

body.aam-hero-transitioning {
  overflow: hidden;
}

img,
video,
svg {
  display: block;
}

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

button {
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
}

.aam-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px var(--aam-header-pad);
  pointer-events: none;
}

.aam-header__inner {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 200px;
  align-items: center;
  width: 100%;
  height: 60px;
  margin: 0 auto;
  border-radius: 16px;
}

.aam-header__logo,
.aam-header__cta,
.aam-header__nav {
  pointer-events: auto;
}

.aam-header__logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 2px 5px;
}

.aam-header__logo img {
  width: 90px;
  height: auto;
}

.aam-header__nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  border-radius: 16px;
  padding: 13px 0;
  background: transparent;
  backdrop-filter: none;
  filter: none;
  transform-origin: center top;
  will-change: transform, opacity, filter;
}

.aam-header__nav,
.aam-header__cta {
  transition: opacity 0.58s var(--aam-ease), transform 0.58s var(--aam-ease), visibility 0.58s var(--aam-ease);
}

.aam-header__nav.is-hidden,
.aam-header__cta.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-22px) scale(0.94);
  pointer-events: none;
}

.aam-header__nav a {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: var(--aam-copy);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  transition: color 0.45s var(--aam-ease);
}

.aam-header__nav a::after {
  width: 21px;
  height: 2px;
  background: var(--aam-text-gradient);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.45s var(--aam-ease), transform 0.45s var(--aam-ease);
}

.aam-header__nav a:hover,
.aam-header__nav a.is-active {
  color: var(--aam-hot-red);
}

.aam-header__nav a:hover::after,
.aam-header__nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.aam-header__cta {
  position: relative;
  justify-self: end;
  display: inline-flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 0 24px;
  /*background:
    linear-gradient(rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.035)) padding-box,
    linear-gradient(118.67deg, rgba(245, 23, 53, 0.72) 9.44%, rgba(234, 21, 89, 0.38) 92.36%) border-box;*/
  border: 1px solid var(--aam-hot-red);
  color: var(--aam-white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  backdrop-filter: blur(15px);
  transition: background 0.45s var(--aam-ease), border-color 0.45s var(--aam-ease), box-shadow 0.45s var(--aam-ease);
}

.aam-header__cta::before,
.aam-button::before {
  position: absolute;
  inset: auto auto -19px -7px;
  width: 50px;
  height: 39px;
  background: radial-gradient(circle, rgba(245, 23, 53, 0.7), rgba(255, 255, 255, 0));
  content: "";
  filter: blur(9px);
  transform: rotate(20deg);
}

.aam-header__cta:hover {
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(245, 23, 53, 0.075)) padding-box,
    linear-gradient(118.67deg, rgba(245, 23, 53, 0.88), rgba(255, 255, 255, 0.34)) border-box;
  box-shadow: 0 14px 34px rgba(245, 23, 53, 0.1);
}

.aam-header__phone svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--aam-hot-red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.aam-cinematic {
  position: relative;
  height: 228vh;
  min-height: 1640px;
  background: var(--aam-bg);
}

.aam-cinematic__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 810px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 8%, rgba(96, 43, 145, 0.22), transparent 28%),
    var(--aam-bg);
  contain: layout paint style;
  isolation: isolate;
}

.aam-slider,
.aam-slide {
  position: absolute;
  inset: 0;
}
section.aam-cinematic:before{
  content: "";
  position: absolute;
  background-color: red;
  width: 50%;
  height: 300px;
  top:0px;
  left:0px;
  z-index: 0;
  display: none;
}

.aam-slider {
  z-index: 5;
  overflow: hidden;
  pointer-events: none;
}

.aam-client-intro {
  position: absolute;
  z-index: 14;
  inset: 0;
  overflow: hidden;
  background: var(--aam-bg);
  pointer-events: auto;
  backface-visibility: hidden;
  will-change: opacity, transform, clip-path;
}

.aam-client-intro__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(1.06) contrast(1.04);
  transform: translate3d(0, 0, 0) scale(1.02);
  backface-visibility: hidden;
  will-change: transform;
}

.aam-client-intro__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 5, 20, 0.72) 0%, rgba(12, 5, 20, 0.2) 45%, rgba(12, 5, 20, 0.74) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(18, 8, 28, 0.24) 56%, rgba(18, 8, 28, 0.52) 100%);
  pointer-events: none;
}

.aam-client-intro__slices {
  position: absolute;
  inset: -10% -12%;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(0, 0, 0) skewX(-14deg);
  transform-origin: 0% 100%;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.aam-client-intro__slices span {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--aam-bg);
  border-right: 1px solid rgba(255, 255, 255, 0.075);
  opacity: 0;
  transform-origin: 0% 100%;
  backface-visibility: hidden;
  will-change: transform, opacity, filter;
}

.aam-client-intro__slices video {
  position: absolute;
  top: 0;
  left: calc(var(--slice-index, 0) * -100%);
  width: 900%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(1.06) contrast(1.04);
  transform: translate3d(0, 0, 0) skewX(14deg) scale(1.14);
  transform-origin: 50% 50%;
  backface-visibility: hidden;
  will-change: transform;
}

.aam-client-intro__cut {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 8, 28, 0.22), rgba(18, 8, 28, 0.02) 48%, rgba(18, 8, 28, 0.2));
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-34%, 38%, 0);
  will-change: opacity, filter, transform;
}

.aam-client-socials {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transform: translateX(-50%);
  pointer-events: auto;
  will-change: transform, opacity;
}

.aam-slide__footer > .aam-socials {
  visibility: hidden;
  pointer-events: none;
}

.aam-slide {
  overflow: hidden;
  backface-visibility: hidden;
  will-change: transform, opacity, filter;
}

.aam-video-card {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100vw;
  height: 100vh;
  min-height: 810px;
  overflow: hidden;
  border-radius: 0;
  transform-origin: 50% 50%;
  pointer-events: none;
  backface-visibility: hidden;
  will-change: transform, width, height, border-radius;
}

.aam-video-card__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(1.05) contrast(1.04);
  transform: translate3d(0, 0, 0) scale(1.02);
  backface-visibility: hidden;
  will-change: transform;
}

.aam-video-card__media--next {
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}

.aam-video-card__shade {
  position: absolute;
  z-index: 3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 5, 20, 0.7) 0%, rgba(12, 5, 20, 0.2) 45%, rgba(12, 5, 20, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.14) 42%, rgba(18, 8, 28, 0.4) 100%);
  pointer-events: none;
}

.aam-video-card__grain {
  position: absolute;
  z-index: 4;
  inset: -20%;
  opacity: 0.12;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px);
  background-size: 6px 6px, 9px 9px;
  mix-blend-mode: overlay;
}

.aam-hero-content,
.aam-client-hero-content {
  position: absolute;
  z-index: 8;
  top: calc(50% - 155px);
  left: var(--aam-header-x);
  width: min(650px, calc(100vw - 2 * var(--aam-header-x)));
  will-change: transform, opacity;
}

.aam-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 24px;
  margin-bottom: 20px;
  color: var(--aam-hot-red);
}

.aam-eyebrow span {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  transform: skewX(-10deg);
}

.aam-eyebrow p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 11.7px;
  text-transform: uppercase;
}

.aam-hero-content h1,
.aam-client-hero-content h1 {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  font-size: clamp(44px, 4.03vw, 58px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0;
}

.aam-hero-content h1 span:nth-child(2),
.aam-client-hero-content h1 span:nth-child(2) {
  padding-left: 0;
}

.aam-hero-content h1 strong,
.aam-client-hero-content h1 strong {
  background: var(--aam-text-gradient);
  background-clip: text;
  color: transparent;
  font-weight: 500;
  -webkit-background-clip: text;
}

.aam-hero-content__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
  padding-left: 0;
}

.aam-button {
  position: relative;
  display: inline-flex;
  height: 50px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--aam-hot-red);
  border-radius: 14px;
  padding: 0 20px;
  color: var(--aam-white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  backdrop-filter: blur(15px);
  transition: border-color 0.45s var(--aam-ease), box-shadow 0.45s var(--aam-ease), background 0.45s var(--aam-ease), color 0.45s var(--aam-ease);
}

.aam-button--secondary {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.8);
}

.aam-button--primary {
  background: var(--aam-primary-gradient);
}

.aam-button:hover {
  border-color: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 48px rgba(245, 23, 53, 0.18);
}

.aam-hero-copy,
.aam-client-hero-copy {
  position: absolute;
  z-index: 8;
  top: calc(50% + 64px);
  right: var(--aam-header-x);
  width: min(400px, 32vw);
  color: var(--aam-copy);
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.36px;
  will-change: transform, opacity;
}

.aam-hero-copy p,
.aam-client-hero-copy p {
  margin: 0;
}

.aam-hero-copy p + p,
.aam-client-hero-copy p + p {
  margin-top: 10px;
}

.aam-slide .aam-hero-content,
.aam-slide .aam-hero-copy {
  display: none;
}

.aam-slide__footer {
  position: absolute;
  z-index: 9;
  bottom: 30px;
  left: 50%;
  display: grid;
  grid-template-columns: 286px minmax(220px, 1fr) 286px;
  align-items: center;
  width: min(1440px, calc(100% - 0px));
  padding: 0 var(--aam-header-x);
  transform: translateX(-50%);
  will-change: transform, opacity;
}

.aam-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 286px;
}

.aam-socials__link {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(245, 23, 53, 0.78);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  transition: color 0.45s var(--aam-ease), background 0.45s var(--aam-ease), border-color 0.45s var(--aam-ease), box-shadow 0.45s var(--aam-ease);
}

.aam-socials__link::before {
  position: absolute;
  left: -22px;
  bottom: -18px;
  width: 53px;
  height: 49px;
  background: radial-gradient(circle, rgba(245, 23, 53, 0.48), transparent 68%);
  content: "";
  filter: blur(9px);
  transform: rotate(36deg);
}

.aam-socials__link svg {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.aam-client-socials .aam-socials__link img {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.aam-socials__link:hover {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(245, 23, 53, 0.12);
  box-shadow: 0 16px 38px rgba(245, 23, 53, 0.14);
  color: var(--aam-white);
}

.aam-case-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 32px;
  pointer-events: auto;
}

.aam-case-nav__button {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  background: transparent;
  cursor: pointer;
}

.aam-case-nav__button img {
  width: 52px;
  height: 52px;
  transition: opacity 0.45s var(--aam-ease), transform 0.45s var(--aam-ease), filter 0.45s var(--aam-ease);
}

.aam-case-nav__button:hover img {
  filter: drop-shadow(0 0 14px rgba(245, 23, 53, 0.42));
  transform: scale(1.12);
}

.aam-case-nav__brand {
  display: grid;
  justify-items: center;
  width: max-content;
  min-height: 80px;
}

.aam-case-nav__brand img {
  width: 150px;
  max-width: 150px;
  height: auto;
  object-fit: contain;
}

.aam-case-nav__brand span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.84px;
  white-space: nowrap;
}

.aam-case-nav__brand strong {
  color: var(--aam-white);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.2px;
}

.aam-results__case-nav {
  position: relative;
  z-index: 2;
  order: 1;
  justify-content: center;
  width: 100%;
  max-width: 1280px;
  margin: 6px auto 0;
  pointer-events: auto;
}

.aam-results__case-nav .aam-case-nav__brand {
  min-height: 80px;
}

.aam-results {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 30px;
  overflow: hidden;
  padding: 70px 80px 74px;
  background: var(--aam-bg);
  opacity: 0;
  pointer-events: none;
}

.aam-results__glow {
  position: absolute;
  top: 0;
  left: 50%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(245, 23, 53, 0.22), rgba(40, 49, 168, 0.2) 45%, transparent 72%);
  filter: blur(52px);
  transform: translateX(-50%);
}

.aam-results__logo {
  position: absolute;
  top: 86px;
  left: 66px;
  width: min(767px, 55vw);
  opacity: 0.1;
  pointer-events: none;
  will-change: transform;
}

.aam-results__stats {
  position: relative;
  z-index: 2;
  order: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 1280px;
  margin-top: auto;
  margin-right: auto;
  margin-left: auto;
  padding-top: 80px;
}

.aam-stat {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.aam-stat strong {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  font-size: clamp(44px, 4.17vw, 60px);
  font-weight: 400;
  line-height: 1.05;
}

.aam-stat__suffix {
  padding-bottom: 5px;
  color: rgba(255, 255, 255, 0.4);
  font-size: clamp(38px, 3.47vw, 50px);
  font-weight: 500;
  line-height: 1;
}

.aam-stat > span {
  margin-top: 2px;
  color: var(--aam-white);
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.36px;
}

.aam-stat em {
  margin-top: 4px;
  color: var(--aam-dim);
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
}

@media (min-width: 1441px) {
  .aam-hero-content,
  .aam-client-hero-content {
    left: calc((100vw - 1440px) / 2 + var(--aam-header-x));
  }

  .aam-hero-copy,
  .aam-client-hero-copy {
    right: calc((100vw - 1440px) / 2 + var(--aam-header-x));
  }

  .aam-results__logo {
    left: calc((100vw - 1440px) / 2 + 66px);
  }

}

.aam-results__note {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  color: var(--aam-copy);
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}

.aam-results__note strong {
  color: var(--aam-white);
  font-size: 20px;
  font-weight: 500;
}

.aam-marquee-story {
  position: relative;
  z-index: 11;
  display: grid;
  height: 500px !important;
  min-height: 300px;
  place-items: center;
  overflow: hidden;
  background: #e8e9ea;
  color: #236fff;
  background: url(assets/highlighter_bg.png);
  background-size: cover;
  background-position: center;  
  background-repeat: no-repeat;
}

.aam-marquee-story__pin {
  position: relative;
  display: grid;
  width: 100%;
  height: 200px;
  min-height: 500px;
  place-items: center;
  overflow: hidden;
  /*background: #e8e9ea;*/
}

.aam-marquee-story__pattern {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  width: 3118px;
  height: 390px;
  gap: 74px;
  opacity: 0.48;
  transform: translate3d(-50%, -50%, 0);
}

.aam-marquee-story__pattern span {
  display: block;
  width: 160px;
  height: 390px;
  border-radius: 12px;
  background: rgba(205, 206, 211, 0.28);
  transform: skewX(-14deg);
}

.aam-marquee-story__track {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: visible;
  pointer-events: none;
}

.aam-marquee-story h2 {
  width: max-content;
  margin: 0;
  color: #12081c;
  font-size: clamp(92px, 10.42vw, 150px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translate3d(100vw, 0, 0);
  opacity:1 !important;
  will-change: transform, opacity;
}

.aam-marquee-story h2 span {
  display: inline-block;
}

.aam-marquee-story__slash {
  margin-right: 0.04em;
  color: #256eff;
  font-size: clamp(126px, 14.58vw, 210px);
  font-weight: 500;
  line-height: 0.82;
  vertical-align: -0.08em;
}

.aam-marquee-story__blue {
  color: #256eff;
  font-weight: 600;
}

.aam-marquee-story__note {
  display: none;
}

.aam-capabilities {
  position: relative;
  z-index: 12;
  overflow: clip;
  padding-top: 96px;
  background:
    radial-gradient(circle at 72% 7%, rgba(35, 52, 151, 0.24), transparent 27%),
    radial-gradient(circle at 43% 56%, rgba(245, 23, 53, 0.06), transparent 31%),
    var(--aam-bg);
}

.aam-capabilities__intro {
  display: grid;
  grid-template-columns: minmax(260px, calc(23vw - 126px)) minmax(0, 1fr);
  gap: 56px;
  width: 100%;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 70px 70px;
}

.aam-capabilities__eyebrow {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  /*padding-top: 14px;*/
  color: var(--aam-hot-red);
}

.aam-capabilities__eyebrow span {
  font-size: 20px;
  font-weight: 700;
  line-height: 0.8;
  transform: skewX(-10deg);
}

.aam-capabilities__eyebrow p {
  margin: 0;
  color: var(--aam-hot-red);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 11px;
  text-transform: uppercase;
}

.aam-capabilities__copy h2 {
  max-width: 70%;
  margin: 0;
  color: var(--aam-white);
  font-size: 42px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 0.5px;
}

.aam-capabilities__copy h2 span {
  color: rgba(255, 255, 255, 0.48);
}

.aam-capabilities__copy p {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0.18px;
}

.aam-capabilities__track {
  position: relative;
  height: var(--aam-stack-height, auto);
  min-height: 0;
}

.aam-capability-stack {
  position: sticky;
  top: 78px;
  width: 100%;
  height: calc(100vh - 78px);
  min-height: 650px;
  overflow: hidden;
}

.aam-capability-panel {
  position: absolute;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(260px, calc(23vw - 128px)) minmax(320px, 1fr) 380px;
  gap: 58px;
  align-items: start;
  min-height: 380px;
  overflow: hidden;
  border-radius: 0;
  padding: 50px 70px 50px;
  background:
    radial-gradient(circle at 82% 10%, rgba(65, 82, 182, 0.16), transparent 34%),
    var(--aam-bg);
  color: var(--aam-white);
  will-change: transform, height, opacity;
}

.aam-capability-panel::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  content: "";
  opacity: 0;
  transition: opacity 0.6s var(--aam-ease);
}

.aam-capability-panel.is-active::before {
  opacity: 1;
}

.aam-capability-panel--red {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.3), transparent 13%),
    linear-gradient(114deg, #f51735 0%, #e31e26 36%, #9a0538 100%);
}

.aam-capability-panel--blue {
  background:
    radial-gradient(circle at 52% 0%, rgba(255, 255, 255, 0.24), transparent 13%),
    linear-gradient(114deg, #1f6df0 0%, #0a47b8 48%, #071a56 100%);
}

.aam-capability-panel--light {
  background:
    radial-gradient(circle at 53% 0%, rgba(255, 255, 255, 0.84), transparent 11%),
    linear-gradient(107deg, #eeeeee 0%, #d7d7d7 54%, #c9c9c9 100%);
  color: #2a2236;
}

.aam-capability-panel__number {
  position: relative;
  z-index: 2;
  color: currentColor;
  align-self: start;
  padding-top: 0;
  font-size: 100px;
  font-weight: 400;
  line-height: 0.9;
  opacity: 0.84;
}

.aam-capability-panel__content {
  position: relative;
  z-index: 2;
  max-width: 590px;
  align-self: start;
  padding-top: 4px;
}

.aam-capability-panel__content h3 {
  margin: 0;
  color: currentColor;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

.aam-capability-panel__content p {
  max-width: 590px;
  margin: 22px 0 28px;
  color: currentColor;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0.18px;
  opacity: 0.72;
}

.aam-capability-panel--red .aam-capability-panel__content p {
  opacity: 0.82;
}

.aam-capability-panel--light .aam-button {
  color: #21182c;
}

.aam-capability-panel__media {
  position: relative;
  z-index: 2;
  width: 380px;
  height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  line-height: 0;
  will-change: transform;
}

.aam-capability-panel__media::after {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.28));
  content: "";
}

.aam-capability-panel__media video,
.aam-capability-panel__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.14) !important;
  will-change: transform;
}

.aam-how-work {
  position: relative;
  z-index: 13;
  overflow: hidden;
  background: #e8e9ea;
  color: #12081c;
}

.aam-how-work__pin {
  position: relative;
  min-height: 840px;
  height: 100vh;
  overflow: hidden;
  padding: 100px 0;
  background: #e8e9ea;
}

.aam-how-work__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.aam-how-work__heading {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  height: 149px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 70px;
}

.aam-how-work__heading-inner {
  display: flex;
  height: 100%;
  max-width: 55%;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.aam-how-work__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--aam-red);
}

.aam-how-work__eyebrow span {
  font-size: 25px;
  font-weight: 700;
  line-height: 0.8;
  transform: skewX(-10deg);
}

.aam-how-work__eyebrow p {
  margin: 0;
  color: var(--aam-red);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 6.4px;
  text-transform: uppercase;
}

.aam-how-work__heading h2 {
  max-width: 750px;
  margin: 0;
  color: #12081c;
  font-size: 42px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 0.5px;
}

.aam-how-work__heading h2 span {
  color: #777b88;
}

.aam-how-work__viewport {
  position: relative;
  z-index: 2;
  overflow: visible;
  width: 100%;
  margin-top: 50px;
}

.aam-how-work__track {
  display: flex;
  width: max-content;
  gap: 70px;
  padding: 0 70px;
  will-change: transform;
}

.aam-work-card-group {
  display: flex;
  width: 1300px;
  flex: 0 0 1300px;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 0;
  will-change: transform, opacity;
}

.aam-work-card-group__number {
  width: 300px;
  max-width: 300px;
  align-self: stretch;
  margin: 0;
  color: rgba(18, 8, 28, 0.4);
  text-align: right;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.56px;
}

.aam-work-card {
  position: relative;
  display: flex;
  width: 580px;
  flex: 0 0 580px;
  flex-direction: column;
  gap: 30px;
  overflow: hidden;
  border-radius: 24px;
  padding: 18px 18px 24px;
  background: #256eff;
  color: var(--aam-white);
  box-shadow: 0 34px 80px rgba(37, 110, 255, 0.18);
  backdrop-filter: blur(7.5px);
}

.aam-work-card--dark {
  background: #12081c;
  box-shadow: 0 34px 80px rgba(18, 8, 28, 0.2);
}

.aam-work-card--red {
  background: var(--aam-primary-gradient);
  box-shadow: 0 34px 80px rgba(245, 23, 53, 0.18);
}

.aam-work-card__texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
}

.aam-work-card__image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 330px;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
}

.aam-work-card__image img,
.aam-work-card__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  will-change: transform;
}

.aam-work-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--aam-white);
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.24px;
  /*text-transform: uppercase;*/
}

.aam-work-card-group__copy {
  display: flex;
  width: 300px;
  max-width: 300px;
  align-self: stretch;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
}

.aam-work-card-group__copy p {
  margin: 0;
  color: rgba(18, 8, 28, 0.7);
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.3px;
}

.aam-build-case {
  position: relative;
  z-index: 14;
  overflow: hidden;
  background: #12081c;
  color: var(--aam-white);
}

.aam-build-case__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.aam-build {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: transparent;
  color: var(--aam-white);
}

.aam-build__pin {
  position: relative;
  height: auto;
  min-height: 912px;
  overflow: hidden;
  padding: 100px 70px;
  background: transparent;
}

.aam-build__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 1fr);
  gap: 40px;
  width: 100%;
  max-width: 1300px;
  min-height: 712px;
  margin-right: auto;
  margin-left: auto;
  align-items: start;
}

.aam-build__left {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
}

.aam-build__content {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 30px;
  padding-top: 30px;
}

.aam-build__heading {
  display: flex;
  width: 100%;
  max-width: 90%;
  flex-direction: column;
  gap: 28px;
}

.aam-build__eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--aam-red);
}

.aam-build__eyebrow span {
  font-size: 25px;
  font-weight: 700;
  line-height: 0.8;
  transform: skewX(-10deg);
}

.aam-build__eyebrow p {
  margin: 0;
  color: var(--aam-red);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 6.4px;
  text-transform: uppercase;
}

.aam-build__heading h2 {
  margin: 0;
  color: var(--aam-white);
  font-size: 42px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 0.5px;
}

.aam-build__heading h2 span {
  color: #777b88;
}

.aam-build__description {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 24px;
}

.aam-build__description > p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.36px;
}

.aam-build__callout {
  display: inline-flex;
  align-items: center;
  border-left: 3px solid #256eff;
  padding: 8px 16px;
}

.aam-build__callout p {
  margin: 0;
  color: var(--aam-white);
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.aam-build__cta {
  min-width: 156px;
}

.aam-build__right {
  position: relative;
  width: 100%;
  height: 712px;
  min-width: 0;
  gap: 24px;
  padding-top: 40px;
  padding-left: 20px;
}

.aam-build-card {
  position: absolute;
  top: 40px;
  right: 0;
  left: 20px;
  display: flex;
  min-height: 150px;
  gap: 12px;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  padding: 24px 24px 24px 0;
  background: linear-gradient(76.41deg, rgba(255, 255, 255, 0.03) 0.23%, rgba(255, 255, 255, 0.1) 97.65%);
  color: var(--aam-white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(22px);
  transform-origin: 50% 0%;
  will-change: transform, opacity;
}

.aam-build-card.is-active {
  box-shadow: 0 38px 120px rgba(245, 23, 53, 0.12), 0 28px 80px rgba(0, 0, 0, 0.2);
}

.aam-build-card__shine {
  position: absolute;
  top: -61px;
  right: -61px;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 23, 53, 0.34), transparent 68%);
  filter: blur(20px);
  pointer-events: none;
}

.aam-build-card__shine--blue {
  background: radial-gradient(circle, rgba(37, 110, 255, 0.38), transparent 68%);
}

.aam-build-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 12px;
}

.aam-build-card__heading {
  position: relative;
  display: flex;
  width: 100%;
  height: 56px;
  align-items: center;
  overflow: hidden;
  padding: 10px 20px;
}

.aam-build-card__heading::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.aam-build-card__heading--red::before {
  background: linear-gradient(90deg, rgba(227, 30, 38, 0.25), rgba(227, 30, 38, 0) 59.74%);
}

.aam-build-card__heading--blue::before {
  background: linear-gradient(90deg, rgba(22, 84, 207, 0.2), rgba(22, 84, 207, 0) 59.74%);
}

.aam-build-card__heading img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.aam-build-card__heading h3 {
  position: relative;
  z-index: 2;
  max-width: calc(100% - 88px);
  margin: 0;
  overflow: hidden;
  color: var(--aam-white);
  font-size: 22px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.44px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.aam-build-card__body > p {
  max-width: calc(100% - 12px);
  margin: 0;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.32px;
  will-change: opacity, transform;
}

.aam-build-card__icon {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
  width: 54px;
  height: 54px;
  object-fit: contain;
  pointer-events: none;
}

.aam-case-study {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 0px 0 100px;
  background: transparent;
  color: var(--aam-white);
}

.aam-case-study__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}

.aam-case-study__header {
  display: flex;
  min-height: 144px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  padding: 0 70px;
}

.aam-case-study__heading-group {
  display: grid;
  grid-template-columns: 254px minmax(0, 750px);
  flex: 1 1 auto;
  gap: 126px;
  align-items: start;
}

.aam-case-study__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--aam-red);
}

.aam-case-study__eyebrow span {
  font-size: 25px;
  font-weight: 700;
  line-height: 0.8;
  transform: skewX(-10deg);
}

.aam-case-study__eyebrow p {
  margin: 0;
  color: var(--aam-red);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 6.4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.aam-case-study__heading-group h2 {
  max-width: 750px;
  margin: 0;
  color: var(--aam-white);
  font-size: 44px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 0.44px;
}

.aam-case-study__heading-group h2 span {
  color: #777b88;
}

.aam-case-study__cta {
  flex: 0 0 auto;
  height: 48px;
  border-width: 1.5px;
  gap: 8px;
  padding: 0 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  letter-spacing: 0.3px;
}

.aam-case-study__cta span {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}

.aam-case-study__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 40px;
  row-gap: 70px;
  width: 100%;
  margin-top: 50px;
  padding: 0 100px;
  transition: grid-template-columns 1.08s cubic-bezier(0.19, 1, 0.22, 1);
}

.aam-case-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  transition: transform 1.08s cubic-bezier(0.19, 1, 0.22, 1);
}

.aam-case-card--wide {
  grid-column: 1 / -1;
  justify-self: end;
  width: min(100%, 930px);
}

.aam-case-card--left {
  width: 100%;
}

.aam-case-card--right {
  width: 100%;
  padding-top: 70px;
}

.aam-case-card__media {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 40px rgba(18, 21, 28, 0.2);
  transform: translateZ(0);
}

.aam-case-card--wide .aam-case-card__media {
  height: auto;
  aspect-ratio: 920 / 507;
  box-shadow: none;
}

.aam-case-card--left .aam-case-card__media,
.aam-case-card--right .aam-case-card__media {
  height: 550px;
}

.aam-case-card__media img,
.aam-case-card__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aam-case-card__media video {
  background: rgba(255, 255, 255, 0.04);
}

.aam-case-card__media figcaption {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  height: 68px;
  align-items: center;
  justify-content: center;
  background: rgba(18, 8, 28, 0.5);
  color: var(--aam-white);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.48px;
  transform: translateY(-50%);
  backdrop-filter: blur(13px);
}

.aam-case-card__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.aam-case-card__content h3 {
  margin: 0;
  color: var(--aam-white);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.7px;
}

.aam-case-card__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.3px;
}

@media (hover: hover) and (pointer: fine) and (min-width: 981px) {
  .aam-case-card--left .aam-case-card__content h3,
  .aam-case-card--left .aam-case-card__content p,
  .aam-case-card--right .aam-case-card__content h3,
  .aam-case-card--right .aam-case-card__content p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .aam-case-study__grid:has(.aam-case-card--left:hover),
  .aam-case-study__grid:has(.aam-case-card--left:focus-within) {
    grid-template-columns: minmax(0, 930px) minmax(240px, 1fr);
  }

  .aam-case-study__grid:has(.aam-case-card--right:hover),
  .aam-case-study__grid:has(.aam-case-card--right:focus-within) {
    grid-template-columns: minmax(240px, 1fr) minmax(0, 930px);
  }
}

.aam-services {
  position: relative;
  z-index: 15;
  overflow: hidden;
  background: #e8e9ea;
  color: #12081c;
}

.aam-services__pin {
  position: relative;
  height: 100vh;
  min-height: 880px;
  overflow: hidden;
  padding: 100px 0;
  background: #e8e9ea;
}

.aam-services__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.aam-services__eyebrow {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: min(100%, 1440px);
  margin-right: auto;
  margin-left: auto;
  color: var(--aam-red);
}

.aam-services__eyebrow span {
  font-size: 25px;
  font-weight: 700;
  line-height: 0.8;
  transform: skewX(-10deg);
}

.aam-services__eyebrow p {
  margin: 0;
  color: var(--aam-red);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 6.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.aam-services__headline {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  width: min(1140px, calc(100vw - 140px));
  min-height: 234px;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  will-change: transform, opacity, filter;
}

.aam-services__headline h2 {
  margin: 0;
  font-size: clamp(46px, 4.16vw, 60px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.6px;
}

.aam-services__headline-line {
  --services-line-fill: 0%;
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #12081c 0 var(--services-line-fill), #c3c3c5 var(--services-line-fill) 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.aam-services__ghost {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: -80px;
  translate: -50% 0;
  margin: 0;
  color: #12081c;
  font-size: 200px;
  font-weight: 600;
  line-height: 1.118;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.04;
}

.aam-services__cards {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  width: min(1300px, calc(100vw - 80px));
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0 40px;
  transform: translate(-50%, -50%);
  opacity: 0;
  will-change: transform, opacity;
}

.aam-service-card {
  position: relative;
  display: flex;
  min-width: 0;
  height: 500px;
  flex: 1 1 0;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 24px;
  color: #12081c;
  box-shadow: 0 2px 20px rgba(18, 8, 28, 0.06);
}

.aam-service-card--growth {
  width: 405px;
  height: 541px;
  flex: 0 0 405px;
  border-radius: 26px;
  color: var(--aam-white);
}

.aam-service-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.aam-service-card--single .aam-service-card__bg,
.aam-service-card--embedded .aam-service-card__bg {
  opacity: 1;
}

.aam-service-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.aam-service-card--growth .aam-service-card__content {
  gap: 26px;
}

.aam-service-card__top {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
}

.aam-service-card--growth .aam-service-card__top {
  gap: 65px;
}

.aam-service-card__tag {
  width: 100%;
  padding: 5px 5px 0;
}

.aam-service-card__tag span {
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 19px 19px 0 0;
  background: linear-gradient(90deg, rgba(251, 138, 63, 0.40) 11.34%, rgba(251, 138, 63, 0.31) 51.78%, rgba(251, 138, 63, 0.24) 86.12%);
  backdrop-filter: blur(17px);
  color: #C25208;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 25px;
  letter-spacing: 0.5px;
  text-align: center;
}

.aam-service-card--growth .aam-service-card__tag span {
  height: 52px;
  border-radius: 21px 21px 0 0;
  color: var(--aam-white);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.30) 11.34%, rgba(255, 255, 255, 0.24) 51.78%, rgba(255, 255, 255, 0.15) 86.12%);
  backdrop-filter: blur(17px);
  font-size: 18px;
  line-height: 27px;
  text-transform: uppercase;
}

.aam-service-card--embedded .aam-service-card__tag span {
  color: #117D49;
  border-radius: 19px 19px 0 0;
  background: linear-gradient(98deg, rgba(17, 165, 108, 0.30) 9.44%, rgba(17, 165, 108, 0.15) 92.36%);
  backdrop-filter: blur(17px);
  text-transform: uppercase;
}

.aam-service-card__main {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding: 0 20px;
}

.aam-service-card--growth .aam-service-card__main {
  gap: 13px;
  padding: 0 22px;
}

.aam-service-card__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.aam-service-card__eyebrow img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.aam-service-card--growth .aam-service-card__eyebrow img {
  width: 22px;
  height: 22px;
}

.aam-service-card__eyebrow p {
  margin: 0;
  color: currentColor;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.048px;
}

.aam-service-card--growth .aam-service-card__eyebrow p {
  font-size: 17.3px;
  line-height: 26px;
}

.aam-service-card__price {
  margin: 0;
  color: currentColor;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.4px;
}

.aam-service-card--growth .aam-service-card__price {
  font-size: 45.5px;
  letter-spacing: 0.43px;
}

.aam-service-card__price span {
  color: rgba(18, 8, 28, 0.7);
  font-size: 18px;
  font-weight: 400;
}

.aam-service-card--growth .aam-service-card__price span {
  color: var(--aam-white);
  font-size: 19.5px;
}

.aam-service-card__description {
  margin: 0;
  color: rgba(18, 8, 28, 0.7);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.3px;
}

.aam-service-card--growth .aam-service-card__description {
  color: var(--aam-white);
  font-size: 15.15px;
  line-height: 21.6px;
}

.aam-service-card__term {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  padding: 0 20px;
}

.aam-service-card--growth .aam-service-card__term {
  gap: 8.7px;
  padding: 0 22px;
}

.aam-service-card__term img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  object-fit: contain;
}

.aam-service-card--growth .aam-service-card__term img {
  width: 26px;
  height: 26px;
}

.aam-service-card__term p {
  margin: 0;
  color: rgba(18, 8, 28, 0.9);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
}

.aam-service-card--growth .aam-service-card__term p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17.3px;
  line-height: 26px;
}

.aam-service-card__bottom {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 20px;
}

.aam-service-card--growth .aam-service-card__bottom {
  padding: 22px;
}

.aam-service-card__button {
  display: flex;
  width: 100%;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid #f51735;
  border-radius: 12px;
  background: rgba(18, 8, 28, 0.05);
  color: #E31E26;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.16px;
  text-decoration: none;
  text-transform: uppercase;
}

.aam-service-card--growth .aam-service-card__button {
  height: 52px;
  border-color: rgba(245, 23, 53, 0.86);
  border-radius: 13px;
  background: linear-gradient(133deg, #f51735 9.44%, rgba(234, 21, 89, 0.6) 92.36%);
  color: var(--aam-white);
  font-size: 17.3px;
}

.aam-testimonial-footer {
  position: relative;
  overflow: hidden;
  background: #12081c;
  color: var(--aam-white);
}

.aam-footer-section {
  position: relative;
  overflow: hidden;
  background: #12081c;
  color: var(--aam-white);
}

.aam-testimonial-footer__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
}

.aam-footer-section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
}

.aam-testimonials,
.aam-footer-logos,
.aam-footer {
  position: relative;
  z-index: 1;
}

.aam-testimonials {
  width: 100%;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  padding: 100px 70px 100px;
}

.aam-testimonials__header {
  display: grid;
  grid-template-columns: minmax(190px, 260px) minmax(0, 780px);
  gap: 58px;
  align-items: start;
  margin-bottom: 52px;
}

.aam-testimonials__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 9px;
  color: #ff2636;
}

.aam-testimonials__eyebrow span {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.aam-testimonials__eyebrow p {
  margin: 0;
  color: #ff2636;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 6.4px;
  text-transform: uppercase;
}

.aam-testimonials__header h2 {
  max-width: 740px;
  margin: 0;
  color: var(--aam-white);
  font-size: 42px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 0.42px;
}

.aam-testimonials__header h2 span {
  color: rgba(255, 255, 255, 0.48);
}

.aam-testimonials__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(520px, 1.55fr);
  gap: 32px;
  align-items: center;
  width: 100%;
}

.aam-testimonials__side,
.aam-testimonials__wide {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

.aam-testimonial-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px 24px 24px 0;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
}

.aam-testimonial-card--large {
  min-height: 260px;
}

.aam-testimonial-card__quote {
  margin: 0;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.2px;
}

.aam-testimonial-card__profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.aam-testimonial-card__avatar {
  width: 56px;
  height: 56px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(227, 30, 38, 0.55), rgba(37, 110, 255, 0.45));
  color: var(--aam-white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  object-fit: cover;
}

.aam-testimonial-card__profile h3,
.aam-testimonial-card__profile p {
  margin: 0;
}

.aam-testimonial-card__profile h3 {
  color: var(--aam-white);
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
}

.aam-testimonial-card__profile p {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.aam-testimonial-video {
  position: relative;
  min-height: 327px;
  overflow: hidden;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  isolation: isolate;
}

.aam-testimonial-video__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aam-testimonial-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(18, 8, 28, 0.12), rgba(18, 8, 28, 0.64));
}

.aam-testimonial-video__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.aam-testimonial-video__heading p {
  margin: 0;
  color: var(--aam-white);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.aam-testimonial-video__heading img {
  width: 28px;
  height: 40px;
  object-fit: contain;
}

.aam-testimonial-video__mute {
  width: 28px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.aam-testimonial-video__mute img {
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.aam-testimonial-video__frame {
  height: 230px;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(18, 8, 28, 0.05), rgba(18, 8, 28, 0.32)),
    url("assets/card_video_bg.png") center / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.aam-testimonial-video__frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.aam-footer-logos {
  display: flex;
  width: 100%;
  align-items: center;
  overflow: hidden;
  padding: 0 70px 60px;
}

.aam-footer-logos__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 13px;
  animation: aam-logo-marquee 28s linear infinite;
  will-change: transform;
}

.aam-footer-logos:hover .aam-footer-logos__track {
  animation-play-state: paused;
}

.aam-footer-logos__track img {
  width: 174px;
  height: 78px;
  flex: 0 0 174px;
  object-fit: contain;
}

.aam-footer {
  width: 100%;
  padding: 0 70px;
}

.aam-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(150px, 0.78fr) minmax(300px, 1.22fr);
  gap: 52px;
  align-items: start;
  width: 100%;
  padding: 0 0 62px;
}

.aam-footer__cta-block h2 {
  max-width: 580px;
  margin: 0 0 26px;
  color: var(--aam-white);
  font-size: 42px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 0.42px;
}

.aam-footer__cta-block h2 span {
  color: rgba(255, 255, 255, 0.48);
}

.aam-footer__cta-block p {
  max-width: 575px;
  margin: 0 0 40px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.18px;
}

.aam-footer__button {
  display: inline-flex;
  min-width: 196px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(133deg, #f51735 9.44%, rgba(234, 21, 89, 0.86) 92.36%);
  color: var(--aam-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.16px;
  text-decoration: none;
}

.aam-footer__menu,
.aam-footer__follow {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aam-footer__menu h3,
.aam-footer__follow h3 {
  margin: 0 0 6px;
  color: var(--aam-white);
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
}

.aam-footer__menu a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-decoration: none;
}

.aam-footer__field {
  display: flex;
  width: 100%;
  height: 50px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.aam-footer__field input {
  min-width: 0;
  flex: 1 1 auto;
  height: 100%;
  padding: 0 16px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--aam-white);
  font: inherit;
}

.aam-footer__field input::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.aam-footer__field button {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.aam-footer__field button img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.aam-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.aam-footer__social .aam-socials__link {
  border-color: rgba(245, 23, 53, 0.72);
}

.aam-footer__social .aam-socials__link img {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.aam-footer__logo {
  display: block;
  width: 100%;
  height: 124px;
  object-fit: contain;
  margin: 0 0 34px;
}

.aam-footer__bottom {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.aam-footer__bottom p,
.aam-footer__bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
}

.aam-footer__bottom div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.aam-footer__bottom span {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.22);
}

@keyframes aam-logo-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.line {
  overflow: hidden;
}

.word,
.char {
  display: inline-block;
}

@media (min-width: 1441px) {
  .aam-capability-panel {
    grid-template-columns: 260px minmax(0, 1fr) 380px;
    padding-right: calc((100vw - 1440px) / 2 + 70px);
    padding-left: calc((100vw - 1440px) / 2 + 70px);
  }

  .aam-how-work__track {
    padding-right: calc((100vw - 1440px) / 2 + 70px);
    padding-left: calc((100vw - 1440px) / 2 + 70px);
  }

  .aam-build__pin {
    padding-right: calc((100vw - 1440px) / 2 + 70px);
    padding-left: calc((100vw - 1440px) / 2 + 70px);
  }
}

@media (max-width: 1180px) {
  .aam-header__inner {
    grid-template-columns: 150px minmax(0, 1fr) 150px;
  }

  .aam-header__nav {
    gap: 24px;
  }

  .aam-hero-copy {
    width: 340px;
  }

  .aam-slide__footer {
    grid-template-columns: 286px minmax(190px, 1fr) 120px;
  }

  .aam-capabilities__intro,
  .aam-capability-panel {
    grid-template-columns: 190px minmax(300px, 1fr) 330px;
    gap: 40px;
  }

  .aam-capabilities__copy h2 {
    max-width: 82%;
  }

  .aam-capability-panel__media {
    width: 330px;
    height: 232px;
  }

  .aam-work-card-group {
    width: calc(100vw - 48px);
    flex-basis: calc(100vw - 48px);
    gap: 28px;
  }

  .aam-work-card-group__number {
    width: 92px;
    max-width: 92px;
  }

  .aam-work-card {
    width: min(520px, calc(100vw - 420px));
    flex-basis: min(520px, calc(100vw - 420px));
  }

  .aam-work-card-group__copy {
    width: 250px;
    max-width: 250px;
  }

  .aam-build__pin {
    padding: 88px 48px;
  }

  .aam-build__container {
    grid-template-columns: minmax(0, 0.94fr) minmax(390px, 1.06fr);
    gap: 28px;
  }

  .aam-build__heading h2 {
    font-size: 38px;
    line-height: 44px;
  }

  .aam-case-study__heading-group {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 72px;
  }

  .aam-case-study__heading-group h2 {
    font-size: 40px;
    line-height: 45px;
  }

  .aam-case-card--wide {
    width: min(100%, 920px);
  }

  .aam-case-card--left,
  .aam-case-card--right {
    width: 100%;
  }

  .aam-services__cards {
    width: calc(100vw - 48px);
    gap: 22px;
    padding: 0 24px;
  }

  .aam-service-card--growth {
    width: 360px;
    flex-basis: 360px;
  }

  .aam-testimonials__header {
    grid-template-columns: minmax(170px, 210px) minmax(0, 1fr);
    gap: 44px;
  }

  .aam-testimonials__grid {
    grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
  }

  .aam-footer-logos {
    padding-right: 48px;
    padding-left: 48px;
  }

  .aam-footer__top {
    grid-template-columns: minmax(320px, 1fr) minmax(300px, 0.8fr);
  }

  .aam-footer__follow {
    grid-column: 2;
  }

}

@media (min-width: 981px) and (max-width: 1250px) {
  :root {
    --aam-header-x: clamp(46px, 5.2vw, 64px);
    --aam-header-pad: clamp(28px, 3.8vw, 36px);
  }

  .aam-header__inner {
    grid-template-columns: clamp(150px, 15vw, 180px) minmax(0, 1fr) clamp(150px, 15vw, 180px);
  }

  .aam-header__logo img {
    width: clamp(78px, 7.6vw, 88px);
  }

  .aam-header__nav {
    gap: clamp(22px, 2.7vw, 34px);
  }

  .aam-header__nav a,
  .aam-header__cta {
    font-size: clamp(14px, 1.25vw, 16px);
  }

  .aam-header__cta {
    height: 46px;
    padding: 0 clamp(18px, 2vw, 24px);
  }

  .aam-button {
    height: clamp(46px, 4.25vw, 50px);
    min-width: clamp(138px, 13vw, 156px);
    padding: 0 clamp(18px, 2vw, 24px);
  }

  .aam-hero-content h1,
  .aam-client-hero-content h1 {
    font-size: clamp(54px, 6vw, 76px);
    line-height: 1.05;
  }

  .aam-hero-copy,
  .aam-client-hero-copy {
    width: min(360px, 30vw);
    font-size: 16px;
    line-height: 24px;
  }

  .aam-slide__footer {
    grid-template-columns: minmax(220px, 286px) minmax(180px, 1fr) minmax(120px, 220px);
  }

  .aam-case-nav {
    gap: clamp(24px, 2.8vw, 32px);
  }

  .aam-case-nav__button,
  .aam-case-nav__button img {
    width: clamp(44px, 4.2vw, 52px);
    height: clamp(44px, 4.2vw, 52px);
  }

  .aam-results {
    padding-right: clamp(48px, 5.6vw, 80px);
    padding-left: clamp(48px, 5.6vw, 80px);
  }

  .aam-results__stats {
    gap: clamp(12px, 1.6vw, 24px);
  }

  .aam-stat strong {
    font-size: clamp(48px, 5.5vw, 68px);
  }

  .aam-stat__suffix {
    font-size: clamp(36px, 4.2vw, 48px);
  }

  .aam-capabilities__intro,
  .aam-capability-panel {
    grid-template-columns: clamp(160px, 16vw, 220px) minmax(280px, 1fr) clamp(300px, 30vw, 380px);
    gap: clamp(28px, 3.5vw, 52px);
    padding-right: clamp(46px, 5.2vw, 70px);
    padding-left: clamp(46px, 5.2vw, 70px);
  }

  .aam-capabilities__copy h2 {
    font-size: clamp(34px, 4.2vw, 44px);
    line-height: 1.1;
  }

  .aam-capability-panel__number {
    font-size: clamp(76px, 8.2vw, 100px);
  }

  .aam-capability-panel__content h3 {
    font-size: clamp(30px, 3.35vw, 36px);
    line-height: 1.16;
  }

  .aam-capability-panel__media {
    width: clamp(300px, 30vw, 380px);
    height: clamp(214px, 21vw, 260px);
  }

  .aam-how-work__heading,
  .aam-how-work__track,
  .aam-case-study__header,
  .aam-case-study__grid,
  .aam-testimonials,
  .aam-footer,
  .aam-footer-logos {
    padding-right: clamp(46px, 5.2vw, 70px);
    padding-left: clamp(46px, 5.2vw, 70px);
  }

  .aam-how-work__heading h2,
  .aam-build__heading h2,
  .aam-case-study__heading-group h2,
  .aam-testimonials__header h2,
  .aam-footer__cta-block h2 {
    font-size: clamp(36px, 4vw, 44px);
    line-height: 1.12;
  }

  .aam-work-card-group {
    width: calc(100vw - clamp(92px, 10.4vw, 140px));
    flex-basis: calc(100vw - clamp(92px, 10.4vw, 140px));
  }

  .aam-work-card {
    width: clamp(430px, 43vw, 560px);
    flex-basis: clamp(430px, 43vw, 560px);
  }

  .aam-build__pin {
    padding-right: clamp(46px, 5.2vw, 70px);
    padding-left: clamp(46px, 5.2vw, 70px);
  }

  .aam-build__container {
    grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
    gap: clamp(28px, 3vw, 44px);
  }

  .aam-build-card__heading h3 {
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.22;
  }

  .aam-services__cards {
    width: min(100%, calc(100vw - clamp(92px, 10.4vw, 140px)));
    padding: 0;
  }

  .aam-service-card,
  .aam-service-card--growth {
    min-width: clamp(300px, 29vw, 380px);
  }

  .aam-testimonials__grid {
    gap: clamp(28px, 3.5vw, 54px);
  }
}

@media (max-width: 980px) {
  :root {
    --aam-header-x: 24px;
    --aam-header-pad: 22px;
  }

  .aam-header {
    padding: 14px 16px;
  }

  .aam-header__inner {
    grid-template-columns: auto 1fr auto auto;
    column-gap: 16px;
    height: 52px;
  }

  .aam-header__nav {
    display: none;
  }

  .aam-menu-toggle {
    position: relative;
    z-index: 92;
    grid-column: 4;
    justify-self: end;
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    pointer-events: auto;
    backdrop-filter: none;
  }

  .aam-menu-toggle img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    transition: opacity 0.45s var(--aam-ease), transform 0.55s var(--aam-ease);
  }

  .aam-menu-toggle span {
    position: absolute;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: var(--aam-white);
    transform-origin: center;
    transition: transform 0.55s var(--aam-ease), background 0.45s var(--aam-ease);
    opacity: 0;
  }

  .aam-menu-toggle span:nth-of-type(1) {
    transform: translateY(-6px);
  }

  .aam-menu-toggle span:nth-of-type(2) {
    transform: translateY(0);
  }

  .aam-menu-toggle span:nth-of-type(3) {
    transform: translateY(6px);
  }

  body.is-menu-open .aam-menu-toggle span:nth-of-type(1) {
    background: var(--aam-hot-red);
    transform: rotate(45deg);
    opacity: 1;
  }

  body.is-menu-open .aam-menu-toggle span:nth-of-type(2) {
    background: var(--aam-hot-red);
    transform: scaleX(0);
    opacity: 0;
  }

  body.is-menu-open .aam-menu-toggle span:nth-of-type(3) {
    background: var(--aam-hot-red);
    transform: rotate(-45deg);
    opacity: 1;
  }

  body.is-menu-open .aam-menu-toggle img {
    opacity: 0;
    transform: scale(0.82);
  }

  .aam-mobile-menu {
    position: fixed;
    z-index: 88;
    inset: 0;
    display: block;
    overflow: hidden;
    padding: 104px 24px 34px;
    background:
      radial-gradient(circle at 18% 12%, rgba(245, 23, 53, 0.24), transparent 30%),
      radial-gradient(circle at 84% 7%, rgba(71, 52, 173, 0.28), transparent 28%),
      rgba(18, 8, 28, 0.96);
    clip-path: circle(0% at calc(100% - 45px) 36px);
    opacity: 0;
    pointer-events: none;
    transition: clip-path 0.85s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.45s var(--aam-ease);
  }

  body.is-menu-open .aam-mobile-menu {
    clip-path: circle(145% at calc(100% - 45px) 36px);
    opacity: 1;
    pointer-events: auto;
  }

  .aam-mobile-menu__nav {
    display: grid;
    gap: 8px;
  }

  .aam-mobile-menu__nav a {
    display: flex;
    align-items: center;
    min-height: 62px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--aam-white);
    font-size: clamp(38px, 11vw, 58px);
    font-weight: 500;
    line-height: 0.95;
    text-transform: uppercase;
    transform: translateY(28px);
    opacity: 0;
    transition: transform 0.7s var(--aam-ease), opacity 0.7s var(--aam-ease), color 0.45s var(--aam-ease);
  }

  body.is-menu-open .aam-mobile-menu__nav a {
    transform: translateY(0);
    opacity: 1;
  }

  body.is-menu-open .aam-mobile-menu__nav a:nth-child(2) {
    transition-delay: 0.04s;
  }

  body.is-menu-open .aam-mobile-menu__nav a:nth-child(3) {
    transition-delay: 0.08s;
  }

  body.is-menu-open .aam-mobile-menu__nav a:nth-child(4) {
    transition-delay: 0.12s;
  }

  body.is-menu-open .aam-mobile-menu__nav a:nth-child(5) {
    transition-delay: 0.16s;
  }

  body.is-menu-open .aam-mobile-menu__nav a:nth-child(6) {
    transition-delay: 0.2s;
  }

  body.is-menu-open .aam-mobile-menu__nav a:nth-child(7) {
    transition-delay: 0.24s;
  }

  .aam-mobile-menu__nav a:hover {
    color: var(--aam-hot-red);
  }

  .aam-header__logo img {
    width: 76px;
  }

  .aam-header__cta {
    grid-column: 3;
    justify-self: end;
    height: 44px;
    min-width: 44px;
    padding: 0 12px;
    font-size: 14px;
  }

  .aam-header__cta span:last-child {
    display: none;
  }

  .aam-header__phone svg {
    width: 20px;
    height: 20px;
  }

  section.aam-cinematic::before {
    display: none;
  }

  .aam-cinematic {
    height: 242vh;
    min-height: 1500px;
  }

  .aam-cinematic__pin,
  .aam-video-card {
    min-height: 760px;
  }

  .aam-hero-content,
  .aam-client-hero-content {
    top: 146px;
    width: min(650px, calc(100vw - 48px));
  }

  .aam-eyebrow p {
    font-size: 13px;
    letter-spacing: 6.4px;
  }

  .aam-hero-content h1,
  .aam-client-hero-content h1 {
    font-size: clamp(39px, 10.8vw, 58px);
  }

  .aam-hero-content h1 span:nth-child(2),
  .aam-hero-content__actions {
    padding-left: 0;
  }

  .aam-hero-content__actions {
    flex-wrap: wrap;
  }

  .aam-hero-copy,
  .aam-client-hero-copy {
    top: auto;
    right: var(--aam-header-x);
    bottom: 118px;
    left: var(--aam-header-x);
    width: auto;
    max-width: 520px;
    font-size: 16px;
    line-height: 24px;
  }

  .aam-slide__footer {
    bottom: 28px;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .aam-case-nav,
  .aam-slide__footer-spacer {
    display: none;
  }

  .aam-results__case-nav.aam-case-nav {
    display: flex;
  }

  .aam-results {
    gap: 32px;
    padding: 70px 24px 64px;
  }

  .aam-results__logo {
    top: 190px;
    left: -64px;
    width: 82vw;
  }

  .aam-results__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 16px;
    padding-top: 58px;
  }

  .aam-results__note br {
    display: none;
  }

  .aam-stat strong {
    gap: 0.375rem;
  }

  .aam-stat__suffix {
    padding-bottom: 0.25rem;
  }

  .aam-marquee-story {
    height: 600px;
    min-height: 600px;
  }

  .aam-marquee-story__pin {
    height: 600px;
    min-height: 600px;
  }

  .aam-marquee-story h2 {
    font-size: clamp(58px, 16vw, 96px);
  }

  .aam-marquee-story__pattern {
    width: 1780px;
    height: 320px;
    gap: 42px;
  }

  .aam-marquee-story__pattern span {
    width: 104px;
    height: 320px;
  }

  .aam-marquee-story__note {
    right: 24px;
    bottom: 54px;
    left: 24px;
    max-width: none;
    font-size: 15px;
  }

  .aam-capabilities {
    height: auto;
    min-height: 0;
    padding-top: 82px;
  }

  .aam-capabilities__intro {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 24px 38px;
    margin-bottom: 38px;
  }

  .aam-capabilities__copy h2 {
    max-width: 100%;
    font-size: clamp(38px, 10.4vw, 54px);
  }

  .aam-capabilities__track {
    height: auto;
    min-height: 0;
    padding: 0 24px;
  }

  .aam-capability-stack {
    position: relative;
    top: auto;
    display: grid;
    width: 100%;
    height: auto;
    gap: 18px;
  }

  .aam-capability-panel {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    border-radius: 16px;
    padding: 32px 24px;
  }

  .aam-capability-panel__number {
    font-size: 72px;
  }

  .aam-capability-panel__media {
    width: 100%;
    height: min(58vw, 320px);
    order: -1;
  }

  .aam-capability-panel__media video,
  .aam-capability-panel__media img {
    transform: scale(1.04);
  }

  .aam-capability-panel__content h3 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .aam-how-work__pin {
    min-height: 780px;
    padding: 82px 0;
  }

  .aam-how-work__heading {
    height: auto;
    padding: 0 24px;
  }

  .aam-how-work__heading-inner {
    gap: 22px;
    max-width: 100%;
  }

  .aam-how-work__heading h2 {
    font-size: clamp(36px, 7.2vw, 42px);
    line-height: 1.12;
  }

  .aam-how-work__viewport {
    margin-top: 30px;
  }

  .aam-how-work__track {
    gap: 24px;
    padding: 0 24px;
  }

  .aam-work-card-group {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    width: calc(100vw - 48px);
    flex-basis: calc(100vw - 48px);
    gap: 20px;
    align-items: start;
    justify-content: start;
  }

  .aam-work-card-group__number {
    width: auto;
    max-width: none;
    text-align: left;
  }

  .aam-work-card {
    width: 100%;
    min-width: 0;
    flex-basis: auto;
    gap: 28px;
    padding: 14px 14px 20px;
  }

  .aam-work-card__image {
    height: min(45vw, 280px);
  }

  .aam-work-card-group__copy {
    grid-column: 2;
    width: 100%;
    max-width: none;
    padding-top: 0;
  }

  .aam-work-card-group__copy p {
    font-size: 16px;
    line-height: 23px;
  }

  .aam-build__pin {
    height: auto;
    min-height: 0;
    padding: 82px 24px;
  }

  .aam-build__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 42px;
    height: auto;
  }

  .aam-build__left {
    gap: 32px;
  }

  .aam-build__content {
    padding-top: 0;
  }

  .aam-build__heading {
    max-width: 100%;
  }

  .aam-build__heading h2 {
    font-size: clamp(34px, 8vw, 42px);
    line-height: 1.12;
  }

  .aam-build__description > p {
    max-width: none;
    font-size: 16px;
    line-height: 24px;
  }

  .aam-build__callout p {
    white-space: normal;
  }

  .aam-build__right {
    display: grid;
    height: auto;
    gap: 24px;
    padding-top: 0;
    padding-left: 0;
  }

  .aam-build-card {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    min-height: 0;
    padding: 18px 16px 20px 0;
  }

  .aam-build-card__heading {
    height: 54px;
  }

  .aam-build-card__heading h3 {
    max-width: calc(100% - 78px);
    font-size: 19px;
    display: -webkit-box;
    overflow: hidden;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .aam-build-card__body > p {
    padding-left: 20px;
    font-size: 15px;
    line-height: 22px;
  }

  .aam-build-card__icon {
    width: 62px;
    height: 62px;
  }

  .aam-case-study {
    padding: 0 0 82px;
  }

  .aam-case-study__header {
    display: grid;
    min-height: 0;
    gap: 28px;
    padding: 0 24px;
  }

  .aam-case-study__heading-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .aam-case-study__heading-group h2 {
    max-width: 760px;
    font-size: clamp(36px, 7.2vw, 44px);
    line-height: 1.12;
  }

  .aam-case-study__cta {
    width: max-content;
  }

  .aam-case-study__grid {
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    gap: 34px;
    margin-top: 44px;
    padding: 0 24px;
  }

  .aam-case-card,
  .aam-case-card--wide,
  .aam-case-card--left,
  .aam-case-card--right {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    padding-top: 0;
  }

  .aam-case-card--wide .aam-case-card__media,
  .aam-case-card--left .aam-case-card__media,
  .aam-case-card--right .aam-case-card__media {
    height: auto;
    aspect-ratio: 1.5;
  }

  .aam-case-card--wide .aam-case-card__media {
    aspect-ratio: 1.5;
  }

  .aam-case-card__media {
    border-radius: 22px;
  }

  .aam-case-card__media img {
    border-radius: inherit;
  }

  .aam-services__pin {
    height: auto;
    min-height: 0;
    overflow: hidden;
    padding: 82px 24px;
  }

  .aam-services__eyebrow {
    justify-content: flex-start;
  }

  .aam-services__headline {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-height: 0;
    margin-top: 74px;
    text-align: left;
    transform: none;
  }

  .aam-services__headline h2 {
    font-size: clamp(34px, 8.2vw, 54px);
    line-height: 1.16;
    overflow-wrap: anywhere;
  }

  .aam-services__ghost {
    right: auto;
    bottom: auto;
    left: 50%;
    top: 162px;
    translate: -50% 0;
    font-size: clamp(78px, 18vw, 150px);
    opacity: 0.035;
  }

  .aam-services__cards {
    position: relative;
    top: auto;
    left: auto;
    display: grid;
    width: 100%;
    gap: 22px;
    margin-top: 56px;
    padding: 0;
    transform: none;
    opacity: 1;
  }

  .aam-service-card,
  .aam-service-card--growth {
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 500px;
    flex: none;
  }

  .aam-service-card--growth {
    min-height: 520px;
  }

  .aam-testimonials {
    padding: 82px 24px 46px;
  }

  .aam-testimonials__header {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 38px;
  }

  .aam-testimonials__header h2,
  .aam-footer__cta-block h2 {
    font-size: clamp(34px, 7vw, 42px);
    line-height: 1.14;
  }

  .aam-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .aam-testimonial-card,
  .aam-testimonial-card--large {
    min-height: 220px;
  }

  .aam-footer-logos {
    justify-content: flex-start;
    padding: 0 24px 48px;
  }

  .aam-footer-logos__track {
    animation-duration: 24s;
  }

  .aam-footer {
    padding: 0 24px;
  }

  .aam-footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 46px;
  }

  .aam-footer__follow {
    grid-column: auto;
  }

  .aam-footer__logo {
    height: auto;
    max-height: 74px;
  }

  .aam-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .aam-footer__bottom div {
    flex-wrap: wrap;
  }

}

@media (min-width: 600px) and (max-width: 980px) {
  :root {
    --aam-header-x: clamp(28px, 4.8vw, 42px);
    --aam-header-pad: clamp(20px, 3.8vw, 30px);
  }

  .aam-header {
    padding: 16px var(--aam-header-pad);
  }

  .aam-header__inner {
    height: 56px;
    column-gap: clamp(14px, 2.2vw, 20px);
  }

  .aam-header__logo img {
    width: clamp(72px, 9vw, 84px);
  }

  .aam-header__cta,
  .aam-menu-toggle {
    width: auto;
    height: clamp(42px, 5.5vw, 46px);
    min-width: clamp(42px, 5.5vw, 46px);
  }

  .aam-menu-toggle img {
    width: clamp(24px, 3.2vw, 28px);
    height: clamp(24px, 3.2vw, 28px);
  }

  .aam-cinematic {
    min-height: clamp(1500px, 170vw, 1760px);
  }

  .aam-cinematic__pin,
  .aam-video-card {
    min-height: clamp(760px, 92vw, 840px);
  }

  .aam-hero-content,
  .aam-client-hero-content {
    top: clamp(132px, 17vw, 168px);
    width: min(690px, calc(100vw - (var(--aam-header-x) * 2)));
  }

  .aam-hero-content h1,
  .aam-client-hero-content h1 {
    font-size: clamp(46px, 7.4vw, 64px);
    line-height: 1.08;
  }

  .aam-hero-copy,
  .aam-client-hero-copy {
    right: var(--aam-header-x);
    bottom: clamp(104px, 13vw, 136px);
    left: var(--aam-header-x);
    max-width: min(560px, 72vw);
  }

  .aam-results {
    padding: clamp(64px, 8vw, 78px) var(--aam-header-x) clamp(58px, 7vw, 72px);
  }

  .aam-results__stats {
    gap: clamp(26px, 4vw, 38px) clamp(18px, 3vw, 28px);
  }

  .aam-stat strong {
    font-size: clamp(48px, 8vw, 62px);
  }

  .aam-marquee-story h2 {
    font-size: clamp(82px, 13vw, 120px);
  }

  .aam-capabilities__intro,
  .aam-capabilities__track,
  .aam-how-work__heading,
  .aam-how-work__track,
  .aam-build__pin,
  .aam-case-study__header,
  .aam-case-study__grid,
  .aam-services__pin,
  .aam-testimonials,
  .aam-footer,
  .aam-footer-logos {
    padding-right: var(--aam-header-x);
    padding-left: var(--aam-header-x);
  }

  .aam-capabilities__copy h2,
  .aam-how-work__heading h2,
  .aam-build__heading h2,
  .aam-case-study__heading-group h2,
  .aam-services__headline h2,
  .aam-testimonials__header h2,
  .aam-footer__cta-block h2 {
    font-size: clamp(38px, 6vw, 48px);
    line-height: 1.12;
  }

  .aam-capability-stack {
    gap: clamp(18px, 2.6vw, 26px);
  }

  .aam-capability-panel {
    padding: clamp(32px, 5vw, 44px) clamp(24px, 4vw, 36px);
  }

  .aam-capability-panel__number {
    font-size: clamp(74px, 11vw, 96px);
  }

  .aam-capability-panel__content h3 {
    font-size: clamp(30px, 5vw, 40px);
  }

  .aam-capability-panel__media {
    height: min(46vw, 340px);
  }

  .aam-how-work__pin,
  .aam-build__pin,
  .aam-services__pin {
    padding-top: clamp(82px, 10vw, 104px);
    padding-bottom: clamp(82px, 10vw, 104px);
  }

  .aam-work-card-group {
    grid-template-columns: clamp(64px, 9vw, 86px) minmax(0, 1fr);
    width: calc(100vw - (var(--aam-header-x) * 2));
    flex-basis: calc(100vw - (var(--aam-header-x) * 2));
    gap: clamp(20px, 3vw, 28px);
  }

  .aam-work-card-group__copy {
    grid-column: 2;
  }

  .aam-work-card__image {
    height: min(42vw, 300px);
  }

  .aam-build__container,
  .aam-testimonials__grid {
    gap: clamp(36px, 5vw, 52px);
  }

  .aam-build-card__heading h3 {
    font-size: clamp(19px, 3vw, 24px);
  }

  .aam-case-study__grid,
  .aam-services__cards {
    gap: clamp(24px, 3.6vw, 36px);
  }

  .aam-service-card,
  .aam-service-card--growth {
    min-height: clamp(500px, 66vw, 560px);
  }

  .aam-footer__logo {
    max-height: clamp(74px, 10vw, 104px);
  }
}

@media (max-width: 560px) {
  .aam-header__cta {
    border-radius: 10px;
    gap: 0.5rem;
    height: 2.625rem;
    min-width: 2.625rem;
    padding: 0 0.75rem;
  }
  .aam-build__content {
    gap: 20px;
  }
  .aam-header__cta span:last-child {
    display: none;
  }
  /*.aam-video-card{
    width:200px;
  }*/
  .aam-results__note {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
  }
  .aam-hero-copy {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
  }
  .aam-header__logo img {
    width: 3rem;
  }

  .aam-button {
    height: 48px;
    min-width: 150px;
    padding: 0 16px;
    font-size: 14px;
  }

  .aam-hero-content,
  .aam-client-hero-content {
    top: 9.625rem;
    right: 1rem;
    left: 1rem;
    width: auto;
    text-align: center;
  }

  .aam-hero-content .aam-eyebrow,
  .aam-client-hero-content .aam-eyebrow {
    justify-content: center;
  }

  .aam-hero-content h1,
  .aam-client-hero-content h1 {
    font-size: clamp(2.375rem, 10.25vw, 2.875rem);
    line-height: 1.12;
  }

  .aam-hero-content__actions {
    position: absolute;
    top: 20.25rem;
    right: 0;
    left: 0;
    justify-content: center;
    gap: 0.875rem;
  }

  .aam-hero-copy,
  .aam-client-hero-copy {
    top: 21.25rem;
    right: 1rem;
    bottom: auto;
    left: 1rem;
    max-width: none;
    text-align: center;
  }

  .aam-socials {
    display: none;
  }

  .aam-case-nav {
    display: flex;
    gap: 22px;
  }

  .aam-case-nav__button,
  .aam-case-nav__button img {
    width: 38px;
    height: 38px;
  }

  .aam-case-nav__brand {
    min-height: 74px;
  }

  .aam-case-nav__brand img {
    width: 135px;
    max-width: auto;
    padding-bottom: 8px;
  }

  .aam-marquee-story,
  .aam-marquee-story__pin {
    height: 450px;
    min-height: 450px;
  }

  .aam-marquee-story h2, body.aam-about-body .aam-about-highlighter h2 {
    font-size: clamp(7.5rem, 18vw, 6rem);
  }
  .aam-build__description > p {
    max-width: none;
    font-size: 14px;
    line-height: 21px;
  } 

  .aam-service-card--growth .aam-service-card__description {
    color: var(--aam-white);
    font-size: 13px;
    line-height: 20px;
  }

  .aam-service-card--growth .aam-service-card__term p{
    font-size: 14px;
    line-height: 22px;
  }

  .aam-marquee-story__slash {
    font-size: clamp(10rem, 22vw, 7rem);
  }

  .aam-results {
    gap: 28px;
    padding: 64px 20px 58px;
  }
  .aam-how-work__eyebrow span, .aam-capabilities__eyebrow span,
  .aam-build__eyebrow span, .aam-case-study__eyebrow span, .aam-services__eyebrow span,
  .aam-testimonials__eyebrow span {
    font-size: 13px;
    font-weight: 700;
    line-height: 0.8;
    transform: skewX(-10deg);
  }
  .aam-eyebrow span{
    font-size: 15px;
    margin-top: 2px;
  }
  .aam-results__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 14px;
    padding-top: 48px;
  }

  .aam-stat strong {
    font-size: clamp(40px, 12vw, 54px);
  }

  .aam-stat__suffix {
    font-size: clamp(30px, 9vw, 42px);
  }

  .aam-stat > span {
    font-size: 14px;
    line-height: 20px;
  }

  .aam-stat em {
    font-size: 13px;
  }

  .aam-capabilities {
    padding-top: 5rem;
  }

  .aam-capabilities__intro {
    gap: 1.4rem;
    padding: 0 1rem 2.5rem;
    margin-bottom: 0;
  }

  .aam-capabilities__eyebrow p,.aam-how-work__eyebrow p {
    font-size: 13px;
    letter-spacing: 0.34rem;
  }

  .aam-capabilities__copy h2 {
    font-size: 1.625rem;
    line-height: 1.18;
    letter-spacing: 0.02rem;
  }

  .aam-capabilities__copy p {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.375;
  }

  .aam-build__callout p {
    font-size: 18px;
  }

  .aam-work-card-group__copy p {
        font-size: 14px;
        line-height: 22px;
  }

  .aam-capabilities__track {
    padding: 0;
  }

  .aam-capability-stack {
    gap: 0;
  }

  .aam-capability-panel {
    grid-template-columns: 4.125rem minmax(0, 1fr);
    gap: 2rem 0.75rem;
    border-radius: 0;
    padding: 2.5rem 1rem 2.5rem;
  }

  .aam-capability-panel__number {
    grid-column: 1;
    font-size: 3rem;
    line-height: 1;
  }

  .aam-capability-panel__content {
    grid-column: 2;
    max-width: none;
    padding-top: 0.25rem;
  }

  .aam-capability-panel__content h3 {
    font-size: 1.25rem;
    line-height: 1.25;
  }

  .aam-capability-panel__content p {
    margin: 0.5rem 0 1rem;
    font-size: 0.875rem;
    line-height: 1.375;
  }

  .aam-capability-panel__content .aam-button {
    min-width: 7.75rem;
    height: 2.75rem;
    font-size: 0.75rem;
  }

  .aam-capability-panel__media {
    grid-column: 1 / -1;
    order: initial;
    height: 15.3125rem;
    margin-top: 0;
    border-radius: 0.875rem;
  }

  .aam-how-work__pin {
    min-height: 760px;
    padding: 76px 0;
  }

  .aam-how-work__eyebrow p {
    font-size: 13px;
    letter-spacing: 4.6px;
  }

  .aam-how-work__heading h2 {
    font-size: 1.625rem;
    line-height: 1.18;
    letter-spacing: 0.02rem;
  }
  .aam-work-card-group__number {
      font-size: 1.5rem;
  }

  .aam-work-card-group {
    grid-template-columns: 1fr;
    width: calc(100vw - 40px);
    flex-basis: calc(100vw - 40px);
    gap: 16px;
  }

  .aam-work-card-group__number,
  .aam-work-card-group__copy {
    grid-column: auto;
  }

  .aam-work-card {
    border-radius: 18px;
  }

  .aam-work-card__image {
    height: min(58vw, 250px);
    border-radius: 14px;
  }

  .aam-work-card h3 {
    font-size: 18px;
  }

  .aam-build-card__body > p {
      padding-left: 20px;
      font-size: 14px;
      line-height: 20px;
  }

  .aam-build__pin {
    padding: 80px 16px;
  }

  .aam-build__eyebrow p {
    font-size: 13px;
    letter-spacing: 4.6px;
  }

  .aam-build__heading h2 {
    font-size: 1.625rem;
    line-height: 1.18;
    letter-spacing: 0.02rem;
  }

  .aam-build-card__heading h3 {
    font-size: 17px;
    line-height: 22px;
  }

  .aam-build-card__icon {
    width: 48px;
    height: 48px;
    top: 16px;
    right: 16px;
  }
  .aam-case-study__header, .aam-how-work__heading, .aam-how-work__track{
    padding: 0 16px;
  }
  .aam-case-study {
    padding-bottom: 76px;
  }

  .aam-case-study__eyebrow p {
    font-size: 13px;
    letter-spacing: 4.6px;
  }

  .aam-case-study__heading-group h2 {
    font-size: 1.625rem;
    line-height: 1.18;
    letter-spacing: 0.02rem;
  }

  .aam-case-study__cta {
    height: 46px;
    padding: 0 20px;
  }

  .aam-case-card {
    gap: 14px;
  }

  .aam-case-card__media {
    border-radius: 18px;
  }

  .aam-case-card__media figcaption {
    height: 56px;
    font-size: 18px;
  }

  .aam-case-card__content h3 {
    font-size: 17px;
  }

  .aam-case-card__content p {
    font-size: 14px;
    line-height: 22px;
  }

  .aam-services__pin {
    padding: 76px 20px;
  }

  .aam-services__eyebrow {
    gap: 8px;
  }

  .aam-services__eyebrow p {
    font-size: 12px;
    letter-spacing: 3.6px;
    white-space: normal;
    text-align: center;
  }

  .aam-services__headline {
    margin-top: 58px;
  }

  .aam-services__headline h2 {
    font-size: 26px;
    line-height: 1.18;
    text-align: center;
  }

  .aam-services__cards {
    gap: 18px;
    margin-top: 30px;
  }

  .aam-service-card,
  .aam-service-card--growth {
    min-height: 460px;
    border-radius: 20px;

  }

  .aam-service-card__top,
  .aam-service-card--growth .aam-service-card__top {
    gap: 24px;
  }

  .aam-service-card__price,
  .aam-service-card--growth .aam-service-card__price {
    font-size: clamp(32px, 10vw, 36px);
  }

  .aam-service-card__price span,
  .aam-service-card--growth .aam-service-card__price span {
    font-size: 16px;
  }

  .aam-service-card__tag span,
  .aam-service-card--growth .aam-service-card__tag span {
    height: 44px;
    font-size: 16px;
  }

  .aam-service-card__button,
  .aam-service-card--growth .aam-service-card__button {
    height: 46px;
    font-size: 14px;
  }

  .aam-testimonials {
    padding: 76px 16px 76px;
  }

  .aam-testimonials__eyebrow p {
    font-size: 13px;
    letter-spacing: 4.6px;  
  }

  .aam-testimonials__header h2,
  .aam-footer__cta-block h2 {
    font-size: 1.625rem;
    line-height: 1.18;
    letter-spacing: 0.02rem;
}

  .aam-testimonial-card {
    gap: 24px;
    padding: 16;
    border-radius: 20px 20px 20px 0;
  }

  .aam-testimonial-card__quote {
    font-size: 15px;
    line-height: 22px;
  }

  .aam-testimonial-card__avatar {
    width: 48px;
    height: 48px;
  }

  .aam-testimonial-video {
    min-height: 286px;
    padding: 16px;
    border-radius: 20px;
  }

  .aam-testimonial-video__frame {
    height: 202px;
    border-radius: 15px;
  }

  .aam-footer-logos {
    display: flex;
    padding: 0 20px 42px;
  }

  .aam-footer-logos__track {
    gap: 10px;
    animation-duration: 20s;
  }

  .aam-footer-logos__track img {
    width: 9.25rem;
    flex-basis: 9.25rem;
    height: 64px;
  }

  .aam-footer {
    padding: 0 20px;
  }

  .aam-footer__cta-block p {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 21px;
  }

  .aam-footer__button {
    width: 100%;
  }

  .aam-footer__field {
    height: 48px;
  }

  .aam-footer__logo {
    max-height: 54px;
    margin-bottom: 24px;
  }

}

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


/* Contact page styles moved from contact.html */
body.aam-contact-body {
  --aam-bg: #12081c;
  --aam-white: #ffffff;
  --aam-red: #e31e26;
  --aam-hot-red: #f51735;
  --aam-muted: #777b88;
  --aam-copy: rgba(255, 255, 255, 0.78);
  --aam-border: rgba(245, 23, 53, 0.75);
  --aam-gradient: linear-gradient(133deg, #f51735 9.44%, rgba(234, 21, 89, 0.86) 92.36%);
  --aam-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --aam-header-pad: 40px;
  --aam-page-pad: 70px;
}

body.aam-contact-body * { box-sizing: border-box; }

html:has(body.aam-contact-body) { scroll-behavior: smooth; }

body.aam-contact-body {
  margin: 0;
  overflow-x: hidden;
  background: var(--aam-bg);
  color: var(--aam-white);
  font-family: "Instrument Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.aam-contact-body a { color: inherit; text-decoration: none; }

body.aam-contact-body img, body.aam-contact-body video { display: block; max-width: 100%; }

body.aam-contact-body button, body.aam-contact-body input, body.aam-contact-body textarea { font: inherit; }

body.aam-contact-body .aam-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px var(--aam-header-pad);
  pointer-events: none;
}

body.aam-contact-body .aam-header__inner {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 200px;
  align-items: center;
  width: 100%;
  height: 60px;
}

body.aam-contact-body .aam-header__logo, body.aam-contact-body .aam-header__cta, body.aam-contact-body .aam-header__nav { pointer-events: auto; }

body.aam-contact-body .aam-header__logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 2px 5px;
}

body.aam-contact-body .aam-header__logo img { width: 90px; height: auto; }

body.aam-contact-body .aam-header__nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  padding: 13px 0;
  transform-origin: center top;
  transition: opacity 0.58s var(--aam-ease), transform 0.58s var(--aam-ease);
  will-change: transform, opacity;
}

body.aam-contact-body .aam-header__nav.is-hidden {
  opacity: 0;
  transform: translateY(-22px) scale(0.94);
  pointer-events: none;
}

body.aam-contact-body .aam-header__nav a {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: var(--aam-copy);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  transition: color 0.45s var(--aam-ease);
}

body.aam-contact-body .aam-header__nav a::after {
  width: 21px;
  height: 2px;
  background: var(--aam-gradient);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.45s var(--aam-ease), transform 0.45s var(--aam-ease);
}

body.aam-contact-body .aam-header__nav a:hover, body.aam-contact-body .aam-header__nav a.is-active { color: var(--aam-hot-red); }

body.aam-contact-body .aam-header__nav a:hover::after, body.aam-contact-body .aam-header__nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

body.aam-contact-body .aam-header__cta {
  position: relative;
  justify-self: end;
  display: inline-flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  border: 1px solid var(--aam-hot-red);
  border-radius: 12px;
  padding: 0 24px;
  color: var(--aam-white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(15px);
}

body.aam-contact-body .aam-header__cta::before, body.aam-contact-body .aam-button::before, body.aam-contact-body .aam-socials__link::before {
  position: absolute;
  inset: auto auto -19px -7px;
  width: 50px;
  height: 39px;
  background: radial-gradient(circle, rgba(245, 23, 53, 0.7), rgba(255, 255, 255, 0));
  content: "";
  filter: blur(9px);
  transform: rotate(20deg);
}

body.aam-contact-body .aam-header__phone svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--aam-hot-red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

body.aam-contact-body .aam-menu-toggle, body.aam-contact-body .aam-mobile-menu { display: none; }

body.aam-contact-body .aam-contact-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--aam-bg);
}

body.aam-contact-body .aam-contact-page__bg {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  min-height: 1580px;
  object-fit: cover;
  pointer-events: none;
}

body.aam-contact-body .aam-contact-main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 114px;
  width: 100%;
  max-width: 1440px;
  min-width: auto;
  margin: 0 auto;
  padding: 132px var(--aam-page-pad) 100px;
}

body.aam-contact-body .aam-contact-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

body.aam-contact-body .aam-eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--aam-red);
  text-transform: uppercase;
  margin-bottom: 0px;
}

body.aam-contact-body .aam-eyebrow span {
  font-size: 25px;
  font-weight: 700;
  line-height: 0.8;
  transform: skewX(-10deg);
}

body.aam-contact-body .aam-eyebrow p {
  margin: 0;
  color: var(--aam-red);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 6.4px;
}

body.aam-contact-body .aam-contact-hero h1 {
  max-width: 460px;
  margin: 0;
  color: var(--aam-white);
  font-size: 56px;
  font-weight: 500;
  line-height: 58px;
  letter-spacing: 0.42px;
}

body.aam-contact-body .aam-contact-hero h1 span { color: var(--aam-hot-red); }

body.aam-contact-body .aam-contact-hero p {
  width: 100%;
  max-width: 1080px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.28px;
}
.aam-eyebrow p {
    letter-spacing: 10px !important;
    width: auto;
    max-width: 1080px;
    margin: 0;
    color: rgba(255, 255, 255, 0.65);;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}
body.aam-contact-body .aam-contact-form-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 580px);
  gap: 70px;
  align-items: start;
}

body.aam-contact-body .aam-contact-form-section__glow {
  position: absolute;
  z-index: -1;
  left: -70px;
  top: -170px;
  width: 1049px;
  height: 831px;
  object-fit: cover;
  opacity: 0.82;
  pointer-events: none;
}

body.aam-contact-body .aam-contact-copy {
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-width: 0;
}

body.aam-contact-body .aam-contact-copy h2 {
  margin: 0;
  color: var(--aam-white);
  font-size: 36px;
  font-weight: 500;
  line-height: 45px;
  letter-spacing: 0.5px;
}

body.aam-contact-body .aam-contact-copy h2 span { color: var(--aam-muted); }

body.aam-contact-body .aam-contact-copy__note {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.5px;
}

body.aam-contact-body .aam-contact-copy__note img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

body.aam-contact-body .aam-contact-ghost {
  margin: 54px 0 0;
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(82px, 10vw, 150px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

body.aam-contact-body .aam-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 580px;
}

body.aam-contact-body .aam-contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

body.aam-contact-body .aam-field {
  width: 100%;
  height: 46px;
  border: 1px solid var(--aam-border);
  border-radius: 12px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--aam-white);
  outline: none;
  backdrop-filter: blur(5px);
}

body.aam-contact-body .aam-field::placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

body.aam-contact-body textarea.aam-field {
  height: 140px;
  resize: vertical;
  padding-top: 16px;
}

body.aam-contact-body .aam-contact-submit {
  position: relative;
  display: inline-flex;
  width: 100%;
  height: 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(148deg, #f51735 9.44%, rgba(234, 21, 89, 0.7) 92.36%);
  color: var(--aam-white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  cursor: pointer;
}

body.aam-contact-body .aam-contact-special {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 62px 40px;
  min-height: 340px;
  background: rgba(255, 255, 255, 0.04);
}

body.aam-contact-body .aam-contact-special__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

body.aam-contact-body .aam-contact-special__content {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 650px;
  flex-direction: column;
  gap: 48px;
}

body.aam-contact-body .aam-contact-special__logo {
  width: 90px;
  height: auto;
}

body.aam-contact-body .aam-contact-special h2 {
  max-width: 630px;
  margin: 28px 0 0;
  color: var(--aam-white);
  font-size: 36px;
  font-weight: 500;
  line-height: 45px;
  letter-spacing: 0.5px;
}

body.aam-contact-body .aam-contact-special h2 span { color: var(--aam-muted); }

body.aam-contact-body .aam-contact-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 650px;
  border-radius: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

body.aam-contact-body .aam-contact-box h3 {
  margin: 0 0 4px;
  color: var(--aam-white);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.5px;
}

body.aam-contact-body .aam-contact-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 24px;
}

body.aam-contact-body .aam-contact-tabs {
  display: flex;
  gap: 20px;
  align-items: center;
}

body.aam-contact-body .aam-contact-tabs span {
  position: relative;
  display: inline-flex;
  height: 40px;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.aam-contact-tab.is-active {
    color: var(--aam-hot-red);
}

.aam-contact-tab.is-active::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    border-radius: 1px;
    background: var(--aam-gradient);
    content: "";
}
body.aam-contact-body .aam-contact-tabs .aam-contact-tab.is-active {
    color: var(--aam-hot-red);
}
body.aam-contact-body .aam-contact-tabs .aam-contact-tab.is-active::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    border-radius: 1px;
    background: var(--aam-gradient);
    content: "";
}
article.aam-service-card.aam-service-card--single, 
article.aam-service-card.aam-service-card--embedded {
    background: #fff !important;
}
body.aam-contact-body .aam-contact-email {
  display: flex;
  height: 46px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--aam-border);
  border-radius: 12px;
  padding: 0 14px 0 18px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
}

/* ══════════════════════════════════════
   CF7 CONTACT FORM LAYOUT FIX
══════════════════════════════════════ */

/* Remove all CF7 default spacing */
.aam-contact-form .wpcf7 {
    margin: 0;
    padding: 0;
}

.aam-contact-form .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Remove CF7 paragraph wrappers */
.aam-contact-form .wpcf7-form br {
    display: none;
}

/* Two column row */
.aam-contact-form .aam-contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Make all inputs full width */
.aam-contact-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}
.wpcf7-mail-sent-ok,
.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
    display: block !important;
    border: none !important;
}
.aam-contact-form .aam-contact-form__row .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}
.aam-contact-form .aam-contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.aam-contact-form input[type="text"],
.aam-contact-form input[type="email"],
.aam-contact-form textarea,
.aam-contact-form .wpcf7-text,
.aam-contact-form .wpcf7-email,
.aam-contact-form .wpcf7-textarea {
    width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
}
/* Hide response output until CF7 adds a status class */
.aam-contact-form .wpcf7-mail-sent-ok,
.aam-contact-form .wpcf7-mail-sent-ng,
.aam-contact-form .wpcf7-validation-errors,
.aam-contact-form .wpcf7-spam-blocked {
    display: block !important;
    margin-top: 16px !important;
    padding: 14px 18px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    border: none !important;
}
/* Submit button full width */
.aam-contact-form .wpcf7-submit {
    width: 100%;
    cursor: pointer;
    display: block;
}

/* Hide CF7 spinner */
.wpcf7-spinner {
    display: none !important;
}

/* Validation errors */
.wpcf7-not-valid-tip {
    color: #ff4444;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}


.wpcf7-mail-sent-ok {
    background: rgba(0, 255, 100, 0.08) !important;
    color: #00ff64 !important;
}

.wpcf7-mail-sent-ng,
.wpcf7-validation-errors {
    background: rgba(255, 68, 68, 0.08) !important;
    color: #ff4444 !important;
}

/* Mobile responsive */
@media (max-width: 640px) {
    .aam-contact-form .aam-contact-form__row {
        grid-template-columns: 1fr;
    }
}

body.aam-contact-body .aam-contact-email img {
  width: 24px;
  height: 24px;
}

body.aam-works-body .aam-works-page {
  position: relative;
  overflow: hidden;
  background: var(--aam-bg);
  color: var(--aam-white);
}

body.aam-works-body .aam-works-page__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  pointer-events: none;
}

body.aam-works-body .aam-works-hero {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  max-width: 1440px;
  min-height: 500px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  margin: 0 auto;
  padding: 170px var(--aam-page-pad) 78px;
}

body.aam-works-body .aam-works-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--aam-white);
  font-size: 52px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.5px;
}

body.aam-works-body .aam-works-hero h1 span {
  color: transparent;
  background: linear-gradient(130deg, #f51735 9.443%, rgba(234, 21, 89, 0.7) 92.365%);
  background-clip: text;
  -webkit-background-clip: text;
}

body.aam-works-body .aam-works-hero > p {
  width: 100%;
  max-width: 1100px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.3px;
}

body.aam-works-body .aam-works-cases {
  padding-bottom: 130px;
}

body.aam-works-body .aam-works-cases .aam-case-study__grid {
  margin-top: 0;
}

body.aam-works-body .aam-works-cases .aam-case-card--wide {
  width: min(100%, 920px);
}

@media (max-width: 1250px) {
  body.aam-works-body .aam-works-hero {
    padding-top: 150px;
  }

  body.aam-works-body .aam-works-hero h1 {
    font-size: clamp(42px, 5vw, 52px);
    line-height: 1.1;
  }
}

@media (max-width: 980px) {
  body.aam-works-body .aam-works-hero {
    min-height: 430px;
    padding: 128px var(--aam-page-pad) 58px;
  }

  body.aam-works-body .aam-works-hero h1 {
    max-width: 640px;
    font-size: clamp(34px, 7vw, 48px);
  }

  body.aam-works-body .aam-works-cases {
    padding-bottom: 90px;
  }
}

@media (max-width: 560px) {
  body.aam-works-body .aam-works-hero {
    min-height: 370px;
    gap: 16px;
    padding: 110px 20px 42px;
  }

  body.aam-works-body .aam-works-hero h1 {
    font-size: 32px;
    line-height: 1.12;
    letter-spacing: 0.24px;
  }

  body.aam-works-body .aam-works-hero > p {
    font-size: 14px;
    line-height: 22px;
  }

  body.aam-works-body .aam-works-cases {
    padding-bottom: 76px;
  }
}

body.aam-contact-body .aam-footer-section {
  position: relative;
  overflow: hidden;
  background: var(--aam-bg);
  color: var(--aam-white);
}

body.aam-contact-body .aam-footer-section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

body.aam-contact-body .aam-footer-logos, body.aam-contact-body .aam-footer {
  position: relative;
  z-index: 1;
}

body.aam-contact-body .aam-footer-logos {
  overflow: hidden;
  padding: 0 0 60px;
}

body.aam-contact-body .aam-footer-logos__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 13px;
  animation: aam-logo-marquee 28s linear infinite;
  will-change: transform;
}

body.aam-contact-body .aam-footer-logos:hover .aam-footer-logos__track { animation-play-state: paused; }

body.aam-contact-body .aam-footer-logos__track img {
  width: 174px;
  height: 78px;
  flex: 0 0 174px;
  object-fit: contain;
  opacity: 0.62;
}

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

body.aam-contact-body .aam-footer {
  width: 100%;
  padding: 0 var(--aam-page-pad);
}

body.aam-contact-body .aam-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(150px, 0.78fr) minmax(300px, 1.22fr);
  gap: 52px;
  align-items: start;
  width: 100%;
  padding: 0 0 62px;
}

body.aam-contact-body .aam-footer__cta-block h2 {
  max-width: 580px;
  margin: 0 0 26px;
  color: var(--aam-white);
  font-size: 42px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 0.42px;
}

body.aam-contact-body .aam-footer__cta-block h2 span { color: rgba(255, 255, 255, 0.48); }

body.aam-contact-body .aam-footer__cta-block p {
  max-width: 575px;
  margin: 0 0 40px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.18px;
}

body.aam-contact-body .aam-footer__button {
  display: inline-flex;
  min-width: 196px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--aam-gradient);
  color: var(--aam-white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16px;
  text-transform: uppercase;
}

body.aam-contact-body .aam-footer__menu, body.aam-contact-body .aam-footer__follow {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.aam-contact-body .aam-footer h3 {
  margin: 0 0 12px;
  color: var(--aam-white);
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

body.aam-contact-body .aam-footer__menu a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05px;
}

body.aam-contact-body .aam-footer__field {
  display: flex;
  height: 46px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--aam-border);
  border-radius: 12px;
  padding: 0 14px 0 16px;
  background: rgba(255, 255, 255, 0.07);
}

body.aam-contact-body .aam-footer__field input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--aam-white);
  outline: none;
}

body.aam-contact-body .aam-footer__field input::placeholder { color: rgba(255, 255, 255, 0.55); }

body.aam-contact-body .aam-footer__field button {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

body.aam-contact-body .aam-footer__field img {
  width: 22px;
  height: 22px;
}

body.aam-contact-body .aam-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

body.aam-contact-body .aam-socials__link {
  position: relative;
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--aam-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

body.aam-contact-body .aam-socials__link img {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
}

body.aam-contact-body .aam-footer__logo {
  width: 100%;
  height: auto;
  margin: 30px 0 28px;
}

body.aam-contact-body .aam-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 0;
  gap: 24px;
}

body.aam-contact-body .aam-footer__bottom p, body.aam-contact-body .aam-footer__bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  letter-spacing: 0.3px;
}

body.aam-contact-body .aam-footer__bottom div {
  display: flex;
  gap: 14px;
  align-items: center;
}

body.aam-contact-body .aam-footer__bottom span {
  width: 1px;
  height: 17px;
  background: rgba(255, 255, 255, 0.12);
}

body.aam-contact-body .aam-footer-logos {
  padding: 0 70px 60px;
}

body.aam-contact-body .aam-footer {
  padding: 0 70px;
}

body.aam-contact-body .aam-footer__top {
  grid-template-columns: minmax(0, 3fr) minmax(150px, 0.78fr) minmax(300px, 1.22fr);
  gap: 52px;
  padding: 0 0 62px;
}

body.aam-contact-body .aam-footer__cta-block h2 {
  max-width: 580px;
  margin: 0 0 26px;
}

body.aam-contact-body .aam-footer__cta-block p {
  max-width: 575px;
  margin: 0 0 40px;
}

body.aam-contact-body .aam-footer__button {
  min-width: 196px;
  height: 50px;
}

body.aam-contact-body .aam-footer__logo {
  height: 124px;
  object-fit: contain;
  margin: 0 0 34px;
}

body.aam-contact-body .aam-footer__bottom {
  min-height: 78px;
  padding: 30px 0;
}

@media (max-width: 980px) {
  body.aam-contact-body {
    --aam-header-pad: 16px;
    --aam-page-pad: 24px;
  }

body.aam-contact-body .aam-header { padding: 14px 16px; }

body.aam-contact-body .aam-header__inner {
    grid-template-columns: auto 1fr auto auto;
    column-gap: 16px;
    height: 52px;
  }

body.aam-contact-body .aam-header__nav { display: none; }

body.aam-contact-body .aam-header__logo img { width: 76px; }

body.aam-contact-body .aam-header__cta {
    grid-column: 3;
    height: 44px;
    min-width: 44px;
    padding: 0 12px;
  }

body.aam-contact-body .aam-header__cta span:last-child { display: none; }

body.aam-contact-body .aam-header__phone svg {
    width: 20px;
    height: 20px;
  }

body.aam-contact-body .aam-menu-toggle {
    position: relative;
    z-index: 92;
    grid-column: 4;
    justify-self: end;
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    pointer-events: auto;
  }

body.aam-contact-body .aam-menu-toggle img {
    width: 26px;
    height: 26px;
    transition: opacity 0.45s var(--aam-ease), transform 0.55s var(--aam-ease);
  }

body.aam-contact-body .aam-menu-toggle span {
    position: absolute;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: var(--aam-white);
    opacity: 0;
    transition: transform 0.55s var(--aam-ease), opacity 0.45s var(--aam-ease), background 0.45s var(--aam-ease);
  }

body.aam-contact-body .aam-menu-toggle span:nth-of-type(1) { transform: translateY(-6px); }

body.aam-contact-body .aam-menu-toggle span:nth-of-type(2) { transform: translateY(0); }

body.aam-contact-body .aam-menu-toggle span:nth-of-type(3) { transform: translateY(6px); }

body.aam-contact-body.is-menu-open .aam-menu-toggle img {
    opacity: 0;
    transform: scale(0.82);
  }

body.aam-contact-body.is-menu-open .aam-menu-toggle span:nth-of-type(1) {
    background: var(--aam-hot-red);
    opacity: 1;
    transform: rotate(45deg);
  }

body.aam-contact-body.is-menu-open .aam-menu-toggle span:nth-of-type(2) {
    opacity: 0;
    transform: scaleX(0);
  }

body.aam-contact-body.is-menu-open .aam-menu-toggle span:nth-of-type(3) {
    background: var(--aam-hot-red);
    opacity: 1;
    transform: rotate(-45deg);
  }

body.aam-contact-body .aam-mobile-menu {
    position: fixed;
    z-index: 88;
    inset: 0;
    display: block;
    overflow: hidden;
    padding: 104px 24px 34px;
    background:
      radial-gradient(circle at 18% 12%, rgba(245, 23, 53, 0.24), transparent 30%),
      radial-gradient(circle at 84% 7%, rgba(71, 52, 173, 0.28), transparent 28%),
      rgba(18, 8, 28, 0.96);
    clip-path: circle(0% at calc(100% - 45px) 36px);
    opacity: 0;
    pointer-events: none;
    transition: clip-path 0.85s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.45s var(--aam-ease);
  }

body.aam-contact-body.is-menu-open .aam-mobile-menu {
    clip-path: circle(145% at calc(100% - 45px) 36px);
    opacity: 1;
    pointer-events: auto;
  }

body.aam-contact-body .aam-mobile-menu__nav {
    display: grid;
    gap: 8px;
  }

body.aam-contact-body .aam-mobile-menu__nav a {
    display: flex;
    align-items: center;
    min-height: 62px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--aam-white);
    font-size: clamp(38px, 11vw, 58px);
    font-weight: 500;
    line-height: 0.95;
    text-transform: uppercase;
    transform: translateY(28px);
    opacity: 0;
    transition: transform 0.7s var(--aam-ease), opacity 0.7s var(--aam-ease), color 0.45s var(--aam-ease);
  }

body.aam-contact-body.is-menu-open .aam-mobile-menu__nav a {
    transform: translateY(0);
    opacity: 1;
  }

body.aam-contact-body .aam-contact-main {
    gap: 72px;
    padding-top: 118px;
  }

body.aam-contact-body .aam-contact-hero h1 {
    max-width: 340px;
    font-size: 38px;
    line-height: 42px;
  }

body.aam-contact-body .aam-contact-form-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

body.aam-contact-body .aam-contact-form {
    max-width: none;
  }

body.aam-contact-body .aam-contact-copy h2, body.aam-contact-body .aam-contact-special h2 {
    font-size: 30px;
    line-height: 38px;
  }

body.aam-contact-body .aam-contact-ghost {
    margin-top: 20px;
    font-size: clamp(64px, 20vw, 110px);
  }

body.aam-contact-body .aam-contact-special {
    padding: 34px 22px;
    border-radius: 20px;
  }

body.aam-contact-body .aam-contact-special__content {
    gap: 32px;
  }

body.aam-contact-body .aam-contact-box {
    padding: 18px;
  }

body.aam-contact-body .aam-footer__top {
    grid-template-columns: 1fr;
    gap: 42px;
  }

body.aam-contact-body .aam-footer-logos__track img {
    width: 138px;
    height: 62px;
    flex-basis: 138px;
  }

body.aam-contact-body .aam-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  body.aam-contact-body .aam-header__cta {
    border-radius: 10px;
    height: 2.625rem;
    min-width: 2.625rem;
    padding: 0 0.75rem;
  }

body.aam-contact-body .aam-contact-main {
    padding-top: 104px;
  }

body.aam-contact-body .aam-eyebrow p {
    font-size: 12px;
    letter-spacing: 4px;
  }

body.aam-contact-body .aam-contact-hero h1 {
    font-size: 34px;
    line-height: 38px;
  }

body.aam-contact-body .aam-contact-form__row {
    grid-template-columns: 1fr;
  }

body.aam-contact-body .aam-contact-copy__note {
    align-items: flex-start;
    font-size: 15px;
    line-height: 23px;
  }

body.aam-contact-body .aam-contact-special h2, body.aam-contact-body .aam-contact-copy h2 {
    font-size: 27px;
    line-height: 34px;
  }

body.aam-contact-body .aam-contact-tabs {
    gap: 16px;
  }

body.aam-contact-body .aam-contact-tabs span {
    font-size: 14px;
  }

body.aam-contact-body .aam-footer__cta-block h2 {
    font-size: 34px;
    line-height: 38px;
  }

body.aam-contact-body .aam-footer__social {
    gap: 10px;
  }

body.aam-contact-body .aam-socials__link {
    width: 42px;
    height: 42px;
  }
}
/* End contact page styles */

/* About page styles */
body.aam-about-body {
  min-width: auto;
  overflow-x: hidden;
  background: #12081c;
  color: var(--aam-white);
  font-family: "Instrument Sans", sans-serif;
}

body.aam-about-body .aam-header {
  width: 100%;
  padding: 15px var(--aam-header-pad);
}

body.aam-about-body .aam-header__inner {
  max-width: none;
}

body.aam-about-body .aam-header__logo,
body.aam-about-body .aam-header__cta,
body.aam-about-body .aam-header__nav {
  pointer-events: auto;
}

body.aam-about-body .aam-header__logo {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
}

body.aam-about-body .aam-header__nav {
  position: static;
  transform: none;
}

body.aam-about-body .aam-header__nav.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-22px) scale(0.94);
}

body.aam-about-body .aam-header__cta {
  position: relative;
  right: auto;
  top: auto;
  transform: none;
}

body.aam-about-body .aam-about-container {
  width: 100%;
  max-width: 1440px;
  min-width: auto;
  margin: 0 auto;
  padding-right: 70px;
  padding-left: 70px;
}

body.aam-about-body .aam-about-page {
  width: 100%;
  overflow: hidden;
}

body.aam-about-body .aam-about-hero {
  position: relative;
  min-height: 812px;
  overflow: hidden;
  padding: 132px 0 96px;
  background: #12081c;
}

body.aam-about-body .aam-about-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
  object-position: top;
}

body.aam-about-body .aam-about-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
  gap: 60px 40px;
  align-items: start;
}

body.aam-about-body .aam-about-hero__copy {
  grid-column: 1 / -1;
  max-width: 850px;
}

body.aam-about-body .aam-about-hero__copy h1 {
  max-width: 840px;
  margin: 22px 0 0;
  color: var(--aam-white);
  font-size: 56px;
  font-weight: 500;
  line-height: 58px;
  letter-spacing: 0.42px;
}

body.aam-about-body .aam-about-hero__copy h1 span {
  /*color: var(--aam-hot-red);*/
  color: transparent;
  background: linear-gradient(131deg, #f51735 9.44%, rgba(234, 21, 89, 0.7) 95.12%);
  background-clip: text;
  -webkit-background-clip: text;
}

body.aam-about-body .aam-about-hero__media {
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

body.aam-about-body .aam-about-hero__media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.54;
  object-fit: cover;
}

body.aam-about-body .aam-about-hero__text {
  max-width: 610px;
  padding-bottom: 4px;
}

body.aam-about-body .aam-about-hero__text p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.25px;
}

body.aam-about-body .aam-about-highlighter {
  position: relative;
  min-height: 100vh;
  background: #f1f2f4;
  color: #12081c;
}

body.aam-about-body .aam-about-highlighter__pin {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  background: #E8E9EA;
}

body.aam-about-body .aam-about-highlighter__pin::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(25% + 40px);
  width: 100%;
  height: 500px;
  transform: translateY(-42%);
  background: url("assets/highlighter_bg.png") center / cover no-repeat;
  pointer-events: none;
}

body.aam-about-body .aam-about-highlighter__track {
  position: absolute;
  z-index: 1;
  left: 0;
  top: calc(25% + 40px);
  width: max-content;
  will-change: transform;
}

body.aam-about-body .aam-about-highlighter h2 {
  margin: 0;
  color: #2f73ff;
  font-size: clamp(72px, 10.6vw, 152px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

body.aam-about-body .aam-about-highlighter h2 span {
  color: #2f73ff;
}

body.aam-about-body .aam-about-highlighter h2 .aam-about-highlighter__dark {
  color: #12081c;
}

/*body.aam-about-body .aam-about-highlighter__pin p {
  position: absolute;
  left: 50%;
  bottom: 13%;
  transform: translateX(-50%);
  width: min(610px, calc(100% - 32px));
  margin: 0;
  color: rgba(18, 8, 28, 0.62);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.25px;
  text-align: center;
}*/
.scrol_pragraph{
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  width: min(610px, calc(100% - 32px));
  margin: 0;
  color: rgba(18, 8, 28, 0.62);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.25px;
  text-align: center;
}

body.aam-about-body .aam-about-team,
body.aam-about-body .aam-about-testimonials {
  position: relative;
  overflow: hidden;
  background: #12081c;
}

body.aam-about-body .aam-about-team__bg,
body.aam-about-body .aam-about-testimonials__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: unset;
  opacity: 1;
  pointer-events: none;
}

body.aam-about-body .aam-about-team__inner {
  position: relative;
  z-index: 1;
  isolation: isolate;
  min-height: 100vh;
  padding-top: 104px;
  padding-bottom: 110px;
}

body.aam-about-body .aam-about-team__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("assets/team_bg.png") center / cover no-repeat;
  pointer-events: none;
}

body.aam-about-body .aam-about-team__bg {
  display: none;
}

body.aam-about-body .aam-about-team__heading {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 650px);
  gap: 54px;
  align-items: start;
}

body.aam-about-body .aam-about-team__heading h2,
body.aam-about-body .aam-about-testimonials__header h2 {
  margin: 0;
  color: var(--aam-white);
  font-size: 42px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 0.42px;
}

body.aam-about-body .aam-about-team__heading h2 span,
body.aam-about-body .aam-about-testimonials__header h2 span {
  color: rgba(255, 255, 255, 0.48);
}

body.aam-about-body .aam-about-team__stage {
  position: relative;
  height: calc(100vh - 245px);
  min-height: 650px;
  margin-top: 50px;
  overflow: hidden;
}

body.aam-about-body .aam-about-team__watermark {
  display: none;
}

body.aam-about-body .aam-about-member {
  position: absolute;
  display: block;
  width: 230px;
  height: 295px;
  overflow: hidden;
  border-radius: 14px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  will-change: transform;
}

body.aam-about-body .aam-about-member img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.aam-about-body .aam-about-member::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, rgba(18, 8, 28, 0), rgba(18, 8, 28, 0.78));
}

body.aam-about-body .aam-about-member strong,
body.aam-about-body .aam-about-member em {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
}

body.aam-about-body .aam-about-member strong {
  bottom: 30px;
  color: var(--aam-white);
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.25px;
}

body.aam-about-body .aam-about-member em {
  bottom: 13px;
  color: var(--aam-hot-red);
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 0.2px;
}

body.aam-about-body .aam-about-member--one {
  left: 5%;
  top: 120px;
}

body.aam-about-body .aam-about-member--two {
  left: 55%;
  top: 60px;
}

body.aam-about-body .aam-about-member--three {
  left: 45%;
  top: 330px;
}

body.aam-about-body .aam-about-member--four {
  right: 7%;
  top: 312px;
}

body.aam-about-body .aam-about-member--five {
  left: 9%;
  top: 430px;
}

body.aam-about-body .aam-about-member--six {
  left: 25%;
  top: 565px;
}

body.aam-about-body .aam-about-member--seven {
  left: 67%;
  top: 628px;
}

body.aam-about-body .aam-about-member--eight {
  left: 36%;
  top: 704px;
}

body.aam-about-body .aam-about-member--nine {
  left: 79%;
  top: 796px;
}

body.aam-about-body .aam-about-member--ten {
  left: 15%;
  top: 882px;
}

body.aam-about-body .aam-about-member--eleven {
  left: 52%;
  top: 950px;
}

body.aam-about-body.aam-team-detail-open {
  overflow: hidden;
}

body.aam-about-body .aam-team-detail {
  position: fixed;
  inset: 0;
  z-index: 3000;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.78);
  color: var(--aam-white);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.aam-about-body .aam-team-detail.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.aam-about-body .aam-team-detail__bg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  max-width: 80vw;
  max-height: 80vh;
  transform: translate(-50%, -50%);
  object-fit: cover;
  border-radius: 28px;
  pointer-events: none;
}

body.aam-about-body .aam-team-detail__close {
  position: absolute;
  top: calc(10vh + 20px);
  right: calc(10vw + 24px);
  z-index: 4;
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

body.aam-about-body .aam-team-detail__close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.aam-about-body .aam-team-detail__viewport {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 40%) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  width: 80vw;
  height: 80vh;
  margin: 10vh auto;
  overflow: hidden;
  padding: clamp(30px, 4vw, 56px);
}

body.aam-about-body .aam-team-detail__media {
  position: sticky;
  top: clamp(30px, 4vw, 56px);
  display: flex;
  width: 100%;
  height: calc(80vh - clamp(60px, 8vw, 112px));
  max-height: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  align-self: start;
}

body.aam-about-body .aam-team-detail__media img {
  display: block;
  width: min(807px, 139%);
  max-width: auto;
  height: 100%;
  object-fit: contain;
  object-position: top;
}

body.aam-about-body .aam-team-detail__content {
  display: flex;
  min-width: 0;
  height: calc(80vh - clamp(60px, 8vw, 112px));
  flex-direction: column;
  gap: 24px;
  overflow: hidden auto;
  padding: 0 8px 42px 0;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

body.aam-about-body .aam-team-detail__content::-webkit-scrollbar {
  display: none;
}

body.aam-about-body .aam-team-detail__content::-webkit-scrollbar-thumb {
  background: transparent;
}

body.aam-about-body .aam-team-detail__header {
  display: flex;
  width: min(720px, 100%);
  flex-direction: column;
  gap: 8px;
  letter-spacing: 0.5px;
}

body.aam-about-body .aam-team-detail__header h2 {
  margin: 0;
  color: var(--aam-white);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

body.aam-about-body .aam-team-detail__header p {
  margin: 0;
  color: var(--aam-hot-red);
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.5px;
}

body.aam-about-body .aam-team-detail__quote {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
}

body.aam-about-body .aam-team-detail__avatar {
  display: block;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

body.aam-about-body .aam-team-detail__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.aam-about-body .aam-team-detail__quote strong,
body.aam-about-body .aam-team-detail__quote em {
  display: block;
}

body.aam-about-body .aam-team-detail__quote strong {
  color: var(--aam-white);
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.5px;
}

body.aam-about-body .aam-team-detail__quote em {
  max-width: 100%;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.3px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.aam-about-body .aam-team-detail__bio {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.3px;
}

body.aam-about-body .aam-team-detail__bio p {
  margin: 0;
}

/* Subscription Services page */
body.aam-services-body {
  margin: 0;
  overflow-x: hidden;
  background: #12081c;
  color: var(--aam-white);
  font-family: "Instrument Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.aam-services-body .aam-services-page {
  position: relative;
  overflow: hidden;
  background: #12081c;
}

body.aam-services-body .aam-services-page__bg {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  min-height: 1580px;
  object-fit: cover;
  pointer-events: none;
}

body.aam-services-body .aam-services-page > :not(.aam-services-page__bg) {
  position: relative;
  z-index: 1;
}

body.aam-services-body .aam-services-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-right: 70px;
  padding-left: 70px;
}

body.aam-services-body .aam-services-hero {
  position: relative;
  min-height: 500px;
  padding: 132px 0 70px;
  /*background: #12081c;*/
}
.aam-services-hero__copy .aam-eyebrow{
  margin-bottom: 0px;
}

body.aam-services-body .aam-services-hero__inner {
  display: flex;
  align-items: center;
}

body.aam-services-body .aam-services-hero__copy {
  display: flex;
  max-width: 1100px;
  flex-direction: column;
  gap: 20px;
}

body.aam-services-body .aam-services-eyebrow {
  display: flex;
  min-height: 24px;
  align-items: center;
  gap: 12px;
  color: #e31e26;
}

body.aam-services-body .aam-services-eyebrow span {
  display: inline-block;
  color: #e31e26;
  font-size: 26px;
  font-weight: 700;
  line-height: 0.8;
  transform: skewX(-10deg);
}

body.aam-services-body .aam-services-eyebrow p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 10px;
  text-transform: uppercase;
}

body.aam-services-body .aam-services-hero h1 {
  max-width: 800px;
  margin: 0;
  color: var(--aam-white);
  font-size: 52px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.5px;
}

body.aam-services-body .aam-services-hero h1 span {
  color: transparent;
  background: linear-gradient(131deg, #f51735 9.44%, rgba(234, 21, 89, 0.7) 95.12%);
  background-clip: text;
  -webkit-background-clip: text;
}

body.aam-services-body .aam-services-hero__copy > p {
  max-width: 1100px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.3px;
}

body.aam-services-body .aam-services-main {
  position: relative;
  overflow: hidden;
  padding: 0 0 100px;
  /*background: #12081c;*/
}

body.aam-services-body .aam-services-packages {
  display: flex;
  /*max-width: 1200px;*/
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
}

body.aam-services-body .aam-services-package {
  position: relative;
  overflow: hidden;
  /*min-height: 564px;*/
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.045)),
    url("assets/ser_bg.png") center / cover no-repeat;
  box-shadow: 0 2px 20px rgba(18, 8, 28, 0.06);
}

body.aam-services-body .aam-services-package::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 16% 72%, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  pointer-events: none;
}

body.aam-services-body .aam-services-package--single .aam-services-package__bar {
  background: linear-gradient(163deg, rgba(178, 98, 55, 0.7) 9.44%, rgba(178, 98, 55, 0.35) 92.36%);
}

body.aam-services-body .aam-services-package--growth {
  min-height: auto;
}

body.aam-services-body .aam-services-package--growth .aam-services-package__bar {
  background: linear-gradient(163deg, rgba(63, 126, 251, 0.7) 9.44%, rgba(63, 126, 251, 0.35) 92.36%);
}

body.aam-services-body .aam-services-package--embedded {
  min-height: auto;
}

body.aam-services-body .aam-services-package--embedded .aam-services-package__bar {
  background: linear-gradient(163deg, rgba(17, 165, 108, 0.6) 9.44%, rgba(17, 165, 108, 0.3) 92.36%);
}

body.aam-services-body .aam-services-package__bar {
  position: relative;
  z-index: 1;
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 8px 8px 0;
  padding: 8px 10px;
  border-radius: 22px 22px 0 0;
  backdrop-filter: blur(17px);
}

body.aam-services-body .aam-services-package__bar span {
  width: min(250px, 28%);
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
}

body.aam-services-body .aam-services-package__bar span:first-child {
  transform: rotate(180deg);
}

body.aam-services-body .aam-services-package__bar strong {
  color: var(--aam-white);
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

body.aam-services-body .aam-services-package__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 550px minmax(0, 1fr);
  gap: 20px;
  min-height: 400px;
  padding: 28px;
}

body.aam-services-body .aam-services-package__intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 550px;
  min-height: 100%;
  padding-top: 0;
}

body.aam-services-body .aam-services-package__intro-main {
  display: flex;
  max-width: 450px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

body.aam-services-body .aam-services-package__intro-main > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.aam-services-body .aam-services-price {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}

body.aam-services-body .aam-services-price div {
  display: flex;
  align-items: center;
  gap: 8px;
}

body.aam-services-body .aam-services-price img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

body.aam-services-body .aam-services-price p,
body.aam-services-body .aam-services-package__intro-main > div > p {
  margin: 0;
  color: var(--aam-white);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
}
body.aam-services-body .aam-services-package__intro-main > div > p{
  opacity: 0.7;
}

body.aam-services-body .aam-services-price strong {
  color: var(--aam-white);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0.4px;
}

body.aam-services-body .aam-services-price strong span {
  font-size: 18px;
  font-weight: 400;
}

body.aam-services-body .aam-services-package__intro-main > div > p {
  max-width: 450px;
  font-size: 14px;
  line-height: 23px;
}

body.aam-services-body .aam-services-package__included {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 12px;
}

body.aam-services-body .aam-services-package__included > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

body.aam-services-body .aam-services-package__included ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.aam-services-body .aam-services-package__included li {
  position: relative;
  min-height: 24px;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.3px;
}

body.aam-services-body .aam-services-package__included li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 22px;
  height: 22px;
  /*border: 1.5px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;*/
  /*background:
    linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.86) 49% 58%, transparent 59%) 45% 56% / 9px 9px no-repeat;*/
  opacity: 0.8;
  background-image: url(assets/ic_tick.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

body.aam-services-body .aam-services-package__contract {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.3px;
}

body.aam-services-body .aam-services-package__contract img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  object-fit: contain;
}

body.aam-services-body .aam-services-package__cta {
  display: inline-flex;
  padding: 0px 20px;
  height: 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #f51735;
  border-radius: 12px;
  background: linear-gradient(115deg, #f51735 9.44%, rgba(234, 21, 89, 0.6) 92.36%);
  color: var(--aam-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.3px;
  text-decoration: none;
  text-transform: uppercase;
}

body.aam-services-body .aam-services-addons {
  max-width: 1300px;
  margin: 100px auto 0;
}

body.aam-services-body .aam-services-addons > p {
  max-width: 1074px;
  margin: 28px 0 40px;
  color: var(--aam-white);
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.3px;
}

body.aam-services-body .aam-services-table {
  width: min(1000px, 100%);
  margin: 0 auto;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(36 29 45);
  color: rgba(255, 255, 255, 0.9);
}

body.aam-services-body .aam-services-table > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 4px;
  min-height: 64px;
  border-bottom: 1px solid #332b3e;
}

body.aam-services-body .aam-services-table span,
body.aam-services-body .aam-services-table strong {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 0 20px;
  border-radius: 14px 14px 0px 0px;
  /*background: rgba(255, 255, 255, 0.025);*/
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.3px;
}
/*body.aam-services-body .aam-services-table span{
  background: transparent;
}*/

body.aam-services-body .aam-services-table strong {
  justify-content: center;
  text-align: center;
}

body.aam-services-body .aam-services-table__head span {
  min-height: 56px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--aam-white);
  opacity: 0.7;
}

body.aam-services-body .aam-services-table__head span:last-child {
  justify-content: center;
  text-align: center;
}
.aam-services-hero__copy .aam-eyebrow{
  margin-bottom: 0px;
} 
@media (max-width: 980px) {
  body.aam-services-body .aam-services-container {
    padding-right: 32px;
    padding-left: 32px;
  }

  body.aam-services-body .aam-services-hero {
    min-height: auto;
    padding: 140px 0 62px;
  }

  body.aam-services-body .aam-services-hero h1 {
    font-size: 44px;
    line-height: 50px;
  }

  body.aam-services-body .aam-services-main {
    padding-bottom: 82px;
  }

  body.aam-services-body .aam-services-package,
  body.aam-services-body .aam-services-package--growth,
  body.aam-services-body .aam-services-package--embedded {
    min-height: 0;
  }

  body.aam-services-body .aam-services-package__body {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: 0;
    padding: 34px 24px 28px;
  }

  body.aam-services-body .aam-services-package__intro {
    width: 100%;
    max-width: none;
    gap: 30px;
    padding-top: 0;
  }

  body.aam-services-body .aam-services-package__intro-main,
  body.aam-services-body .aam-services-package__intro-main > div > p {
    max-width: 640px;
  }

  body.aam-services-body .aam-services-table > div {
    grid-template-columns: minmax(0, 1fr) minmax(150px, 240px);
  }
}

@media (max-width: 767px) {
  body.aam-services-body {
    --aam-header-x: 16px;
    --aam-header-pad: 16px;
  }

  body.aam-services-body .aam-header {
    padding: 14px 16px;
  }

  body.aam-services-body .aam-header__inner {
    justify-content: flex-start;
    gap: 16px;
  }

  body.aam-services-body .aam-header__nav {
    display: none;
  }

  body.aam-services-body .aam-header__logo img {
    width: 76px;
  }

  body.aam-services-body .aam-header__cta {
    width: 44px;
    min-width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    justify-content: center;
  }

  body.aam-services-body .aam-header__cta span:last-child {
    display: none;
  }

  body.aam-services-body .aam-menu-toggle {
    /*display: inline-flex;*/
  }

  body.aam-services-body .aam-mobile-menu {
    display: block;
  }

  body.aam-services-body .aam-services-container {
    padding-right: 16px;
    padding-left: 16px;
  }

  body.aam-services-body .aam-services-hero {
    padding: 116px 0 50px;
  }

  body.aam-services-body .aam-services-hero__copy {
    gap: 16px;
  }
  body.aam-what-body .aam-what-hero__grid {
    gap: 16px;
  }
  body.aam-services-body .aam-services-eyebrow {
    gap: 8px;
  }

  body.aam-services-body .aam-services-eyebrow p {
    font-size: 11px;
    letter-spacing: 4px;
  }

  body.aam-services-body .aam-services-eyebrow span {
    font-size: 22px;
  }

  body.aam-services-body .aam-services-hero h1 {
    font-size: 34px;
    line-height: 38px;
  }

  body.aam-services-body .aam-services-hero__copy > p {
    font-size: 14px;
    line-height: 22px;
  }

  body.aam-services-body .aam-services-main {
    padding-bottom: 72px;
  }

  body.aam-services-body .aam-services-packages {
    gap: 24px;
  }

  body.aam-services-body .aam-services-package {
    border-radius: 20px;
  }

  body.aam-services-body .aam-services-package__bar {
    height: 44px;
    gap: 12px;
    margin: 6px 6px 0;
    border-radius: 16px 16px 0 0;
  }

  body.aam-services-body .aam-services-package__bar span {
    width: 22%;
  }

  body.aam-services-body .aam-services-package__bar strong {
    font-size: 14px;
    line-height: 20px;
  }

  body.aam-services-body .aam-services-package__body {
    gap: 24px;
    padding: 28px 16px 20px;
  }

  body.aam-services-body .aam-services-price strong {
    font-size: 34px;
  }

  body.aam-services-body .aam-services-price strong span,
  body.aam-services-body .aam-services-price p,
  body.aam-services-body .aam-services-package__included li,
  body.aam-services-body .aam-services-package__contract {
    font-size: 14px;
    line-height: 22px;
  }

  body.aam-services-body .aam-services-package__included > p {
    font-size: 12px;
    line-height: 20px;
  }

  body.aam-services-body .aam-services-package__included ul {
    gap: 10px;
  }

  body.aam-services-body .aam-services-package__included li {
    padding-left: 26px;
  }

  body.aam-services-body .aam-services-package__included li::before {
    top: 1px;
  }

  body.aam-services-body .aam-services-package__cta {
    width: 100%;
    height: 46px;
    font-size: 14px;
  }

  body.aam-services-body .aam-services-addons {
    margin-top: 70px;
  }

  body.aam-services-body .aam-services-addons > p {
    margin: 20px 0 28px;
    font-size: 14px;
    line-height: 22px;
  }

  body.aam-services-body .aam-services-table {
    overflow: hidden;
  }

  body.aam-services-body .aam-services-table > div {
    grid-template-columns: minmax(0, 1fr) 116px;
    min-height: 58px;
  }

  body.aam-services-body .aam-services-table span,
  body.aam-services-body .aam-services-table strong {
    padding: 0 12px;
    font-size: 13px;
    line-height: 17px;
  }
}

body.aam-about-body .aam-about-testimonials__inner {
  position: relative;
  z-index: 1;
  padding-top: 96px;
  padding-bottom: 110px;
}

body.aam-about-body .aam-about-testimonials__header {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 620px);
  gap: 54px;
  align-items: start;
  margin-bottom: 32px;
}

body.aam-about-body .aam-about-testimonials__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.72fr);
  gap: 32px;
  align-items: flex-start;
  padding-bottom: 80px;
}

body.aam-about-body .aam-about-video-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  isolation: isolate;
}

body.aam-about-body .aam-about-video-card__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.aam-about-body .aam-about-video-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

body.aam-about-body .aam-about-video-card__top p {
  margin: 0;
  color: var(--aam-white);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

body.aam-about-body .aam-about-video-card__top img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

body.aam-about-body .aam-about-video-card__mute {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

body.aam-about-body .aam-about-video-card__mute img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.6;
}

body.aam-about-body .aam-about-video-card__frame {
  height: 210px;
  overflow: hidden;
  border-radius: 18px;
  background: #12081c;
}

body.aam-about-body .aam-about-video-card__frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body.aam-about-body .aam-about-slider {
  position: static;
  min-width: 0;
  overflow: visible;
}

body.aam-about-body .aam-about-slider__viewport {
  overflow: visible;
  width: calc(100% + min(180px, 12vw));
  clip-path: inset(0 max(-180px, -12vw) 0 0);
}

body.aam-about-body .aam-about-slider__track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

body.aam-about-body .aam-about-quote-card {
  width: min(640px, 58vw);
  min-height: 390px;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 20px;
  border-radius: 32px 32px 32px 0;
  background: rgb(49 41 57);
  backdrop-filter: blur(25px);
}

body.aam-about-body .aam-about-quote-card__headline {
  margin: 0;
  color: var(--aam-white);
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.5px;
}

body.aam-about-body .aam-about-quote-card__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.3px;
}

body.aam-about-body p.aam-about-quote-card__copy{
  padding-top:20px;
}

body.aam-about-body .aam-about-quote-card__profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

body.aam-about-body .aam-about-quote-card__profile img,
body.aam-about-body .aam-about-quote-card__profile > span {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

body.aam-about-body .aam-about-quote-card__profile > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(227, 30, 38, 0.55), rgba(37, 110, 255, 0.45));
  color: var(--aam-white);
  font-size: 13px;
  font-weight: 600;
}

body.aam-about-body .aam-about-quote-card__profile strong,
body.aam-about-body .aam-about-quote-card__profile span {
  display: block;
}

body.aam-about-body .aam-about-quote-card__profile strong {
  color: var(--aam-white);
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.5px;
}

body.aam-about-body .aam-about-quote-card__profile div span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-style: italic;
  line-height: 20px;
  letter-spacing: 0.2px;
}

body.aam-about-body .aam-about-slider__nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  margin-top: 0;
  padding-left: 0;
}

body.aam-about-body .aam-about-slider__nav button {
  width: 68px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 23, 53, 0.88);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

/*body.aam-about-body .aam-about-slider__nav button:last-child img {
  transform: rotate(180deg);
}*/

body.aam-about-body .aam-about-slider__nav img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

@media (max-width: 980px) {
  body.aam-about-body .aam-about-container {
    padding-right: 32px;
    padding-left: 32px;
  }

  body.aam-about-body .aam-about-hero__inner,
  body.aam-about-body .aam-about-testimonials__layout {
    grid-template-columns: 1fr;
  }

  body.aam-about-body .aam-about-team__heading,
  body.aam-about-body .aam-about-testimonials__header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  body.aam-about-body .aam-about-team__stage {
    min-height: 760px;
  }

  body.aam-about-body .aam-about-member--two {
    left: auto;
    right: 8%;
  }

  body.aam-about-body .aam-team-detail__viewport {
    grid-template-columns: minmax(300px, 42vw) minmax(0, 1fr);
    gap: 30px;
    padding: 56px 48px 44px 32px;
  }

  body.aam-about-body .aam-team-detail__media {
    width: 100%;
    height: 72vh;
  }

  body.aam-about-body .aam-team-detail__media img {
    width: min(650px, 148%);
  }

  body.aam-about-body .aam-team-detail__header h2 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  body.aam-about-body {
    --aam-header-x: 16px;
    --aam-header-pad: 16px;
  }

  body.aam-about-body .aam-header {
    padding: 14px 16px;
  }

  body.aam-about-body .aam-header__inner {
    justify-content: flex-start;
    gap: 16px;
  }

  body.aam-about-body .aam-header__nav {
    display: none;
  }

  body.aam-about-body .aam-header__logo img {
    width: 76px;
  }

  body.aam-about-body .aam-header__cta {
    width: 44px;
    min-width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    justify-content: center;
  }

  body.aam-about-body .aam-header__cta span:last-child {
    display: none;
  }

  body.aam-about-body .aam-menu-toggle {
    /*display: inline-flex;*/
  }

  body.aam-about-body .aam-mobile-menu {
    display: block;
  }

  body.aam-about-body .aam-about-container {
    padding-right: 16px;
    padding-left: 16px;
  }

  body.aam-about-body .aam-about-hero {
    min-height: auto;
    padding: 116px 0 60px;
  }

  body.aam-about-body .aam-about-hero__inner {
    gap: 26px;
  }

  body.aam-about-body .aam-about-hero__copy h1 {
    font-size: 34px;
    line-height: 38px;
    letter-spacing: 0.42px;
  }

  body.aam-about-body .aam-about-hero__media img {
    aspect-ratio: 1.42;
  }

  body.aam-about-body .aam-about-hero__text p {
    font-size: 14px;
    line-height: 23px;
  }

  body.aam-about-body .aam-about-highlighter {
    min-height: 100vh;
  }

  body.aam-about-body .aam-about-highlighter__pin {
    height: 100vh;
    min-height: 620px;
  }

  body.aam-about-body .aam-about-highlighter h2 {
    font-size: 54px;
  }

  body.aam-about-body .aam-about-highlighter__track,
  body.aam-about-body .aam-about-highlighter__pin::before {
    top: calc(25% + 28px);
  }

  body.aam-about-body .aam-about-highlighter__pin p {
    margin-top: 34px;
    font-size: 14px;
    line-height: 22px;
  }

  body.aam-about-body .aam-about-team__inner {
    min-height: 900px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  body.aam-about-body .aam-about-team__heading h2,
  body.aam-about-body .aam-about-testimonials__header h2 {
    font-size: 22px;
    line-height: 28px;
  }

  body.aam-about-body .aam-about-team__stage {
    height: calc(100vh - 190px);
    min-height: 680px;
    margin-top: 32px;
  }

  body.aam-about-body .aam-about-team__watermark {
    font-size: 102px;
  }

  body.aam-about-body .aam-about-member {
    width: 163px;
    height: 237px;
  }

  body.aam-about-body .aam-about-member--one {
    left: 2%;
    top: 54px;
  }

  body.aam-about-body .aam-about-member--two {
    right: 0;
    top: 16px;
  }

  body.aam-about-body .aam-about-member--three {
    left: 31%;
    top: 250px;
  }

  body.aam-about-body .aam-about-member--four {
    right: 0;
    top: 445px;
  }

  body.aam-about-body .aam-about-member--five {
    left: 0;
    top: 430px;
  }

  body.aam-about-body .aam-about-member--six {
    left: 42%;
    top: 570px;
  }

  body.aam-about-body .aam-about-member--seven {
    left: 2%;
    top: 650px;
  }

  body.aam-about-body .aam-about-member--eight {
    right: 0;
    left: auto;
    top: 700px;
  }

  body.aam-about-body .aam-about-member--nine {
    left: 32%;
    top: 815px;
  }

  body.aam-about-body .aam-about-member--ten {
    left: 0;
    top: 910px;
  }

  body.aam-about-body .aam-about-member--eleven {
    right: 0;
    left: auto;
    top: 985px;
  }

  body.aam-about-body .aam-team-detail {
    overflow: hidden auto;
  }

  body.aam-about-body .aam-team-detail__close {
    top: calc(4vh + 14px);
    right: calc(4vw + 14px);
    width: 32px;
    height: 32px;
  }

  body.aam-about-body .aam-team-detail__bg {
    width: 92vw;
    height: 92vh;
    max-width: 92vw;
    max-height: 92vh;
    border-radius: 22px;
  }

  body.aam-about-body .aam-team-detail__viewport {
    display: flex;
    width: 92vw;
    min-height: 92vh;
    height: auto;
    flex-direction: column;
    gap: 40px;
    margin: 4vh auto;
    overflow: visible;
    padding: 24px 16px 44px;
  }

  body.aam-about-body .aam-team-detail__media {
    position: relative;
    top: auto;
    width: 80%;
    height: auto;
    max-height: none;
    margin:0 auto;
    margin-top: 8px;
  }

  body.aam-about-body .aam-team-detail__media img {
    width: min(378px, 112vw);
  }

  body.aam-about-body .aam-team-detail__content {
    height: auto;
    overflow: visible;
    gap: 24px;
    padding: 0;
  }

  body.aam-about-body .aam-team-detail__header h2 {
    font-size: 28px;
    line-height: 34px;
  }

  body.aam-about-body .aam-team-detail__header p {
    font-size: 16px;
    line-height: 24px;
  }

  body.aam-about-body .aam-team-detail__quote strong,
  body.aam-about-body .aam-team-detail__quote em,
  body.aam-about-body .aam-team-detail__bio {
    font-size: 16px;
  }

  body.aam-about-body .aam-team-detail__quote em {
    white-space: normal;
  }

  body.aam-about-body .aam-about-testimonials__inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  body.aam-about-body .aam-about-testimonials__header {
    margin-bottom: 24px;
  }

  body.aam-about-body .aam-about-testimonials__layout {
    padding-bottom: 74px;
  }

  body.aam-about-body .aam-about-video-card {
    min-height: 260px;
    padding: 16px;
    border-radius: 20px;
  }

  body.aam-about-body .aam-about-video-card__frame {
    height: 184px;
    border-radius: 16px;
  }

  body.aam-about-body .aam-about-quote-card {
    width: calc(100vw - 32px);
    min-height: 330px;
    padding: 18px 16px;
    border-radius: 22px 22px 22px 0;
  }

  body.aam-about-body .aam-about-quote-card__headline {
    font-size: 18px;
    line-height: 25px;
  }

  body.aam-about-body .aam-about-quote-card__copy {
    font-size: 16px;
    line-height: 24px;
  }

  body.aam-about-body .aam-about-slider__nav {
    right: 0;
    bottom: 0;
    left: 0;
    margin-top: 26px;
    padding-left: 0;
    justify-content: center;
  }
}
/* End About page styles */

/* What We Do page styles */
body.aam-what-body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: #ffffff;
  background: #12081c;
  font-family: "Instrument Sans", Arial, sans-serif;
  --aam-what-pad: 70px;
  --aam-what-max: 1440px;
}

body.aam-what-body .aam-header__nav a[href="what-we-do.html"] {
  color: #e31e26;
}

body.aam-what-body .aam-header__nav a[href="what-we-do.html"]::after {
  transform: scaleX(1);
}

body.aam-what-body .aam-what-container {
  width: min(100%, var(--aam-what-max));
  margin: 0 auto;
  padding-right: var(--aam-what-pad);
  padding-left: var(--aam-what-pad);
}

body.aam-what-body .aam-what-hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: #12081c;
}

body.aam-what-body .aam-what-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 1;
  pointer-events: none;
}

body.aam-what-body .aam-what-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 8, 28, 0.2), rgba(18, 8, 28, 0.46));
  pointer-events: none;
}

body.aam-what-body .aam-what-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 500px;
  padding-top: 132px;
  padding-bottom: 38px;
}
.aam-what-hero__grid .aam-eyebrow{
  margin-bottom: 0px;
}

/*body.aam-what-body .aam-what-hero .aam-eyebrow {
  margin-bottom: 42px;
}*/

body.aam-what-body .aam-what-hero__grid {
  /*display: grid;
  grid-template-columns: minmax(0, 800px) minmax(280px, 468px);
  gap: clamp(42px, 6.95vw, 100px);
  align-items: end;*/
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

body.aam-what-body .aam-what-hero h1 {
  max-width: 800px;
  margin: 0;
  color: #ffffff;
  font-size: 56px;
  font-weight: 500;
  line-height: 58px;
  letter-spacing: 0.42px;
}
body.aam-what-body .aam-what-hero h1 span{
  color: transparent;
  background: linear-gradient(131deg, #f51735 9.44%, rgba(234, 21, 89, 0.7) 95.12%);
  background-clip: text;
  -webkit-background-clip: text;
}
body.aam-what-body .aam-what-hero__copy {
  display: grid;
  gap: 17px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.28px;
  width: 100%;
  max-width: 1080px;
  margin: 0;
}

body.aam-what-body .aam-what-hero__copy p {
  margin: 0;
}

body.aam-what-body .aam-what-services {
  position: relative;
  min-height: 100vh;
  background: #12081c;
}

body.aam-what-body .aam-what-services__pin {
  position: relative;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
  background: #12081c;
}

body.aam-what-body .aam-what-services__cards {
  position: relative;
  width: 100%;
  height: 100%;
}

body.aam-what-body .aam-service-panel {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  min-height: 610px;
  color: #ffffff;
  border-radius: 0;
  transform: translate3d(0, -50%, 0);
  will-change: transform;
  overflow: hidden;
  backface-visibility: hidden;
  box-shadow: 0 42px 92px rgba(0, 0, 0, 0.22);
}

body.aam-what-body .aam-service-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.9;
  pointer-events: none;
}

body.aam-what-body .aam-service-panel--dark {
  background:
    radial-gradient(circle at 80% 10%, rgba(38, 95, 255, 0.18), transparent 38%),
    #12081c;
}

body.aam-what-body .aam-service-panel--red {
  background:
    radial-gradient(circle at 47% -12%, rgba(255, 255, 255, 0.26), transparent 20%),
    linear-gradient(115deg, #f91935 0%, #e31e26 38%, #a70c48 100%);
}

body.aam-what-body .aam-service-panel--light {
  color: #2b2436;
  background:
    radial-gradient(circle at 54% -10%, rgba(255, 255, 255, 0.9), transparent 24%),
    linear-gradient(105deg, #f7f7f8 0%, #dedee0 100%);
}

body.aam-what-body .aam-service-panel--blue {
  background:
    radial-gradient(circle at 58% 5%, rgba(255, 255, 255, 0.18), transparent 25%),
    linear-gradient(120deg, #2f85ff 0%, #2867e4 55%, #1552c7 100%);
}

body.aam-what-body .aam-service-panel__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 626px) minmax(0, 626px);
  gap: 48px;
  align-items: start;
  width: min(100%, var(--aam-what-max));
  min-height: 610px;
  margin: 0 auto;
  padding: 70px var(--aam-what-pad);
}

body.aam-what-body .aam-service-panel__media {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.22);
}

body.aam-what-body .aam-service-panel__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body.aam-what-body .aam-service-panel__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 380px;
  padding-top: 2px;
}

body.aam-what-body .aam-service-panel__heading {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  margin-bottom: 24px;
}

body.aam-what-body .aam-service-panel__heading img {
  width: 54px;
  height: 54px;
  object-fit: cover;
}

body.aam-what-body .aam-service-panel h2 {
  margin: 4px 0 0;
  max-width: 540px;
  font-size: 28px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: 0.2px;
}

body.aam-what-body .aam-service-panel p {
  max-width: 570px;
  margin: 0 0 28px 80px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

body.aam-what-body .aam-service-panel--light p,
body.aam-what-body .aam-service-panel--light .aam-service-panel__includes li {
  color: rgba(43, 36, 54, 0.72);
}

body.aam-what-body .aam-service-panel__includes {
  display: block;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 30px;
  margin-left: 80px;
  align-items: start;
}

body.aam-what-body .aam-service-panel__includes h3 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.5px;
  padding-bottom: 8px;
  text-transform: uppercase;
  opacity: .6;
}

body.aam-what-body .aam-service-panel__includes ul {
  display: block;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.aam-what-body .aam-service-panel__includes li {
  position: relative;
  min-height: 24px;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  padding-top: 12px;
}

body.aam-what-body .aam-service-panel__includes li::before {
  content: "";
  position: absolute;
  /*top: 0;*/
  bottom:0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 0;
  background: url("assets/ic_line_lightgrey.svg") center / contain no-repeat;
}

body.aam-what-body .aam-service-panel--red .aam-service-panel__includes li::before,
body.aam-what-body .aam-service-panel--blue .aam-service-panel__includes li::before {
  background-image: url("assets/ic_line_lightgrey.svg");
}

body.aam-what-body .aam-service-panel--light .aam-service-panel__includes li::before {
  background-image: url("assets/ic_line_darkgrey.svg");
}

@media (max-width: 1199px) {
  body.aam-what-body {
    --aam-what-pad: 40px;
  }

  body.aam-what-body .aam-what-hero__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  body.aam-what-body .aam-what-hero h1 {
    max-width: 760px;
    font-size: 54px;
    line-height: 60px;
  }

  body.aam-what-body .aam-what-hero__copy {
    max-width: 720px;
  }

  body.aam-what-body .aam-service-panel__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 34px;
  }

  body.aam-what-body .aam-service-panel h2 {
    font-size: 32px;
    line-height: 38px;
  }

  body.aam-what-body .aam-service-panel__includes {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 767px) {
  body.aam-what-body {
    --aam-what-pad: 16px;
  }

  body.aam-what-body .aam-header {
    padding: 14px 16px;
  }

  body.aam-what-body .aam-header__inner {
    justify-content: flex-start;
    gap: 16px;
  }

  body.aam-what-body .aam-header__nav {
    display: none;
  }

  body.aam-what-body .aam-header__logo img {
    width: 76px;
  }

  body.aam-what-body .aam-header__cta {
    width: 44px;
    min-width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    justify-content: center;
  }

  body.aam-what-body .aam-header__cta span:last-child {
    display: none;
  }

  body.aam-what-body .aam-menu-toggle {
    /*display: inline-flex;*/
  }

  body.aam-what-body .aam-mobile-menu {
    display: block;
  }

  body.aam-what-body .aam-what-hero {
    min-height: auto;
  }

  body.aam-what-body .aam-what-hero__inner {
    min-height: auto;
    padding-top: 116px;
    padding-bottom: 56px;
  }

  body.aam-what-body .aam-what-hero .aam-eyebrow {
    margin-bottom: 0px;
  }

  body.aam-what-body .aam-what-hero h1 {
    font-size: 36px;
    line-height: 41px;
    letter-spacing: 0.1px;
  }

  body.aam-what-body .aam-what-hero__copy {
    gap: 16px;
    font-size: 14px;
    line-height: 22px;
  }

  body.aam-what-body .aam-what-services,
  body.aam-what-body .aam-what-services__pin,
  body.aam-what-body .aam-what-services__cards {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  body.aam-what-body .aam-what-services {
    background: #12081c;
  }

  body.aam-what-body .aam-service-panel {
    position: relative;
    top: auto;
    min-height: 0;
    transform: none;
    box-shadow: none;
  }

  body.aam-what-body .aam-service-panel__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    padding-top: 36px;
    padding-bottom: 42px;
  }

  body.aam-what-body .aam-service-panel__media {
    order: 2;
    height: auto;
    aspect-ratio: 1.28;
    border-radius: 16px;
  }

  body.aam-what-body .aam-service-panel__content {
    order: 1;
    min-height: 0;
  }

  body.aam-what-body .aam-service-panel__heading {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 14px;
  }

  body.aam-what-body .aam-service-panel__heading img {
    width: 46px;
    height: 46px;
  }

  body.aam-what-body .aam-service-panel h2 {
    margin-top: 2px;
    font-size: 22px;
    line-height: 28px;
  }

  body.aam-what-body .aam-service-panel p {
    margin: 0 0 20px 58px;
    font-size: 14px;
    line-height: 22px;
  }

  body.aam-what-body .aam-service-panel__includes {
    margin-left: 58px;
  }

  body.aam-what-body .aam-service-panel__includes ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.aam-what-body .aam-service-panel__includes h3 {
    font-size: 14px;
    line-height: 20px;
  }

  body.aam-what-body .aam-service-panel__includes li {
    font-size: 13px;
    line-height: 20px;
  }
}

body.aam-what-body .aam-service-panel__inner {
  grid-template-rows: auto minmax(0, 1fr);
  row-gap: 28px;
}

body.aam-what-body .aam-service-panel__heading {
  grid-column: 1 / -1;
  width: 100%;
  margin-bottom: 0;
}

body.aam-what-body .aam-service-panel__media {
  grid-column: 1;
  grid-row: 2;
}

body.aam-what-body .aam-service-panel__content {
  grid-column: 2;
  grid-row: 2;
  padding-top: 0;
}

body.aam-what-body .aam-service-panel h2 {
  max-width: 920px;
}

body.aam-what-body .aam-service-panel p,
body.aam-what-body .aam-service-panel__includes {
  margin-left: 0;
}

@media (max-width: 1199px) {
  body.aam-what-body .aam-service-panel__inner {
    row-gap: 22px;
  }
}

@media (max-width: 767px) {
  body.aam-what-body .aam-service-panel__inner {
    grid-template-rows: none;
  }

  body.aam-what-body .aam-service-panel__heading,
  body.aam-what-body .aam-service-panel__media,
  body.aam-what-body .aam-service-panel__content {
    grid-column: auto;
    grid-row: auto;
  }

  body.aam-what-body .aam-service-panel__heading {
    order: 1;
  }

  body.aam-what-body .aam-service-panel__content {
    order: 2;
  }

  body.aam-what-body .aam-service-panel__media {
    order: 3;
  }

  body.aam-what-body .aam-service-panel p,
  body.aam-what-body .aam-service-panel__includes {
    margin-left: 58px;
  }
}


@media(max-width: 560px){
  .aam-eyebrow p{
    font-size: 13px;
  }
  .aam-case-study__header, .aam-how-work__heading, .aam-how-work__track, .aam-case-study__grid{
      padding: 0 16px;
    }
  .aam-case-study__grid{
    gap:24px;
  }
  .aam-service-card__main, .aam-service-card__term, 
  .aam-service-card__bottom, .aam-service-card--growth .aam-service-card__main,
  .aam-service-card--growth .aam-service-card__term{
    padding: 0 16px;
  }
  .aam-service-card__bottom, .aam-service-card--growth .aam-service-card__bottom{
    padding:16px 16px
  }
  .aam-testimonials__eyebrow{
    margin-top:0px;
  }
  .aam-testimonial-card__profile h3 {
    font-size: 16px;
  }
  .aam-testimonials__side, .aam-testimonials__wide, .aam-build__right{
    gap:20px;
  }
  .aam-eyebrow{
    align-items:start;
  }
  body.aam-what-body .aam-service-panel p, body.aam-what-body .aam-service-panel__includes{
    margin-left:0px;
  }
  body.aam-what-body .aam-service-panel h2 {
    margin-top: 2px;
    font-size: 20px;
    line-height: 24px;
  }
  body.aam-what-body .aam-service-panel__heading img {
      width: 36px;
      height: 36px;
  }
  body.aam-what-body .aam-service-panel__heading {
    gap:4px;
  }
  body.aam-about-body .aam-about-hero__copy h1{
    margin:16px 0 0;
  }
  body.aam-contact-body .aam-contact-hero{
    gap: 16px;  
  }
  body.aam-about-body .aam-about-highlighter h2 span{
    font-size: clamp(7.5rem, 18vw, 6rem);
  }
  body.aam-about-body .aam-team-detail__media img {
    width: 80%;
  }
  body.aam-about-body .aam-about-highlighter__pin p{
    margin-top:12px;
  }
  .aam-about-team__heading .aam-eyebrow, header.aam-about-testimonials__header .aam-eyebrow {
    margin-bottom:0px;
  }
  body.aam-about-body .aam-about-team__heading h2, body.aam-about-body .aam-about-testimonials__header h2{
    font-size: 1.625rem;
    line-height: 1.18;
    letter-spacing: 0.02rem;
  }
  body.aam-about-body .aam-about-quote-card__profile strong{
    font-size: 16px;
  }
}
/* End What We Do page styles */

/* Jobs page */
body.aam-jobs-body .aam-jobs-page {
  position: relative;
  overflow: hidden;
  background: var(--aam-bg);
  color: var(--aam-white);
}

body.aam-jobs-body .aam-jobs-page__bg {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  min-height: 1180px;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
}

body.aam-jobs-body .aam-jobs-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-right: 70px;
  padding-left: 70px;
}

body.aam-jobs-body .aam-jobs-hero {
  position: relative;
  padding-top: 132px;
  padding-bottom: 72px;
}

body.aam-jobs-body .aam-jobs-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

body.aam-jobs-body .aam-jobs-hero__copy {
  display: flex;
  width: 100%;
  max-width: 1100px;
  flex-direction: column;
  align-self: flex-start;
  gap: 20px;
}

body.aam-jobs-body .aam-jobs-hero__copy .aam-eyebrow p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 10px !important;
  line-height: 1;
}

body.aam-jobs-body .aam-jobs-hero__copy h1 {
  max-width: 820px;
  margin: 0;
  color: var(--aam-white);
  font-size: 52px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.5px;
}

body.aam-jobs-body .aam-jobs-hero__copy h1 span {
  color: var(--aam-hot-red);
}

body.aam-jobs-body .aam-jobs-hero__copy > p {
  max-width: 1100px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.3px;
}

body.aam-jobs-body .aam-jobs-search {
  display: flex;
  width: min(700px, 100%);
  min-height: 54px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--aam-hot-red);
  border-radius: 12px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(10, 4, 18, 0.18);
  backdrop-filter: blur(5px);
}

body.aam-jobs-body .aam-jobs-search__field {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
}

body.aam-jobs-body .aam-jobs-search__field span,
body.aam-jobs-body .aam-job-detail__header svg {
  display: inline-grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  color: rgba(18, 8, 28, 0.42);
}

body.aam-jobs-body .aam-jobs-search__field svg,
body.aam-jobs-body .aam-job-detail__header svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

body.aam-jobs-body .aam-jobs-search__field input {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(18, 8, 28, 0.85);
  font-size: 16px;
  line-height: 24px;
  outline: none;
}

body.aam-jobs-body .aam-jobs-search__field input::placeholder {
  color: rgba(18, 8, 28, 0.5);
}

body.aam-jobs-body .aam-jobs-search__divider {
  width: 1px;
  height: 24px;
  flex: 0 0 1px;
  background: rgba(18, 8, 28, 0.16);
}

body.aam-jobs-body .aam-jobs-search button {
  display: inline-flex;
  height: 43px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--aam-hot-red);
  border-radius: 9px;
  padding: 0 24px;
  background: linear-gradient(109deg, #f51735 9.44%, rgba(234, 21, 89, 0.78) 92.36%);
  color: var(--aam-white);
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  cursor: pointer;
}

body.aam-jobs-body .aam-jobs-count {
  width: 100%;
  margin: -10px 0 0;
  color: var(--aam-white);
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  letter-spacing: 0.3px;
}

body.aam-jobs-body .aam-jobs-listing {
  position: relative;
  padding-bottom: 100px;
}

body.aam-jobs-body .aam-jobs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

body.aam-jobs-body .aam-job-card {
  display: flex;
  min-height: 178px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 20px;
  padding: 20px 20px 22px;
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
  text-align: left;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform 0.45s var(--aam-ease), border-color 0.45s var(--aam-ease), background 0.45s var(--aam-ease), box-shadow 0.45s var(--aam-ease);
}

body.aam-jobs-body .aam-job-card:hover,
body.aam-jobs-body .aam-job-card:focus-visible {
  border-color: rgba(245, 23, 53, 0.62);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 54px rgba(10, 4, 18, 0.28);
  transform: translateY(-3px);
  outline: none;
}

body.aam-jobs-body .aam-job-card img {
  width: 44px;
  height: 38px;
  object-fit: contain;
  object-position: left center;
}

body.aam-jobs-body .aam-job-card strong {
  display: block;
  width: 100%;
  overflow: hidden;
  color: var(--aam-white);
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.75px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.aam-jobs-body .aam-job-card span {
  display: flex;
  max-width: 100%;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
}

body.aam-jobs-body .aam-job-card em {
  overflow: hidden;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0.3px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.aam-jobs-body .aam-job-card i {
  width: 1px;
  height: 18px;
  flex: 0 0 1px;
  background: rgba(255, 255, 255, 0.28);
}

body.aam-jobs-body .aam-job-card p {
  display: -webkit-box;
  min-height: 42px;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.3px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.aam-jobs-body .aam-job-card small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-style: italic;
  line-height: 21px;
  letter-spacing: 0.3px;
}

body.aam-jobs-body .aam-jobs-more {
  position: relative;
  left: 50%;
  display: inline-flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
  border: 1px solid rgba(245, 23, 53, 0.68);
  border-radius: 12px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--aam-white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transform: translateX(-50%);
  cursor: pointer;
  backdrop-filter: blur(15px);
}

body.aam-jobs-body .aam-jobs-more svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

body.aam-jobs-body.aam-job-detail-open {
  overflow: hidden;
}

body.aam-jobs-body .aam-job-detail {
  position: fixed;
  z-index: 140;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 40px;
  background: rgba(0, 0, 0, 0.56);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.36s var(--aam-ease);
}

body.aam-jobs-body .aam-job-detail.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.aam-jobs-body .aam-job-detail__panel {
  position: relative;
  display: flex;
  width: min(1320px, calc(100vw - 80px));
  height: min(840px, calc(100vh - 80px));
  flex-direction: column;
  overflow: hidden;
  background: #12081c;
  color: var(--aam-white);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  transform: translateY(18px) scale(0.985);
  transition: transform 0.42s var(--aam-ease);
}

body.aam-jobs-body .aam-job-detail.is-open .aam-job-detail__panel {
  transform: translateY(0) scale(1);
}

body.aam-jobs-body .aam-job-detail__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

body.aam-jobs-body .aam-job-detail__header {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 130px;
  align-items: flex-end;
  gap: 24px;
  padding: 30px 40px;
  background: rgba(255, 255, 255, 0.1);
}

body.aam-jobs-body .aam-job-detail__header > div {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 8px;
}

body.aam-jobs-body .aam-job-detail__header h2 {
  margin: 0;
  color: var(--aam-white);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 1.6px;
}

body.aam-jobs-body .aam-job-detail__header p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
}

body.aam-jobs-body .aam-job-detail__header p span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.3px;
}

body.aam-jobs-body .aam-job-detail__header p i {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.24);
}

body.aam-jobs-body .aam-job-detail__header svg {
  color: rgba(255, 255, 255, 0.72);
}

body.aam-jobs-body .aam-job-detail__header > em {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-style: italic;
  line-height: 21px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

body.aam-jobs-body .aam-job-detail__close {
  position: absolute;
  top: 20px;
  right: 30px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

body.aam-jobs-body .aam-job-detail__close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.aam-jobs-body .aam-job-detail__body {
  position: relative;
  z-index: 1;
  flex: 1;
  overflow-y: auto;
  padding: 28px 50px 150px;
  scrollbar-width: none;
}

body.aam-jobs-body .aam-job-detail__body::-webkit-scrollbar {
  display: none;
}

body.aam-jobs-body .aam-job-detail__intro {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

body.aam-jobs-body .aam-job-detail__intro p,
body.aam-jobs-body .aam-job-detail__columns p,
body.aam-jobs-body .aam-job-detail__columns li {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.3px;
}

body.aam-jobs-body .aam-job-detail__columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
}

body.aam-jobs-body .aam-job-detail__columns section {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 12px;
}

body.aam-jobs-body .aam-job-detail__columns section + section {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 20px;
}

body.aam-jobs-body .aam-job-detail__columns h3 {
  margin: 0;
  color: var(--aam-white);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.5px;
}

body.aam-jobs-body .aam-job-detail__columns ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.aam-jobs-body .aam-job-detail__columns li {
  position: relative;
  padding-left: 30px;
}

body.aam-jobs-body .aam-job-detail__columns li::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  content: "✓";
  font-size: 11px;
  line-height: 1;
}

body.aam-jobs-body .aam-job-detail__apply {
  position: absolute;
  z-index: 2;
  right: 50px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

body.aam-jobs-body .aam-job-detail__apply::before {
  position: fixed;
  right: 40px;
  bottom: 40px;
  left: 40px;
  height: 116px;
  background: linear-gradient(180deg, rgba(18, 8, 28, 0), rgba(18, 8, 28, 0.88));
  content: "";
  pointer-events: none;
}

body.aam-jobs-body .aam-job-detail__apply a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--aam-hot-red);
  border-radius: 12px;
  padding: 0 32px;
  background: linear-gradient(118deg, #f51735 9.44%, rgba(234, 21, 89, 0.7) 92.36%);
  color: var(--aam-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}



@media (max-width: 1250px) {
  body.aam-jobs-body .aam-jobs-container {
    padding-right: clamp(42px, 5vw, 64px);
    padding-left: clamp(42px, 5vw, 64px);
  }

  body.aam-jobs-body .aam-jobs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.aam-jobs-body .aam-job-detail__panel {
    width: min(1120px, calc(100vw - 56px));
  }
}

@media (max-width: 980px) {
  body.aam-jobs-body .aam-jobs-container {
    padding-right: 24px;
    padding-left: 24px;
  }

  body.aam-jobs-body .aam-jobs-hero {
    padding-top: 118px;
    padding-bottom: 54px;
  }

  body.aam-jobs-body .aam-jobs-hero__copy h1 {
    max-width: 680px;
    font-size: 42px;
  }

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

  body.aam-jobs-body .aam-job-detail {
    padding: 24px;
  }

  body.aam-jobs-body .aam-job-detail__panel {
    width: calc(100vw - 48px);
    height: calc(100vh - 48px);
  }

  body.aam-jobs-body .aam-job-detail__header {
    min-height: 126px;
    align-items: flex-start;
    flex-direction: column;
    padding: 30px 28px 24px;
  }

  body.aam-jobs-body .aam-job-detail__header h2 {
    font-size: 34px;
    letter-spacing: 0.8px;
  }

  body.aam-jobs-body .aam-job-detail__body {
    padding: 26px 28px 136px;
  }

  body.aam-jobs-body .aam-job-detail__columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  body.aam-jobs-body .aam-job-detail__columns section + section {
    border-left: 0;
    padding-left: 0;
  }

  body.aam-jobs-body .aam-job-detail__apply {
    right: 28px;
    bottom: 20px;
  }
}

@media (max-width: 560px) {
  body.aam-jobs-body .aam-jobs-container {
    padding-right: 16px;
    padding-left: 16px;
  }

  body.aam-jobs-body .aam-jobs-hero {
    padding-top: 104px;
    padding-bottom: 42px;
  }

  body.aam-jobs-body .aam-jobs-hero__inner {
    gap: 24px;
  }

  body.aam-jobs-body .aam-jobs-hero__copy .aam-eyebrow p {
    font-size: 12px;
    letter-spacing: 4px !important;
  }

  body.aam-jobs-body .aam-jobs-hero__copy h1 {
    font-size: 34px;
    line-height: 38px;
  }

  body.aam-jobs-body .aam-jobs-search {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px;
  }

  body.aam-jobs-body .aam-jobs-search__field {
    min-height: 42px;
  }

  body.aam-jobs-body .aam-jobs-search__divider {
    width: 100%;
    height: 1px;
  }

  body.aam-jobs-body .aam-jobs-search button {
    width: 100%;
  }

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

  body.aam-jobs-body .aam-jobs-listing {
    padding-bottom: 72px;
  }

  body.aam-jobs-body .aam-job-card {
    min-height: 168px;
  }

  body.aam-jobs-body .aam-job-detail {
    padding: 14px;
  }

  body.aam-jobs-body .aam-job-detail__panel {
    width: calc(100vw - 28px);
    height: calc(100vh - 28px);
  }

  body.aam-jobs-body .aam-job-detail__header {
    padding: 52px 18px 22px;
  }

  body.aam-jobs-body .aam-job-detail__header h2 {
    font-size: 28px;
  }

  body.aam-jobs-body .aam-job-detail__header p {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  body.aam-jobs-body .aam-job-detail__header p i {
    display: none;
  }

  body.aam-jobs-body .aam-job-detail__header > em {
    margin-top: 0;
  }

  body.aam-jobs-body .aam-job-detail__close {
    top: 16px;
    right: 16px;
  }

  body.aam-jobs-body .aam-job-detail__body {
    padding: 22px 18px 128px;
  }

  body.aam-jobs-body .aam-job-detail__apply {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  body.aam-jobs-body .aam-job-detail__apply a {
    width: 100%;
  }
}



