/* styles.css */
:root {
  --ink: #11142d;
  --paper: #f8f6f1;
  --pink: #ff0471;
  --gold: #e2b44d;
  --line: rgba(17, 20, 45, 0.14);
  --motion-enter: 760ms;
  --motion-micro: 240ms;
  --motion-stagger: 65ms;
  --motion-distance: 24px;
  --motion-ease-out: cubic-bezier(.22, 1, .36, 1);
  --motion-spring: cubic-bezier(.2, .8, .2, 1);
}

@supports (animation-timing-function: linear(0, 1)) {
  :root {
    --motion-spring: linear(0, .008, .035 2.1%, .141 4.4%, .723 12.9%, .938 16.7%, 1.017 21.7%, 1.028 24.8%, 1.014 29.7%, 1.001 35.7%, 1);
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: #F9F8F4;
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 24px clamp(24px, 5vw, 72px);
  border-bottom: 1px solid transparent;
  transition: background-color var(--motion-micro) var(--motion-ease-out), border-color var(--motion-micro) var(--motion-ease-out), backdrop-filter var(--motion-micro) var(--motion-ease-out);
}

.site-header.is-scrolled {
  background: rgba(248, 246, 241, .78);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand { width: 128px; line-height: 0; }
.brand img { display: block; width: 100%; height: auto; }

.site-nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.site-nav a { position: relative; padding: 8px 0; }
.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--motion-micro) var(--motion-spring);
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: color 200ms var(--motion-ease-out), background-color 200ms var(--motion-ease-out);
}
.header-cta:hover,
.header-cta:focus-visible { color: var(--paper); background: var(--ink); }

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  padding: 180px clamp(20px, 5vw, 72px) 86px;
}

.hero-glow {
  position: absolute;
  z-index: -2;
  width: min(46vw, 650px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(4px);
  opacity: .48;
}
.hero-glow--left {
  top: 9%;
  left: -22%;
  background: radial-gradient(circle, rgba(255, 4, 113, .2), transparent 68%);
}
.hero-glow--right {
  right: -19%;
  bottom: -18%;
  background: radial-gradient(circle, rgba(226, 180, 77, .27), transparent 68%);
}

.hero-path-text {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: clamp(-150px, -7vw, -70px);
  width: clamp(250px, 29vw, 440px);
  height: min(108svh, 1070px);
  overflow: visible;
  pointer-events: none;
  transform: translateY(-50%);
}


@media (min-width: 761px) {
  .hero-path-text {
    top: auto;
    bottom: -1px;
    height: auto;
    aspect-ratio: 401 / 1070;
    transform: none;
  }
}

.hero-path-copy {
  font-family: Inter, Arial, sans-serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: .02em;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin: 0 0 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(255, 4, 113, .1);
}

h1 {
  max-width: 980px;
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(48px, 6.2vw, 88px);
  font-weight: 400;
  line-height: 1.055;
  letter-spacing: -.045em;
}
h1 strong { display: block; font-weight: 700; }

.hero-copy {
  width: min(760px, 100%);
  margin: 28px auto 0;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.45;
  letter-spacing: -.02em;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 38px;
  gap: 12px;
}

.primary-cta {
  position: relative;
  display: flex;
  min-width: 300px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  overflow: hidden;
  padding: 20px 40px;
  border: 2px solid var(--ink);
  border-radius: 40px;
  background: rgba(248, 246, 241, .65);
  backdrop-filter: blur(3px);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.03em;
  transition: transform var(--motion-micro) var(--motion-spring), color 200ms var(--motion-ease-out);
}
.primary-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  z-index: -1;
  background: var(--ink);
  transform: translateY(102%);
  transition: transform 280ms var(--motion-ease-out);
}
.primary-cta:hover,
.primary-cta:focus-visible {
  color: var(--paper);
  transform: translateY(-2px);
}
.primary-cta:hover::before,
.primary-cta:focus-visible::before { transform: translateY(0); }
.arrow { font-size: 19px; transition: transform var(--motion-micro) var(--motion-spring); }
.primary-cta:hover .arrow { transform: translateX(4px); }

.starting-price {
  margin: 0;
  background: linear-gradient(95deg, var(--pink) 26%, var(--gold) 100%);
  background-clip: text;
  color: transparent;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}


.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: clamp(24px, 5vw, 72px);
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

:focus-visible { outline: 3px solid rgba(255, 4, 113, .45); outline-offset: 4px; }

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 18px 20px;
  }
  .brand { width: 108px; }
  .site-nav { display: none; }
  .header-cta { padding: 10px 14px; font-size: 12px; }

  .hero {
    min-height: 100svh;
    padding: 154px 20px 92px;
  }
  .hero-path-text {
    display: none;
  }
  .eyebrow { margin-bottom: 22px; font-size: 10px; }
  h1 { font-size: clamp(44px, 13vw, 64px); }
  .hero-copy { margin-top: 24px; font-size: 18px; line-height: 1.5; }
  .hero-actions { margin-top: 32px; }
  .primary-cta { width: 100%; min-width: 0; max-width: 360px; padding: 18px 24px; }
  .scroll-cue { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .process-scroll-reveal .scroll-reveal-word {
    opacity: 1 !important;
    transform: none !important;
  }

  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  .hero-path-copy animate { display: none; }
}


.services-showcase {
  padding: 40px 0;
}

.services-layout {
  display: grid;
  grid-template-columns: 582px minmax(0, 624px);
  gap: 74px;
  align-items: center;
  width: min(1512px, 100%);
  min-height: 738px;
  margin: 0 auto;
  padding: 54px clamp(24px, 7.67vw, 116px);
}

.services-intro {
  display: flex;
  flex-direction: column;
  gap: 42px;
  align-items: flex-start;
}

.services-heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services-heading h2 {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 54px;
  font-weight: 600;
  line-height: 63px;
  letter-spacing: -.23px;
}

.services-heading > p {
  margin: 0;
  color: rgba(17, 20, 45, .8);
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -.23px;
}

