@font-face {
  font-family: "Syne";
  src: url("https://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/syne/v22/8vIH7w4qzmVxm2BL9G78HEY.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Questrial";
  src: url("https://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/questrial/v9/QdVUSTchPBm7nuUeVf70viFluW44JQ.woff2") format("woff2");
  font-display: swap;
}

:root {
  --blue: #0734b9;
  --deep-blue: #00339b;
  --pink: #ed88de;
  --magenta: #b12693;
  --lavender: #d8c2ff;
  --pale-blue: #dbe8ff;
  --off-white: #f6f5ff;
  --black: #000;
  --max-width: 980px;
  --button-min-width: 198px;
  --button-min-height: 65px;
  --button-padding: 14px 30px;
  --button-bg: transparent;
  --button-color: #0f0f13;
  --button-border: var(--pink);
  --button-hover-bg: var(--deep-blue);
  --button-hover-color: #fff;
  --button-hover-border: var(--deep-blue);
  --button-shadow: 0 10px 22px rgba(177, 38, 147, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: #0f0f13;
  background: #fff;
  font-family: "Questrial", Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 102px;
  padding: 0 40px;
  background: #fff;
  font-family: "Syne", Arial, sans-serif;
}

.wordmark {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-header nav {
  display: flex;
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
  font-size: 16px;
}

.site-header nav a {
  position: relative;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transition: transform 180ms ease;
}

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

.menu-toggle {
  display: none;
  padding: 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px 0;
  background: #000;
  border-radius: 999px;
  transform-origin: center;
  transition:
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    translate 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background-color 220ms ease;
}

.menu-backdrop {
  display: none;
}

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

.hero {
  position: relative;
  min-height: 743px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(244, 247, 255, 0.76) 22%, rgba(207, 224, 255, 0.88) 100%),
    url("assets/hero-bg.avif") center / cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 1020px;
  margin: 0 auto;
  padding: 54px 24px 78px;
  text-align: center;
}

.portrait {
  width: 103px;
  height: 126px;
  margin-bottom: 9px;
  object-fit: cover;
  border-radius: 52px 52px 0 0;
}

.hero h1,
.role,
.hero-lead,
.section-inner h2,
.expertise-card h3,
.services-grid h3,
footer h2 {
  font-family: "Syne", Arial, sans-serif;
}

.hero h1 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(64px, 7.15vw, 92px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.role {
  margin: 14px 0 48px;
  color: var(--blue);
  font-size: clamp(38px, 4.25vw, 55px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
}

.hero-lead {
  margin: 0;
  color: var(--magenta);
  font-size: clamp(22px, 2.25vw, 29px);
  font-weight: 700;
  line-height: 1.2;
}

.hero-meta {
  margin: 7px 0 35px;
  color: var(--magenta);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--button-min-width);
  min-height: var(--button-min-height);
  padding: var(--button-padding);
  color: var(--button-color);
  background: var(--button-bg);
  font-family: "Syne", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  border: 2px solid var(--button-border);
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible,
.button.is-interactive,
.button.is-scroll-interactive {
  transform: translateY(-4px);
  color: var(--button-hover-color);
  background: var(--button-hover-bg);
  border-color: var(--button-hover-border);
  box-shadow: var(--button-shadow);
  outline: none;
}

.button:active {
  transform: translateY(0) scale(0.97);
  box-shadow: none;
}

.button-primary {
  --button-bg: var(--pink);
}

.button-secondary {
  --button-bg: transparent;
}

.shape {
  --shape-base-transform: rotate(0deg);
  --shape-hover-x: 0px;
  --shape-hover-y: 0px;
  --shape-scroll-x: 0px;
  --shape-scroll-y: 0px;
  --shape-hover-scale: 1;
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  animation: float-gentle 7.6s ease-in-out infinite alternate;
  transform: var(--shape-base-transform) translate3d(calc(var(--shape-hover-x) + var(--shape-scroll-x)), calc(var(--shape-hover-y) + var(--shape-scroll-y)), 0) scale(var(--shape-hover-scale));
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, translate, rotate;
}

.shape-arc {
  top: -12px;
  left: 27%;
  width: 140px;
  animation-duration: 8.7s;
  animation-delay: -2.1s;
}

.shape-ring-small {
  top: 124px;
  left: 16%;
  width: 40px;
  animation-name: float-sideways;
  animation-duration: 6.3s;
  animation-delay: -4.4s;
}

.shape-sprinkle-left {
  top: 250px;
  left: -36px;
  width: 145px;
  animation-name: float-deep;
  animation-duration: 9.8s;
  animation-delay: -1.2s;
}

.shape-capsule-top {
  --shape-base-transform: rotate(-15deg);
  top: 90px;
  left: 70%;
  width: 70px;
  animation-name: float-sideways;
  animation-duration: 7.1s;
  animation-delay: -5.6s;
}

.shape-star-right {
  top: 142px;
  right: 4.5%;
  width: 63px;
  animation-name: float-deep;
  animation-duration: 8.2s;
  animation-delay: -3.3s;
}

.shape-capsule-bottom {
  bottom: 105px;
  left: 21%;
  width: 40px;
  animation-duration: 5.9s;
  animation-delay: -1.8s;
}

.shape-star-small {
  bottom: 57px;
  left: 9%;
  width: 58px;
  animation-name: float-sideways;
  animation-duration: 7.9s;
  animation-delay: -6.2s;
}

.shape-ring-large {
  right: -9px;
  bottom: 81px;
  width: 132px;
  animation-name: float-deep;
  animation-duration: 10.4s;
  animation-delay: -4.9s;
}

.shape-star-bottom {
  top: -96px;
  right: 22%;
  width: 170px;
  z-index: 4;
  animation-duration: 9.1s;
  animation-delay: -7.4s;
  transform: translate3d(0, var(--boundary-parallax, 0px), 0);
  will-change: transform, translate, rotate;
}

@keyframes float-gentle {
  from { translate: 0 -5px; rotate: -2deg; }
  to { translate: 3px 10px; rotate: 3deg; }
}

@keyframes float-sideways {
  from { translate: -5px 3px; rotate: 2deg; }
  to { translate: 7px -8px; rotate: -4deg; }
}

@keyframes float-deep {
  from { translate: 3px -8px; rotate: -3deg; }
  to { translate: -4px 13px; rotate: 4deg; }
}

@media (hover: hover) and (pointer: fine) and (min-width: 801px) {
  .hero .shape {
    pointer-events: auto;
  }
}

.section-inner {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}

.dark-section {
  position: relative;
  color: var(--off-white);
  background: #000;
}

.expertise {
  overflow: visible;
  padding: 62px 0 58px;
}

.expertise > .section-inner {
  position: relative;
  z-index: 2;
}

.section-inner > h2 {
  margin: 0;
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.section-intro {
  margin: 20px 0 0;
  font-size: 20px;
  line-height: 1.45;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
  margin-top: 112px;
}

.expertise-card {
  position: relative;
  min-height: 238px;
  padding: 29px 31px;
  border: 1px solid rgba(246, 245, 255, 0.95);
  border-radius: 22px;
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.expertise-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 121, 229, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.expertise-card:hover,
.expertise-card:focus-visible,
.expertise-card.is-interactive,
.expertise-card.is-scroll-interactive {
  z-index: 1;
  background: #080814;
  border-color: #ff79e5;
  box-shadow: 0 18px 36px rgba(255, 121, 229, 0.12);
  transform: translateY(-8px);
  outline: none;
}

.expertise-card:hover::after,
.expertise-card:focus-visible::after,
.expertise-card.is-interactive::after,
.expertise-card.is-scroll-interactive::after {
  opacity: 1;
}

.expertise-card:active {
  transform: translateY(-2px) scale(0.99);
}

.card-symbol {
  display: block;
  width: fit-content;
  margin-bottom: 16px;
  color: #ff79e5;
  font-size: 39px;
  line-height: 1;
  transform-origin: center;
  transition: color 220ms ease, transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.expertise-card:hover .card-symbol,
.expertise-card.is-scroll-interactive .card-symbol {
  color: #fff;
  animation: card-symbol-spin 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.expertise-card:focus-visible .card-symbol,
.expertise-card.is-interactive .card-symbol {
  color: #fff;
  transform: scale(1.08);
}

@keyframes card-symbol-spin {
  from { transform: scale(1.1) rotate(0deg); }
  to { transform: scale(1.1) rotate(360deg); }
}

.expertise-card h3 {
  margin: 0 0 15px;
  font-size: 24px;
  line-height: 1.2;
}

.expertise-card p {
  margin: 0;
  font-size: 19px;
  line-height: 1.42;
}

.services {
  padding: 68px 0 96px;
  text-align: center;
}

.services h2 {
  color: var(--deep-blue);
}

.services .section-intro {
  color: #222;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  margin-top: 58px;
}

.services-grid article {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 18px 10px;
  border-radius: 18px;
  isolation: isolate;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.services-grid article::before,
.brand-logo-link::before {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(216, 194, 255, 0.26) 0%,
    rgba(237, 136, 222, 0.12) 42%,
    rgba(216, 194, 255, 0) 78%
  );
  filter: blur(20px);
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 220ms ease, transform 260ms ease;
}

.services-grid article::before {
  inset: -18px -28px;
}

.services-grid article:hover,
.services-grid article:focus-visible,
.services-grid article.is-interactive,
.services-grid article.is-scroll-interactive {
  box-shadow: none;
  transform: translateY(-8px);
  outline: none;
}

.services-grid article:hover::before,
.services-grid article:focus-visible::before,
.services-grid article.is-interactive::before,
.services-grid article.is-scroll-interactive::before,
.brand-logo-link:hover::before,
.brand-logo-link:focus-visible::before,
.brand-logo-link.is-interactive::before,
.brand-logo-link.is-scroll-interactive::before,
.brand-logo-link.is-pointer-active::before {
  opacity: 1;
  transform: scale(1);
}

.services-grid article:active {
  transform: translateY(-2px) scale(0.98);
}

.services-grid img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.services-grid article:hover img,
.services-grid article:focus-visible img,
.services-grid article.is-interactive img,
.services-grid article.is-scroll-interactive img {
  transform: translateY(-4px) scale(1.06);
}

.services-grid h3 {
  margin: 18px 0 0;
  color: var(--deep-blue);
  font-size: 20px;
  line-height: 1.4;
}

.testimonials {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 80px;
  align-items: center;
  min-height: 690px;
  padding: 55px 24px;
  background: linear-gradient(105deg, #cdbbff 0%, #f1edff 58%, #fff 100%);
  background-size: 220% 220%;
  animation: testimonial-gradient 10s ease-in-out infinite alternate;
  overflow-anchor: none;
}

@keyframes testimonial-gradient {
  0% { background-position: 0% 45%; }
  50% { background-position: 55% 55%; }
  100% { background-position: 100% 45%; }
}

.testimonial-stage {
  max-width: 1000px;
  min-height: 550px;
  margin: 0 auto;
  text-align: center;
  touch-action: pan-y;
  overscroll-behavior: contain;
  cursor: grab;
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 320ms ease,
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.testimonial-stage.is-exiting-next,
.testimonial-stage.is-exiting-previous {
  opacity: 0;
}

.testimonial-stage.is-exiting-next {
  transform: translateX(-28px);
}

.testimonial-stage.is-exiting-previous {
  transform: translateX(28px);
}

.testimonial-stage.is-entering-next {
  opacity: 0;
  transform: translateX(28px);
}

.testimonial-stage.is-entering-previous {
  opacity: 0;
  transform: translateX(-28px);
}

.quote-mark {
  height: 84px;
  color: #003eb5;
  font-family: Georgia, serif;
  font-size: 145px;
  font-weight: 700;
  line-height: 1;
}

blockquote {
  min-height: 175px;
  margin: 90px 0 110px;
  color: #19032b;
  font-size: 24px;
  line-height: 1.42;
}

.testimonial-author,
.testimonial-role {
  margin: 0;
  color: var(--deep-blue);
  font-weight: 700;
}

.testimonial-author {
  font-size: 21px;
}

.testimonial-role {
  margin-top: 3px;
  font-size: 20px;
}

.carousel-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 72px;
  padding: 0;
  color: #8fbdff;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.carousel-arrow svg {
  width: 24px;
  height: 48px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.35;
}

.carousel-arrow:hover {
  color: var(--deep-blue);
  transform: scale(1.14);
}

.carousel-arrow:focus-visible {
  color: var(--deep-blue);
  outline: 2px solid var(--deep-blue);
  outline-offset: 4px;
  border-radius: 8px;
}

.carousel-arrow:active {
  transform: scale(0.92);
}

.carousel-dots {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 8px 10px;
  width: min(330px, 100%);
  max-width: calc(100vw - 96px);
  margin-right: auto;
  margin-left: auto;
  margin-top: 45px;
  padding: 4px 34px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
}

.carousel-dots::-webkit-scrollbar {
  display: none;
}

.carousel-dots button {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  padding: 0;
  background: #c4baf0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  scroll-snap-align: center;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.carousel-dots button:hover,
.carousel-dots button:focus-visible {
  background: var(--deep-blue);
  box-shadow: 0 0 0 4px rgba(0, 51, 155, 0.12);
  transform: scale(1.35);
  outline: none;
}

.carousel-dots button.active {
  background: var(--deep-blue);
}

.brands {
  padding: 82px 0 84px;
  text-align: center;
}

.brands h2 {
  color: var(--deep-blue);
}

.brands .section-intro {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  color: #222;
}

.brand-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 44px;
  align-items: center;
  margin: 72px 0 55px;
}

.brand-logos > * {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 74px;
  padding: 8px;
}

.brand-mark {
  --logo-art-y: 0px;
  display: block;
  margin: 0 auto;
  background-color: var(--deep-blue);
  -webkit-mask-image: var(--logo-mask);
  mask-image: var(--logo-mask);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transform: translateY(var(--logo-art-y));
  transition: transform 220ms ease, background-color 220ms ease, opacity 220ms ease;
}

.brand-logo-link {
  --logo-x: 0px;
  --logo-y: 0px;
  --logo-rotate: 0deg;
  position: relative;
  z-index: 0;
  border-radius: 12px;
  isolation: isolate;
  transform: translate3d(var(--logo-x), var(--logo-y), 0) rotate(var(--logo-rotate));
  transition: transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.brand-logo-link::before {
  inset: -16px -22px;
}

.brand-logos .logo-google {
  --logo-mask: url("assets/google.avif");
  --logo-art-y: 4px;
  width: 148px;
  height: 50px;
}
.brand-logos .logo-rai { --logo-mask: url("assets/rai.avif"); --logo-art-y: 1px; width: 75px; height: 58px; }
.brand-logos .logo-monks { --logo-mask: url("assets/monks.avif"); --logo-art-y: 3px; width: 142px; height: 32px; }
.brand-logos .logo-meta { --logo-mask: url("assets/meta.avif"); --logo-art-y: 5px; width: 142px; height: 48px; }
.brand-logos .logo-bumble { --logo-mask: url("assets/bumble.avif"); --logo-art-y: 3px; width: 150px; height: 32px; }

.brand-logo-link:hover .brand-mark,
.brand-logo-link:focus-visible .brand-mark,
.brand-logo-link.is-interactive .brand-mark,
.brand-logo-link.is-scroll-interactive .brand-mark,
.brand-logo-link.is-pointer-active .brand-mark {
  transform: translateY(var(--logo-art-y)) scale(1.08);
  background-color: #ff57dc;
}

.brand-logo-link:focus-visible {
  --logo-y: -5px;
  outline: 2px solid var(--deep-blue);
  outline-offset: 8px;
}

.linkedin-button {
  --button-bg: #ffe6fa;
  --button-color: var(--deep-blue);
  --button-border: #ffe6fa;
  --button-hover-bg: var(--deep-blue);
  --button-hover-color: #fff;
  --button-hover-border: var(--deep-blue);
  opacity: 1;
}

footer {
  color: var(--off-white);
  background: #073bac;
}

.footer-inner {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 90px;
  width: min(1060px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0 64px;
}

footer h2 {
  margin: 0;
  font-size: clamp(48px, 5.2vw, 70px);
  line-height: 1;
}

.contact-intro {
  margin: 44px 0 0;
  font-size: 18px;
  line-height: 1.35;
}

.location {
  margin: 76px 0 92px;
  font-size: 18px;
}

.footer-links {
  display: grid;
  gap: 4px;
  color: #f6f5ff;
  font-size: 16px;
}

.footer-links a {
  width: fit-content;
  text-decoration-color: transparent;
  text-underline-offset: 5px;
  transition: color 160ms ease, text-decoration-color 160ms ease, translate 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ff9aea;
  text-decoration: underline;
  text-decoration-color: currentColor;
  translate: 4px 0;
  outline: none;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: #f4f1ff;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: #17052c;
  background: #d9c0ff;
  border: 0;
  border-radius: 0;
  outline: none;
  resize: vertical;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form input.is-interactive,
.contact-form textarea.is-interactive {
  background: #eadcff;
  box-shadow: 0 8px 20px rgba(25, 3, 43, 0.1);
  transform: translateY(-2px);
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #e7d8ff;
  outline: 2px solid #ff83e4;
  outline-offset: 2px;
  box-shadow: 0 10px 24px rgba(25, 3, 43, 0.12);
  transform: translateY(-2px);
}

.form-button {
  --button-min-width: 150px;
  --button-min-height: 54px;
  --button-padding: 12px 28px;
  --button-bg: var(--pink);
  --button-color: #000;
  --button-border: var(--pink);
  --button-hover-bg: #fff;
  --button-hover-color: var(--deep-blue);
  --button-hover-border: #fff;
  justify-self: end;
  cursor: pointer;
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.form-status {
  min-height: 20px;
  margin: -8px 0 0;
  color: #ff9aea;
}

.form-status.is-success {
  color: #d8ffdf;
}

.form-status.is-error {
  color: #ffd4ec;
}

.copyright {
  width: min(1060px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 54px;
  color: #f6f5ff;
  font-size: 13px;
  text-align: left;
}

@media (max-width: 800px) {
  html {
    scroll-padding-top: 78px;
  }

  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 78px;
    padding: 0 22px;
    border-bottom: 1px solid rgba(7, 52, 185, 0.06);
  }

  main {
    padding-top: 78px;
  }

  .menu-toggle {
    position: relative;
    z-index: 24;
    display: block;
    width: 44px;
    height: 44px;
    padding: 7px 9px;
    border: 1px solid transparent;
    border-radius: 14px;
    transition:
      background-color 220ms ease,
      border-color 220ms ease,
      transform 220ms ease;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    background: rgba(216, 194, 255, 0.35);
    outline: none;
  }

  .menu-toggle:active {
    transform: scale(0.92);
  }

  .menu-toggle[aria-expanded="true"] {
    background: var(--deep-blue);
    border-color: var(--deep-blue);
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):first-child {
    translate: 0 4px;
    transform: rotate(45deg);
    background: #fff;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
    translate: 0 -4px;
    transform: rotate(-45deg);
    background: #fff;
  }

  .site-header nav {
    position: fixed;
    top: 78px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 23;
    display: block;
    padding: 0;
    overflow: hidden;
    visibility: hidden;
    background:
      radial-gradient(circle at 92% 18%, rgba(237, 136, 222, 0.28), rgba(237, 136, 222, 0.12) 20%, transparent 48%),
      radial-gradient(circle at 8% 92%, rgba(216, 194, 255, 0.2), transparent 42%),
      var(--deep-blue);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    opacity: 0;
    transform: translateX(100%);
    transition:
      opacity 240ms ease,
      transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0s linear 520ms;
  }

  .site-header nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0s;
  }

  .site-header nav > .desktop-nav-link {
    display: none;
  }

  .mobile-menu-content {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: clamp(30px, 6vh, 58px) 26px 28px;
  }

  .mobile-menu-content::after {
    content: none;
  }

  .mobile-menu-label {
    margin: 0 0 18px;
    color: var(--pink);
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-menu-links {
    display: flex;
    flex-direction: column;
  }

  .site-header .mobile-menu-links a {
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: center;
    min-height: 58px;
    padding: 5px 0;
    color: #fff;
    font-size: clamp(27px, 7.2vw, 38px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.035em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    opacity: 0;
    transform: translateX(28px);
    transition:
      color 180ms ease,
      opacity 260ms ease,
      transform 440ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-menu-links a span {
    color: var(--pink);
    font-family: "Questrial", Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
  }

  .site-header .mobile-menu-links a:hover,
  .site-header .mobile-menu-links a:focus-visible,
  .site-header .mobile-menu-links a.is-current {
    color: var(--pink);
    outline: none;
  }

  .site-header nav.open .mobile-menu-links a {
    opacity: 1;
    transform: translateX(0);
  }

  .site-header nav.open .mobile-menu-links a:nth-child(1) { transition-delay: 80ms; }
  .site-header nav.open .mobile-menu-links a:nth-child(2) { transition-delay: 115ms; }
  .site-header nav.open .mobile-menu-links a:nth-child(3) { transition-delay: 150ms; }
  .site-header nav.open .mobile-menu-links a:nth-child(4) { transition-delay: 185ms; }
  .site-header nav.open .mobile-menu-links a:nth-child(5) { transition-delay: 220ms; }
  .site-header nav.open .mobile-menu-links a:nth-child(6) { transition-delay: 255ms; }

  .mobile-menu-actions {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 10px;
    margin-top: auto;
    padding-top: 24px;
  }

  .site-header .mobile-menu-actions a {
    --menu-action-bg: var(--pink);
    --menu-action-color: #0f0f13;
    --menu-action-border: var(--pink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: 0 17px;
    color: var(--menu-action-color);
    font-size: 15px;
    font-weight: 700;
    border: 1px solid var(--menu-action-border);
    border-radius: 999px;
    background: var(--menu-action-bg);
    opacity: 0;
    transform: translateY(18px);
    transition:
      background-color 180ms ease,
      color 180ms ease,
      opacity 300ms ease 280ms,
      transform 420ms cubic-bezier(0.16, 1, 0.3, 1) 280ms;
  }

  .site-header .mobile-menu-actions a:last-child {
    --menu-action-bg: transparent;
    --menu-action-color: #fff;
    --menu-action-border: rgba(255, 255, 255, 0.58);
  }

  .site-header nav.open .mobile-menu-actions a {
    opacity: 1;
    transform: translateY(0);
  }

  .site-header .mobile-menu-actions a:hover,
  .site-header .mobile-menu-actions a:focus-visible {
    color: var(--deep-blue);
    background: #fff;
    border-color: #fff;
    outline: none;
  }

  .external-arrow {
    display: block;
    width: 22px;
    height: 22px;
    margin-left: 14px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform: translateY(1px);
    transition: transform 180ms ease;
  }

  .site-header .mobile-menu-actions a:hover .external-arrow,
  .site-header .mobile-menu-actions a:focus-visible .external-arrow {
    transform: translate(2px, -1px);
  }

  .menu-backdrop {
    display: none;
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    padding-top: 58px;
  }

  .hero h1 {
    font-size: clamp(50px, 10vw, 64px);
  }

  .role {
    margin-top: 18px;
    font-size: clamp(31px, 6.5vw, 40px);
  }

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

  .shape-arc { top: 30px; left: -10px; width: 94px; }
  .shape-ring-small { top: 154px; left: 8px; width: 34px; }
  .shape-sprinkle-left { top: auto; bottom: 30px; left: -36px; width: 68px; }
  .shape-capsule-top { top: 72px; right: 76px; left: auto; width: 42px; }
  .shape-star-right { top: 108px; right: -6px; width: 50px; }
  .shape-capsule-bottom { right: auto; bottom: 34px; left: 32%; width: 28px; }
  .shape-star-small { bottom: 8px; left: 64px; width: 38px; }
  .shape-ring-large { right: auto; bottom: -24px; left: 42%; width: 82px; }
  .shape-star-bottom { right: 4%; }

  .expertise-grid {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .testimonials {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
  }

  .testimonial-stage {
    min-height: 0;
  }

  .brand-logos {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 54px;
  }

  .brand-logos > * {
    width: min(280px, 100%);
    height: 82px;
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 520px) {
  .wordmark {
    font-size: 15px;
  }

  .hero {
    min-height: 730px;
  }

  .hero-content {
    padding: 48px 18px 80px;
  }

  .portrait {
    width: 86px;
    height: 106px;
  }

  .hero h1 {
    font-size: 51px;
    line-height: 0.98;
  }

  .role {
    margin-bottom: 36px;
    font-size: 32px;
    line-height: 1.05;
  }

  .hero-lead {
    font-size: 21px;
  }

  .hero-meta {
    max-width: 310px;
    font-size: 16px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .shape-arc { top: 30px; left: -12px; width: 82px; }
  .shape-ring-small { top: 142px; left: 10px; display: block; width: 31px; }
  .shape-capsule-top { top: 70px; right: 68px; left: auto; display: block; width: 39px; }
  .shape-star-right { top: 38px; right: -10px; width: 52px; }
  .hero .shape-sprinkle-left { top: auto; bottom: 18px; left: -42px; display: block; width: 66px; }
  .shape-capsule-bottom { right: auto; bottom: 42px; left: 34%; display: block; width: 27px; }
  .hero .shape-star-small { bottom: 9px; left: 64px; display: block; width: 38px; }
  .hero .shape-ring-large { right: auto; bottom: -22px; left: 42%; display: block; width: 78px; }
  .shape-star-bottom { top: -72px; right: -10px; width: 132px; }

  .section-inner {
    width: min(var(--max-width), calc(100% - 36px));
  }

  .section-inner > h2 {
    font-size: 43px;
  }

  .section-intro {
    font-size: 18px;
  }

  .expertise {
    padding-top: 70px;
  }

  .expertise-card {
    min-height: 0;
    padding: 25px 24px 29px;
  }

  .testimonials {
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    min-height: 680px;
    padding: 50px 8px;
  }

  blockquote {
    margin: 35px 0 45px;
    font-size: 18px;
  }

  .carousel-arrow {
    width: 28px;
    height: 56px;
    font-size: 48px;
  }

  .carousel-arrow svg {
    width: 17px;
    height: 38px;
  }

  .brand-logos {
    gap: 46px 28px;
  }

  .footer-inner {
    width: calc(100% - 36px);
  }

  .field-row {
    grid-template-columns: 1fr;
  }
}

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