.services-cta {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.services-cta > p {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: -.6px;
}

.services-cta .primary-cta { min-width: auto; }

.services-slider {
  position: relative;
  width: 624px;
  height: 736px;
  overflow: hidden;
  border-radius: 32px;
  background: #f9f8f4;
}

.services-track {
  display: flex;
  gap: 16px;
  height: 648px;
  padding: 0 32px;
  transform: translateX(0);
  transition: transform 650ms var(--motion-ease-out);
  will-change: transform;
}

.service-card {
  display: flex;
  flex: 0 0 560px;
  height: 648px;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--ink);
  border-radius: 32px;
  transition: border-color 200ms var(--motion-ease-out);
  background: #F9F8F4;
}

.service-card[aria-hidden="true"] {
  border-color: transparent;
}

.service-card.media-first { flex-direction: column-reverse; padding: 47px 47px 48px; }
.service-card.copy-first { flex-direction: column; padding: 48px 47px 47px; }

.service-card-copy {
  display: flex;
  width: 464px;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.service-card-copy h3 {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 38.4px;
  letter-spacing: -.6px;
}

.service-card-copy p {
  margin: 0;
  color: rgba(17, 20, 45, .8);
  font-size: 18px;
  line-height: 23.4px;
  letter-spacing: -.23px;
}

.service-card-media {
  width: 464px;
  height: 415px;
  flex: 0 0 415px;
  overflow: hidden;
  border-radius: 24px;
  background: #f9f8f4;
}

.service-card-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-dots {
  position: absolute;
  top: 664px;
  bottom: auto;
  left: 50%;
  display: flex;
  width: 110px;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  background: var(--ink);
  transform: translateX(-50%);
}

.slider-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  cursor: pointer;
  transform: translateZ(0) scale(1);
  transition:
    transform 200ms var(--motion-spring),
    background-color 180ms var(--motion-ease-out);
  will-change: transform;
}

.slider-dot:hover,
.slider-dot:focus-visible {
  transform: translateZ(0) scale(1.16);
}

.slider-dot.is-active {
  background: #fff;
  transform: translateZ(0) scale(1.1);
}

@media (max-width: 1220px) {
  .services-layout {
    grid-template-columns: minmax(0, 582px) minmax(0, 560px);
    gap: 40px;
  }
  .services-slider { width: 560px; }
  .services-track { padding: 0; }
}

@media (max-width: 980px) {
  .services-layout {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 72px 24px;
  }
  .services-intro { max-width: 680px; }
  .services-slider { width: min(624px, 100%); margin: 0 auto; }
  .services-track { padding: 0 max(0px, calc((100% - 560px) / 2)); }
}

@media (max-width: 620px) {
  .services-showcase { padding: 0; }
  .services-layout { gap: 48px; padding: 64px 20px; }
  .services-heading h2 { font-size: 42px; line-height: 1.08; }
  .services-heading > p { font-size: 17px; line-height: 26px; }
  .services-cta > p { font-size: 24px; line-height: 34px; }
  .services-slider { width: 100%; height: 640px; }
  .services-track { height: 568px; padding: 0; }
  .slider-dots { top: 584px; }
  .service-card {
    flex-basis: 100%;
    width: 100%;
    height: 568px;
    padding: 24px !important;
  }
  .service-card-copy, .service-card-media { width: 100%; }
  .service-card-copy h3 { font-size: 28px; line-height: 34px; white-space: normal; }
  .service-card-copy p { font-size: 16px; line-height: 22px; }
  .service-card-media { height: 360px; flex-basis: 360px; }
}



/* Framer-inspired CTA: default geometry is the text pill only. */
.header-cta,
.primary-cta {
  position: relative;
  display: inline-flex;
  width: max-content;
  min-width: 0;
  padding: 0;
  overflow: visible;
  align-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  color: var(--ink);
  transform: none;
}

.header-cta::before,
.primary-cta::before { display: none; }

.header-cta .button-label,
.primary-cta .button-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: rgba(248, 246, 241, .76);
  color: var(--ink);
  white-space: nowrap;
  transform: translateZ(0);
  transition:
    padding 280ms var(--motion-spring),
    color 220ms var(--motion-ease-out),
    background-color 220ms var(--motion-ease-out);
}

.header-cta .button-label { padding: 12px 18px; }

.primary-cta .button-label {
  padding: 20px 40px;
  border-width: 2px;
}

.button-orb {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: -4px;
  display: grid;
  width: 4px;
  height: 4px;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: #11142D;
  opacity: 0;
  transform: translateY(-50%) scale(.1);
  transform-origin: center;
  pointer-events: none;
  transition:
    right 280ms var(--motion-spring),
    width 280ms var(--motion-spring),
    height 280ms var(--motion-spring),
    opacity 180ms var(--motion-ease-out),
    transform 280ms var(--motion-spring);
}

.button-orb::after {
  width: 16px;
  height: 16px;
  content: "";
  background: center / 16px 16px no-repeat url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_79_4904)'%3E%3Cpath d='M1.0647 8H14.9355M8.38541 14.5501L14.9355 8L8.38541 1.44992' stroke='%23F9F8F4' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_79_4904'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  opacity: 0;
  transform: translateX(-5px);
  transition:
    opacity 180ms var(--motion-ease-out) 80ms,
    transform 260ms var(--motion-spring) 60ms;
}

.header-cta:hover,
.header-cta:focus-visible,
.primary-cta:hover,
.primary-cta:focus-visible {
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  transform: none;
}

.header-cta:hover .button-label,
.header-cta:focus-visible .button-label {
  padding-inline: 14px;
  color: #F9F8F4;
  background: #11142D;
}

.primary-cta:hover .button-label,
.primary-cta:focus-visible .button-label {
  padding-inline: 28px;
  color: #F9F8F4;
  background: #11142D;
}

.header-cta:hover .button-orb,
.header-cta:focus-visible .button-orb,
.primary-cta:hover .button-orb,
.primary-cta:focus-visible .button-orb {
  right: -55px;
  width: 51px;
  height: 51px;
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.header-cta:hover .button-orb::after,
.header-cta:focus-visible .button-orb::after,
.primary-cta:hover .button-orb::after,
.primary-cta:focus-visible .button-orb::after {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 760px) {
  .header-cta { padding: 0; }
  .header-cta .button-label { padding: 10px 14px; }

  .primary-cta {
    width: max-content;
    max-width: calc(100% - 55px);
    padding: 0;
  }

  .primary-cta .button-label {
    max-width: calc(100vw - 96px);
    padding: 18px 24px;
  }

  .header-cta:hover .button-label,
  .header-cta:focus-visible .button-label { padding-inline: 11px; }

  .primary-cta:hover .button-label,
  .primary-cta:focus-visible .button-label { padding-inline: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .header-cta .button-label,
  .primary-cta .button-label,
  .button-orb,
  .button-orb::after { transition-duration: .01ms !important; }
}


/* Scroll-driven services sequence: five vertical viewports map to five cards. */
@media (min-width: 981px) {
  .services-showcase {
    --service-slide-count: 5;
    position: relative;
    height: 600svh;
    padding: 0;
  }

  .services-layout {
    position: sticky;
    top: 0;
    height: 100svh;
    min-height: 0;
    padding-block: 0;
    align-content: center;
    overflow: hidden;
  }

  .services-track {
    transition: transform 650ms var(--motion-ease-out);
  }
}

@media (max-width: 980px) {
  .services-showcase {
    height: auto;
  }

  .services-layout {
    position: static;
    height: auto;
    overflow: visible;
  }
}


/* The reveal circle derives its diameter from each button's rendered height. */
.button-orb {
  top: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  aspect-ratio: 1 / 1;
  transform: translate3d(0, 0, 0) scale(.1);
}

.header-cta:hover .button-orb,
.header-cta:focus-visible .button-orb,
.primary-cta:hover .button-orb,
.primary-cta:focus-visible .button-orb {
  top: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  aspect-ratio: 1 / 1;
  transform: translate3d(calc(100% + 4px), 0, 0) scale(1);
}


.process-section {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  padding: 120px 0 32px;
  background: var(--paper);
}

.process-content {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  padding: 0 clamp(24px, 7.67vw, 116px);
}

.process-heading {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.process-heading h2 {
  width: min(966px, 100%);
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 74px;
  letter-spacing: -.23px;
}

.process-heading h2 strong { font-weight: 700; }

.process-scroll-reveal .scroll-reveal-word {
  display: inline-block;
  opacity: .14;
  will-change: opacity;
}

.process-heading > p {
  width: 100%;
  margin: 0;
  color: rgba(17, 20, 45, .8);
  font-size: 18px;
  line-height: 23.4px;
  letter-spacing: -.23px;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
}

.process-card {
  position: relative;
  height: 372px;
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
}

.process-card-visual {
  position: absolute;
  top: 32px;
  right: 32px;
  left: 32px;
  display: grid;
  height: 164px;
  place-items: center;
  pointer-events: none;
}

.process-card-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.process-card:nth-child(2) .process-card-visual img {
  height: 145px;
}

.process-card > p:not(.process-number) {
  position: absolute;
  top: 281px;
  left: 32px;
  width: calc(100% - 64px);
  margin: 0;
  color: rgba(17, 20, 45, .8);
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -.23px;
}

.process-number {
  position: absolute;
  top: 228px;
  left: 32px;
  margin: 0;
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 38.4px;
  letter-spacing: -.6px;
}

.process-cta .button-label {
  width: 240px;
  padding: 20px 40px;
  border: 0;
  background: linear-gradient(110.126deg, #F4D48E .89%, #FB317B 121.99%);
  box-shadow: none;
  color: #F9F8F4;
  transition:
    width 280ms var(--motion-spring),
    padding 280ms var(--motion-spring),
    color 220ms var(--motion-ease-out),
    background-color 220ms var(--motion-ease-out);
}

.process-cta:hover .button-label,
.process-cta:focus-visible .button-label {
  width: 216px;
  padding: 20px 28px;
  background: #11142D;
  color: #F9F8F4;
}

.process-cta .button-orb {
  background: #11142D;
}

@media (max-width: 980px) {
  .process-section { padding-top: 96px; }
  .process-content { padding-inline: 24px; }
  .process-cards { gap: 20px; }
}

@media (max-width: 760px) {
  .process-section { gap: 40px; padding: 72px 0 32px; }
  .process-content { gap: 40px; padding-inline: 20px; }
  .process-heading h2 { font-size: 46px; line-height: 1.06; }
  .process-heading > p { font-size: 17px; line-height: 25px; }
  .process-cards { grid-template-columns: 1fr; }
  .process-card { height: 300px; }
  .process-card-visual {
    top: 24px;
    right: 24px;
    left: 24px;
    height: 120px;
  }
  .process-card:nth-child(2) .process-card-visual img {
    height: 106px;
  }
  .process-number { top: 170px; }
  .process-card > p:not(.process-number) { top: 218px; }
  .process-cta .button-label { width: 220px; padding: 18px 32px; }
  .process-cta:hover .button-label,
  .process-cta:focus-visible .button-label {
    width: 196px;
    padding: 18px 24px;
  }
}


.brief-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 72px;
  background: var(--paper);
}

.brief-frame {
  display: flex;
  width: min(1280px, 100%);
  height: 667px;
  align-items: flex-end;
  justify-content: center;
}

.brief-copy {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  width: 634px;
  padding-bottom: 160px;
}

.brief-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 38.4px;
  letter-spacing: -.6px;
}

.brief-copy p {
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  margin: 0;
  color: rgba(17, 20, 45, .8);
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -.23px;
}

@media (max-width: 760px) {
  .brief-section { padding: 56px 20px; }
  .brief-frame { height: 520px; }
  .brief-copy {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    padding-bottom: 72px;
  }
  .brief-copy h2 { font-size: 30px; line-height: 36px; }
  .brief-copy p { max-width: 420px; }
}


/* Sticky three-state narrative with a continuously looping circular arc. */
.brief-section {
  position: relative;
  height: 400svh;
  padding: 0;
  overflow: visible;
  background: var(--paper);
}

.brief-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
}

.arc-carousel {
  position: absolute;
  z-index: 1;
  top: 11%;
  left: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
}

.arc-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 330px;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(17, 20, 45, .16);
  opacity: 0;
  transform-origin: center;
  will-change: transform, opacity;
}

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

.brief-frame {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(1280px, calc(100% - 144px));
  height: 100%;
  margin: 0 auto;
  place-items: center;
}

.brief-copy {
  position: absolute;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  width: 634px;
  padding: 32px;
  border-radius: 24px;
  background: rgba(249, 248, 244, .88);
  opacity: 0;
  transform: translateY(28px);
  backdrop-filter: blur(14px);
  pointer-events: none;
  transition:
    opacity 500ms var(--motion-ease-out),
    transform 700ms var(--motion-ease-out);
}

.brief-copy.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.brief-copy h2,
.brief-copy p {
  position: static;
  padding: 0;
}

@media (max-width: 760px) {
  .brief-section { height: 400svh; padding: 0; }
  .brief-sticky { min-height: 600px; }
  .arc-carousel { top: 12%; }
  .arc-card {
    width: 132px;
    height: 198px;
    border-radius: 14px;
  }
  .brief-frame { width: calc(100% - 40px); height: 100%; }
  .brief-copy {
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
    padding: 24px;
  }
  .brief-copy h2 { font-size: 30px; line-height: 36px; }
  .brief-copy p { max-width: none; }
}


/* Visible arc fallback: JavaScript progressively enhances these positions. */
.brief-sticky { min-height: 0; }
.arc-card { opacity: 1; visibility: visible; }
.arc-card:nth-child(1) { transform: translate3d(calc(-50% - 879px), calc(-50% + 674px), 0) rotate(-75deg); }
.arc-card:nth-child(2) { transform: translate3d(calc(-50% - 784px), calc(-50% + 448px), 0) rotate(-59.5deg); }
.arc-card:nth-child(3) { transform: translate3d(calc(-50% - 615px), calc(-50% + 239px), 0) rotate(-42.5deg); }
.arc-card:nth-child(4) { transform: translate3d(calc(-50% - 392px), calc(-50% + 89px), 0) rotate(-25.5deg); }
.arc-card:nth-child(5) { transform: translate3d(calc(-50% - 135px), calc(-50% + 10px), 0) rotate(-8.5deg); }
.arc-card:nth-child(6) { transform: translate3d(calc(-50% + 135px), calc(-50% + 10px), 0) rotate(8.5deg); }
.arc-card:nth-child(7) { transform: translate3d(calc(-50% + 392px), calc(-50% + 89px), 0) rotate(25.5deg); }
.arc-card:nth-child(8) { transform: translate3d(calc(-50% + 615px), calc(-50% + 239px), 0) rotate(42.5deg); }
.arc-card:nth-child(9) { transform: translate3d(calc(-50% + 784px), calc(-50% + 448px), 0) rotate(59.5deg); }
.arc-card:nth-child(10) { transform: translate3d(calc(-50% + 879px), calc(-50% + 674px), 0) rotate(75deg); }

@media (max-width: 760px) {
  .brief-sticky { min-height: 0; }
}

/* arc.css */
.brief-section {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: 400dvh !important;
  min-height: 400dvh !important;
  padding: 0 !important;
  overflow: visible !important;
  background: #F9F8F4 !important;
}

.brief-sticky {
  position: sticky !important;
  top: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100dvh !important;
  min-height: 100dvh !important;
  overflow: hidden !important;
  background: #F9F8F4 !important;
}

.arc-carousel {
  position: absolute !important;
  z-index: 1 !important;
  top: clamp(225px, 27dvh, 270px) !important;
  left: 50% !important;
  display: block !important;
  width: 0 !important;
  height: 0 !important;
  overflow: visible !important;
  pointer-events: none !important;
}

.arc-card {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  display: block !important;
  width: 250.8px !important;
  height: 216.522px !important;
  aspect-ratio: 2343 / 2023;
  overflow: hidden !important;
  border-radius: 20px !important;
  background: #fff !important;
  box-shadow: none !important;
  filter: none !important;
  opacity: 1;
  visibility: visible !important;
  transform-origin: center !important;
  will-change: transform, opacity;
}

.arc-card img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: 1 !important;
  visibility: visible !important;
}



.arc-card:nth-child(1) { transform: translate3d(calc(-50% - 1109px), calc(-50% + 897px), 0) rotate(-77.92deg); }
.arc-card:nth-child(2) { transform: translate3d(calc(-50% - 1017px), calc(-50% + 632px), 0) rotate(-63.75deg); }
.arc-card:nth-child(3) { transform: translate3d(calc(-50% - 863px), calc(-50% + 399px), 0) rotate(-49.58deg); }
.arc-card:nth-child(4) { transform: translate3d(calc(-50% - 657px), calc(-50% + 210px), 0) rotate(-35.42deg); }
.arc-card:nth-child(5) { transform: translate3d(calc(-50% - 411px), calc(-50% + 77px), 0) rotate(-21.25deg); }
.arc-card:nth-child(6) { transform: translate3d(calc(-50% - 140px), calc(-50% + 9px), 0) rotate(-7.08deg); }
.arc-card:nth-child(7) { transform: translate3d(calc(-50% + 140px), calc(-50% + 9px), 0) rotate(7.08deg); }
.arc-card:nth-child(8) { transform: translate3d(calc(-50% + 411px), calc(-50% + 77px), 0) rotate(21.25deg); }
.arc-card:nth-child(9) { transform: translate3d(calc(-50% + 657px), calc(-50% + 210px), 0) rotate(35.42deg); }
.arc-card:nth-child(10) { transform: translate3d(calc(-50% + 863px), calc(-50% + 399px), 0) rotate(49.58deg); }
.arc-card:nth-child(11) { transform: translate3d(calc(-50% + 1017px), calc(-50% + 632px), 0) rotate(63.75deg); }
.arc-card:nth-child(12) { transform: translate3d(calc(-50% + 1109px), calc(-50% + 897px), 0) rotate(77.92deg); }

.brief-frame {
  position: relative !important;
  z-index: 5 !important;
  display: grid !important;
  width: min(1280px, calc(100% - 144px)) !important;
  height: 100% !important;
  margin: 0 auto !important;
  place-items: center !important;
  pointer-events: none;
}

.brief-copy {
  position: absolute !important;
  top: calc(min(68dvh, calc(100dvh - 190px)) - 60px) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 32px !important;
  align-items: center !important;
  justify-items: center !important;
  text-align: center !important;
  width: 634px !important;
  max-width: 500px !important;
  margin: 0 !important;
  padding: 32px !important;
  border-radius: 24px !important;
  background: rgba(249, 248, 244, .94) !important;
  color: #11142D !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(28px) !important;
  backdrop-filter: blur(14px);
  transition: opacity 500ms var(--motion-ease-out), transform 650ms var(--motion-ease-out), visibility 500ms;
}

.brief-copy.is-active {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.brief-copy h2 {
  position: static !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #11142D !important;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: 32px !important;
  font-weight: 500 !important;
  line-height: 38.4px !important;
  letter-spacing: -.6px !important;
}

.brief-copy p {
  position: static !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  color: rgba(17, 20, 45, .8) !important;
  font-family: Inter, Arial, sans-serif !important;
  font-size: 18px !important;
  line-height: 28px !important;
  letter-spacing: -.23px !important;
}

@media (max-width: 760px) {
  .brief-section { min-height: 400dvh !important; }
  .arc-carousel { top: clamp(148px, 22dvh, 190px) !important; }
  .arc-card {
    width: 153.12px !important;
    height: 132.209px !important;
    aspect-ratio: 2343 / 2023;
    border-radius: 14px !important;
  }
  .brief-frame { width: calc(100% - 40px) !important; }
  .brief-copy {
    top: calc(min(62dvh, calc(100dvh - 240px)) - 60px) !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    width: 100% !important;
    padding: 24px !important;
  }
  .brief-copy h2 {
    font-size: 30px !important;
    line-height: 36px !important;
  }
  .brief-copy p {
    font-size: 17px !important;
    line-height: 25px !important;
  }
}

.arc-card,
.arc-card img {
  box-shadow: none !important;
  filter: none !important;
}

/* workload.css */
.workload-section {
  position: relative;
  display: flex;
  width: 100%;
  min-height: auto;
  align-items: stretch;
  overflow: hidden;
  background: transparent;
  color: #11142d;
}

.workload-container {
  display: grid;
  grid-template-columns: minmax(0, 624px) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  width: min(1512px, 100%);
  min-height: auto;
  margin: 0 auto;
  padding: 80px clamp(24px, 7.67vw, 116px);
  background: transparent !important;
}

.workload-visual {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
  border-radius: 32px;
  background: rgba(249, 248, 244, .44);
}

.workload-beams {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.workload-beam-base,
.workload-beam-flow {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.workload-beam-base {
  stroke: rgba(17, 20, 45, .18);
  stroke-width: 1.25;
}

.workload-beam-flow {
  stroke-width: 2.25;
  stroke-linecap: round;
}

.workload-beam-layout {
  position: relative;
  z-index: 1;
  display: grid;
  box-sizing: border-box;
  grid-template-columns: minmax(96px, .72fr) 60px 112px 32px 64px 60px minmax(144px, 1.28fr);
  gap: 0;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 34px 12px;
}

.workload-beam-list {
  display: flex;
  height: auto;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.workload-beam-list--inputs {
  grid-column: 1;
  align-items: flex-end;
  transform: translate3d(24px, 0, 0);
}

.workload-company-node {
  grid-column: 3;
}

.workload-designer-node {
  grid-column: 5;
}

.workload-beam-list--outputs {
  grid-column: 7;
  align-items: flex-start;
  visibility: visible !important;
  opacity: 1 !important;
}

.workload-beam-list--outputs .workload-beam-tag {
  position: relative;
  isolation: isolate;
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  animation: none !important;
  transform: translateZ(0);
}

.workload-beam-list--outputs .workload-beam-tag::after {
  position: absolute;
  z-index: 2;
  inset: -1px;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(89deg, #F4D48E 9.71%, #FB317B 50%, #F4D48E 99.02%);
  background-position: 0% 50%;
  background-size: 220% 100%;
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateZ(0) scale(.98);
  will-change: transform, opacity, filter;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.workload-beam-list--outputs .workload-beam-tag:nth-child(1) {
  --workload-tag-delay: 0s;
}

.workload-beam-list--outputs .workload-beam-tag:nth-child(2) {
  --workload-tag-delay: 0s;
}

.workload-beam-list--outputs .workload-beam-tag:nth-child(3) {
  --workload-tag-delay: 0s;
}

.workload-beam-list--outputs .workload-beam-tag:nth-child(4) {
  --workload-tag-delay: 0s;
}

.workload-beam-list--outputs .workload-beam-tag:nth-child(5) {
  --workload-tag-delay: 0s;
}

.workload-visual.is-output-hit .workload-beam-list--outputs .workload-beam-tag::after {
  animation: workload-output-highlight 560ms linear both;
}

@keyframes workload-output-highlight {
  0% {
    background-position: 0% 50%;
    opacity: 0;
    filter: none;
    transform: translateZ(0) scale(.99);
  }

  18%,
  76% {
    opacity: 1;
    filter:
      drop-shadow(-2px 0 6px rgba(244, 212, 142, .62))
      drop-shadow(2px 0 7px rgba(251, 49, 123, .52));
    transform: translateZ(0) scale(1.02);
  }

  76% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 100% 50%;
    opacity: 0;
    filter: none;
    transform: translateZ(0) scale(1);
  }
}

.workload-beam-tag {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border: 1px solid rgba(17, 20, 45, .32);
  border-radius: 999px;
  background: #F9F8F4;
  color: #11142D;
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -.2px;
  white-space: nowrap;
}

.workload-beam-tag--complete {
  gap: 7px;
}

.workload-check {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  place-items: center;
  border-radius: 50%;
  background: #11142D;
  color: #F9F8F4;
}

.workload-check svg {
  width: 12px;
  height: 12px;
}

.workload-company-node {
  display: grid;
  width: 112px;
  min-height: 126px;
  grid-template-rows: 64px 34px;
  gap: 8px;
  align-content: center;
  align-items: center;
  justify-items: center;
  padding: 0 10px;
  border: 2px solid #11142D;
  border-radius: 28px;
  background: #F9F8F4;
  color: #11142D;
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
}

.workload-company-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: #11142D;
  color: #F9F8F4;
}

.workload-company-icon svg {
  width: 27px;
  height: 27px;
}

.workload-designer-node {
  position: relative;
  display: flex;
  min-height: 126px;
  align-items: center;
  justify-content: center;
}

.workload-designer-label {
  position: absolute;
  top: calc(50% + 40px);
  left: 50%;
  transform: translateX(-50%);
  color: #11142D;
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}

.workload-user-node {
  position: relative;
  display: grid;
  width: 64px;
  height: 64px;
  isolation: isolate;
  place-items: center;
  border: 2px solid #11142D;
  border-radius: 50%;
  background: #F9F8F4;
  color: #11142D;
}

.workload-user-node::before {
  position: absolute;
  z-index: 1;
  inset: -2px;
  padding: 4px;
  border-radius: inherit;
  background: linear-gradient(89deg, #F4D48E 9.71%, #FB317B 99.02%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: scale(.96);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.workload-user-node svg {
  position: relative;
  z-index: 2;
}

.workload-visual.is-me-hit .workload-user-node::before {
  animation: workload-user-highlight 480ms var(--motion-ease-out, cubic-bezier(.22, 1, .36, 1)) both;
}

@keyframes workload-user-highlight {
  0% {
    opacity: 0;
    transform: scale(.98);
  }

  24%,
  74% {
    opacity: 1;
    transform: scale(1.06);
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

.workload-user-icon-highlight {
  opacity: 0;
}

.workload-visual.is-me-hit .workload-user-icon-highlight {
  animation: workload-user-icon-highlight 480ms var(--motion-ease-out, cubic-bezier(.22, 1, .36, 1)) both;
}

@keyframes workload-user-icon-highlight {
  0% {
    opacity: 0;
  }

  24%,
  74% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.workload-user-node svg {
  width: 30px;
  height: 30px;
}


.workload-content {
  display: flex;
  min-width: 0;
  max-width: 1280px;
  flex-direction: column;
  gap: 42px;
  align-items: flex-start;
}

.workload-heading {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.workload-heading h2 {
  width: 100%;
  max-width: 970px;
  margin: 0;
  color: #11142d;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 54px;
  letter-spacing: -.8px;
}

.workload-heading > p,
.workload-option p {
  margin: 0;
  color: rgba(17, 20, 45, .8);
  font-family: Inter, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 23.4px;
  letter-spacing: -.23px;
}

.workload-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  width: 100%;
}

.workload-option {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.workload-option h3 {
  margin: 0;
  color: #11142d;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -.6px;
}

@media (max-width: 1100px) {
  .workload-container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    padding-inline: 40px;
  }

  .workload-visual {
    min-height: 440px;
  }

  .workload-beam-layout {
    grid-template-columns: minmax(64px, .75fr) 32px 82px 18px 48px 32px minmax(92px, 1.25fr);
    gap: 0;
    padding-inline: 10px;
  }

  .workload-beam-list--inputs {
    transform: translate3d(14px, 0, 0);
  }

  .workload-company-node,
  .workload-designer-node {
    min-height: 108px;
  }

  .workload-company-node {
    grid-template-rows: 48px 28px;
    gap: 7px;
  }

  .workload-designer-label {
    top: calc(50% + 31px);
  }

  .workload-company-node {
    width: 82px;
  }

  .workload-user-node {
    width: 48px;
    height: 48px;
  }

  .workload-beam-tag {
    padding-inline: 10px;
    font-size: 11px;
  }
}

@media (max-width: 760px) {
  .workload-section {
    min-height: auto;
  }

  .workload-container {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
    padding: 80px 20px;
  }

  .workload-visual {
    min-height: 0;
    height: clamp(360px, 112vw, 460px);
    border-radius: 24px;
  }

  .workload-beam-layout {
    grid-template-columns: minmax(58px, .75fr) 16px 64px 10px 40px 16px minmax(78px, 1.25fr);
    gap: 0;
    padding: 18px 8px;
  }

  .workload-beam-list {
    height: auto;
    gap: 11px;
  }

  .workload-beam-list--inputs {
    transform: translate3d(8px, 0, 0);
  }

  .workload-beam-tag {
    min-height: 28px;
    padding: 5px 7px;
    font-size: 9px;
    line-height: 14px;
  }

  .workload-beam-tag--complete {
    gap: 4px;
  }

  .workload-check {
    width: 14px;
    height: 14px;
    flex-basis: 14px;
  }

  .workload-check svg {
    width: 10px;
    height: 10px;
  }

  .workload-company-node,
  .workload-designer-node {
    min-height: 90px;
  }

  .workload-company-node {
    grid-template-rows: 40px 24px;
    gap: 5px;
  }

  .workload-designer-label {
    top: calc(50% + 25px);
  }

  .workload-company-node {
    width: 64px;
    padding: 10px 5px;
    border-radius: 20px;
    font-size: 10px;
    line-height: 13px;
  }

  .workload-company-icon {
    width: 36px;
    height: 36px;
  }

  .workload-company-icon svg {
    width: 21px;
    height: 21px;
  }

  .workload-user-node {
    width: 40px;
    height: 40px;
  }

  .workload-designer-label {
    font-size: 9px;
    line-height: 12px;
  }

  .workload-user-node svg {
    width: 23px;
    height: 23px;
  }

  .workload-content {
    gap: 32px;
  }

  .workload-heading h2 {
    font-size: 40px;
    line-height: 44px;
  }

  .workload-heading > p,
  .workload-option p {
    font-size: 17px;
    line-height: 24px;
  }

  .workload-options {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}


@media (prefers-reduced-motion: reduce) {
  .workload-beam-flow {
    display: none;
  }

  .workload-user-node::before,
  .workload-user-icon-highlight {
    animation: none !important;
    opacity: 0;
  }

  .workload-beam-list--outputs .workload-beam-tag {
    animation: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none;
  }

  .workload-beam-list--outputs .workload-beam-tag::after {
    animation: none !important;
    opacity: 0;
  }
}

/* testimonials.css */
.testimonials-section {
  width: 100%;
  min-height: 100svh;
  padding: 32px 72px 80px;
  background: #f9f8f4;
  color: #11142d;
  box-sizing: border-box;
}

.testimonials-inner {
  display: flex;
  width: min(1440px, 100%);
  min-height: calc(100svh - 112px);
  flex-direction: column;
  margin: 0 auto;
}

.testimonials-topline,
.testimonials-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  column-gap: clamp(48px, 5vw, 80px);
}

.testimonials-kicker,
.testimonials-count {
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(17, 20, 45, .24);
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.testimonials-count {
  font-variant-numeric: tabular-nums;
}

.testimonials-layout {
  flex: 1;
  align-items: start;
  padding-top: 38px;
}

.testimonial-stage {
  min-width: 0;
  padding-right: clamp(0px, 2vw, 32px);
}

.testimonial-quote {
  max-width: 920px;
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.testimonial-quote.is-medium {
  font-size: clamp(32px, 3.15vw, 44px);
  line-height: 1.14;
  letter-spacing: -.035em;
}

.testimonial-quote.is-long {
  font-size: clamp(25px, 2.15vw, 30px);
  line-height: 1.24;
  letter-spacing: -.025em;
}

.testimonial-quote::before {
  content: "“";
}

.testimonial-quote::after {
  content: "”";
}

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

.testimonial-person {
  appearance: none;
  width: 100%;
  padding: 27px 0;
  border: 0;
  border-bottom: 1px solid rgba(17, 20, 45, .24);
  border-radius: 0;
  background: transparent;
  color: rgba(17, 20, 45, .38);
  box-shadow: none;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition:
    color 220ms var(--motion-ease-out),
    padding 220ms var(--motion-ease-out);
}

.testimonial-person:first-child {
  padding-top: 0;
}

.testimonial-person:hover,
.testimonial-person:focus-visible,
.testimonial-person.is-active {
  color: #11142d;
}

.testimonial-person:focus-visible {
  outline: 2px solid #fb317b;
  outline-offset: 6px;
}

.testimonial-name {
  display: block;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.testimonial-meta {
  display: grid;
  max-height: 0;
  overflow: hidden;
  gap: 4px;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition:
    max-height 500ms var(--motion-ease-out),
    margin 500ms var(--motion-ease-out),
    opacity 380ms var(--motion-ease-out),
    transform 500ms var(--motion-ease-out);
}

.testimonial-person.is-active .testimonial-meta {
  max-height: 80px;
  margin-top: 10px;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.testimonial-role,
.testimonial-company {
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
}

.testimonial-role {
  color: rgba(17, 20, 45, .62);
}

.testimonial-company {
  color: #11142d;
}

@media (max-width: 980px) {
  .testimonials-section {
    min-height: auto;
    padding: 80px 40px;
  }

  .testimonials-inner {
    min-height: 0;
  }

  .testimonials-topline,
  .testimonials-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .testimonials-count {
    display: none;
  }

  .testimonials-layout {
    padding-top: 32px;
  }

  .testimonial-stage {
    min-height: 360px;
    padding: 0 0 64px;
  }
}

@media (max-width: 760px) {
  .testimonials-section {
    padding: 72px 20px;
  }

  .testimonial-stage {
    min-height: 320px;
    padding-bottom: 48px;
  }

  .testimonial-quote {
    font-size: clamp(32px, 10vw, 46px);
  }

  .testimonial-quote.is-medium {
    font-size: clamp(28px, 8vw, 38px);
  }

  .testimonial-quote.is-long {
    font-size: clamp(23px, 6.4vw, 29px);
    line-height: 1.25;
  }

  .testimonial-person {
    padding: 22px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-person,
  .testimonial-meta {
    transition-duration: .01ms !important;
  }
}

/* faq.css */
.faq-section {
  width: 100%;
  background: transparent;
  color: #11142d;
}

.faq-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 624px);
  gap: 74px;
  align-items: stretch;
  width: min(1512px, 100%);
  min-height: 738px;
  margin: 0 auto;
  padding: 120px clamp(24px, 7.67vw, 116px);
}

.faq-content {
  display: flex;
  min-width: 0;
  max-width: 1280px;
  flex-direction: column;
  gap: 42px;
  align-items: flex-start;
}

.faq-content > h2 {
  width: 100%;
  max-width: 970px;
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 54px;
  letter-spacing: -.8px;
  transition: color 700ms var(--motion-ease-out);
}

.faq-list {
  width: 100%;
}

.faq-item {
  border-bottom: 1px solid #dcd9ce;
  transition: border-color 700ms var(--motion-ease-out);
}

.faq-item h3 {
  margin: 0;
}

.faq-trigger {
  display: flex;
  width: 100%;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border: 0;
  background: transparent;
  color: #11142d;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 700ms var(--motion-ease-out);
}

.faq-question {
  min-width: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -.6px;
}

.faq-icon {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  transition: transform var(--motion-micro) var(--motion-spring);
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 500ms var(--motion-ease-out),
    opacity 220ms var(--motion-ease-out);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer-inner {
  min-height: 0;
  overflow: hidden;
}

.faq-answer p {
  max-width: 620px;
  margin: 0;
  padding: 0 44px 20px 0;
  color: rgba(17, 20, 45, .8);
  font-family: Inter, Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -.23px;
  transition: color 700ms var(--motion-ease-out);
}

body.final-cta-theme .faq-content > h2,
body.final-cta-theme .faq-trigger {
  color: #F9F8F4;
}

body.final-cta-theme .faq-answer p {
  color: rgba(249, 248, 244, .78);
}

body.final-cta-theme .faq-item {
  border-bottom-color: rgba(249, 248, 244, .72);
}

.faq-visual {
  position: relative;
  width: 624px;
  height: 480px;
  min-height: 480px;
  align-self: center;
  overflow: hidden;
  border-radius: 32px;
  background:
    linear-gradient(157.794deg, #FB317B 2.8146%, #F4D48E 82.28%),
    #11142D;
}

.faq-visual-title {
  position: absolute;
  z-index: 2;
  top: 64px;
  left: 40px;
  margin: 0;
  color: #F9F8F4;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 54px;
  letter-spacing: -.8px;
}

.faq-marquees {
  position: absolute;
  top: 231px;
  right: 0;
  left: 0;
  display: grid;
  gap: 12px;
}

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

.faq-marquee-track {
  display: flex;
  width: max-content;
  gap: 12px;
  will-change: transform;
}

.faq-marquee-line--left .faq-marquee-track {
  animation: faq-marquee-left 28s linear infinite;
}

.faq-marquee-line--right .faq-marquee-track {
  animation: faq-marquee-right 32s linear infinite;
}

.faq-marquee-group {
  display: flex;
  flex: none;
  gap: 12px;
}

.faq-tag {
  display: inline-flex;
  min-height: 43px;
  flex: none;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border-radius: 40px;
  background: #F9F8F4;
  color: #11142D;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 26.8px;
  letter-spacing: -.48px;
  white-space: nowrap;
}

.faq-visual-cta {
  position: absolute;
  right: 40px;
  bottom: 34px;
  left: 40px;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.faq-visual-cta > p {
  margin: 0;
  color: #11142D;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

.faq-portfolio-cta {
  width: 324px;
  max-width: 100%;
  height: 68px;
}

.faq-portfolio-cta .button-label {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  min-height: 68px;
  padding: 17px 40px;
  border: 2px solid #11142D;
  background: rgba(249, 248, 244, .08);
  font-size: 18px;
  line-height: 30px;
  transition:
    right 280ms var(--motion-spring),
    width 280ms var(--motion-spring),
    padding 280ms var(--motion-spring),
    color 220ms var(--motion-ease-out),
    background-color 220ms var(--motion-ease-out);
}

.faq-portfolio-cta:hover .button-label,
.faq-portfolio-cta:focus-visible .button-label {
  right: 72px;
  width: 252px;
  padding-inline: 24px;
  color: #F9F8F4;
  background: #11142D;
}

.faq-portfolio-cta:hover .button-orb,
.faq-portfolio-cta:focus-visible .button-orb {
  right: 0;
  z-index: 2;
  background: #11142D;
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes faq-marquee-left {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-50% - 6px), 0, 0); }
}

@keyframes faq-marquee-right {
  from { transform: translate3d(calc(-50% - 6px), 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

@media (max-width: 1220px) {
  .faq-container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
    gap: 48px;
    padding-inline: 40px;
  }

  .faq-visual {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: 0;
    padding: 88px 24px;
  }

  .faq-visual {
    width: 100%;
    height: 480px;
    min-height: 480px;
  }
}

@media (max-width: 620px) {
  .faq-container {
    gap: 40px;
    padding: 72px 20px;
  }

  .faq-content {
    gap: 32px;
  }

  .faq-content > h2 {
    font-size: 40px;
    line-height: 44px;
  }

  .faq-question {
    font-size: 19px;
    line-height: 26px;
  }

  .faq-answer p {
    padding-right: 32px;
    font-size: 16px;
    line-height: 24px;
  }

  .faq-visual {
    height: 440px;
    min-height: 440px;
    border-radius: 24px;
  }

  .faq-visual-title {
    top: 48px;
    left: 24px;
    font-size: 42px;
    line-height: 44px;
  }

  .faq-marquees {
    top: 194px;
  }

  .faq-visual-cta {
    right: 20px;
    bottom: 24px;
    left: 20px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .faq-portfolio-cta {
    width: 100%;
    height: 58px;
  }

  .faq-portfolio-cta .button-label {
    width: 100%;
    min-height: 58px;
    padding: 14px 24px;
    font-size: 16px;
    line-height: 26px;
  }

  .faq-portfolio-cta:hover .button-label,
  .faq-portfolio-cta:focus-visible .button-label {
    right: 62px;
    width: calc(100% - 62px);
    padding-inline: 10px;
  }

  .faq-portfolio-cta:hover .button-orb,
  .faq-portfolio-cta:focus-visible .button-orb {
    right: 0;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-icon,
  .faq-answer {
    transition-duration: .01ms !important;
  }

  .faq-marquee-track {
    animation-play-state: paused !important;
  }
}

/* final-cta.css */
body {
  transition: background-color 700ms var(--motion-ease-out);
}

body.final-cta-theme {
  background-color: #11142d;
}

.final-cta-section {
  display: flex;
  width: 100%;
  min-height: 100dvh;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 0;
  background: transparent;
  color: #f9f8f4;
}

.final-cta-inner {
  display: grid;
  width: min(1440px, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  margin: 0 auto;
  padding: 0 72px;
}

.final-cta-copy {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
}

.final-cta-copy h2 {
  width: 100%;
  margin: 0;
  color: #f9f8f4;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 74px;
  letter-spacing: -.23px;
}

.final-cta-link {
  background:
    linear-gradient(91.2deg, #ff0471 26.628%, #e2b44d 100.25%),
    linear-gradient(90deg, #f9f8f4 0%, #f9f8f4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  background-position: 15% 50%, 50% 50%;
  background-size: 180% 100%, 100% 100%;
  color: transparent;
  animation: final-cta-gradient-drift 4s cubic-bezier(.45, 0, .55, 1) infinite alternate;
}

@keyframes final-cta-gradient-drift {
  from { background-position: 15% 50%, 50% 50%; }
  to { background-position: 70% 50%, 50% 50%; }
}

.final-cta-link:focus-visible {
  border-radius: 4px;
  outline-color: #f9f8f4;
}

.final-cta-copy > p {
  width: 100%;
  margin: 0;
  color: #f9f8f4;
  font-family: Inter, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 23.4px;
  letter-spacing: -.23px;
}


.final-cta-calendar {
  width: 100%;
  min-width: 320px;
  height: 650px;
  max-width: 700px;
  overflow: hidden;
  border: 1px solid rgba(249, 248, 244, .16);
  border-radius: 24px;
  background: #11142d;
  box-sizing: border-box;
  justify-self: end;
}

.final-cta-calendar .cal-inline-widget {
  width: 100%;
  min-width: 320px;
  height: 100%;
  background: #11142d;
}

@media (max-width: 1100px) {
  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 0 40px;
  }
}

@media (max-width: 760px) {
  .final-cta-section {
    min-height: 100dvh;
    padding: 80px 0;
  }

  .final-cta-inner {
    padding: 0 20px;
  }

  .final-cta-calendar {
    min-width: 0;
    height: 650px;
  }

  .final-cta-calendar .cal-inline-widget {
    min-width: 0;
    height: 100%;
  }

  .final-cta-copy h2 {
    font-size: 48px;
    line-height: 52px;
  }

  .final-cta-copy > p {
    max-width: 420px;
    font-size: 17px;
    line-height: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body {
    transition-duration: .01ms !important;
  }

  .final-cta-link {
    animation: none;
    background-position: 50% 50%, 50% 50%;
  }
}

.site-footer {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 20px 72px 28px;
  color: rgba(249, 248, 244, .64);
  background: transparent;
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: -.1px;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .site-footer {
    padding: 18px 20px 24px;
    font-size: 12px;
  }
}
