@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src: url("../fonts/worksans-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src: url("../fonts/worksans-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfairdisplay-bolditalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

:root {
  --accent: #fb8f18;
  --ink: #2f2f2f;
  --paper: #f7f7f7;
  --dot: #dfdfdf;
  --charcoal: #303030;
  --viewport-width: 100vw;
  --nav-gutter: max(24px, calc((var(--viewport-width) - 1120px) / 2));
  --nav-content-width: calc(var(--viewport-width) - var(--nav-gutter) - var(--nav-gutter));
  --title-logo-align-offset: 8px;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #ffffff;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  color: #222222;
  font-family: "Montserrat", Arial, sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.nav-is-open {
  overflow: hidden;
}

button {
  font: inherit;
}

img {
  max-width: 100%;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

button,
a {
  transition: opacity 180ms ease, transform 180ms ease, filter 180ms ease;
}

button:hover,
a:hover {
  opacity: 0.9;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  html.custom-cursor-active,
  html.custom-cursor-active * {
    cursor: none !important;
  }

  .custom-cursor {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 18px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--accent);
    pointer-events: none;
    opacity: 0;
    transform: translate3d(-50%, -50%, 0);
    transition: opacity 160ms ease, width 180ms ease, background-color 180ms ease;
    will-change: transform;
  }

  .custom-cursor.is-visible {
    opacity: 1;
  }

  .custom-cursor.is-interactive {
    width: 24px;
  }

  .custom-cursor.is-light {
    background: #ffffff;
  }
}

.section-inner {
  position: relative;
  z-index: 2;
  width: min(78vw, 1200px);
  margin: 0 auto;
}



.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 58px;
  margin: 0;
  padding: 0 var(--nav-gutter);
  background: #ffffff;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  width: 178px;
}

.brand-link img {
  display: block;
  width: 100%;
  height: auto;
}

.menu-button {
  position: relative;
  z-index: 7;
  display: inline-grid;
  grid-template-columns: repeat(3, 5px);
  gap: 3px;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #222222;
}

.menu-button.is-active {
  grid-template-columns: 28px;
  gap: 0;
}

.menu-button.is-active span {
  grid-column: 1;
  grid-row: 1;
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
}

.menu-button.is-active span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-button.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-active span:nth-child(3) {
  transform: rotate(-45deg);
}

.main-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 15;
  overflow: hidden;
  background: rgba(255, 244, 234, 0.72);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 360ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.main-nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.overlay-dot-field {
  display: none;
}

.main-nav {
  position: absolute;
  left: 50%;
  top: 52%;
  display: grid;
  place-items: center;
  width: min(560px, 72vw);
  aspect-ratio: 1;
  padding: 90px 0;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%) scale(0.82);
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.main-nav-overlay.is-open .main-nav {
  transform: translate(-50%, -50%) scale(1);
}

.main-nav a {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: clamp(30px, 3.25vw, 52px);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: lowercase;
}

.main-nav a:not(:last-child)::after {
  content: "";
  display: block;
  width: 96px;
  height: 2px;
  margin: 17px auto 0;
  background-image: radial-gradient(circle, #ffffff 0 1.5px, transparent 1.8px);
  background-size: 6px 2px;
  opacity: 0.9;
}

.hero-section {
  position: relative;
  height: calc(100vh - 58px);
  height: calc(100svh - 58px);
  min-height: 620px;
  overflow: hidden;
  background: #ffffff;
}

.hero-section::after {
  content: none;
}

.hero-dot-field {
  --hero-dot-w: 37.5px;
  --hero-dot-h: 31.5px;
  --hero-dot-r: 11px;
  --hero-dot-last-x: calc(100% - (var(--hero-dot-w) / 2));
  --hero-dot-last-y: calc(100% - (var(--hero-dot-h) / 2));
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: var(--nav-content-width);
  height: 188px;
  transform: translate(-50%, -50%);
  background-image: radial-gradient(circle, #e2e2e2 0 11px, transparent 11.5px);
  background-size: 37.5px 31.5px;
  background-position: top left;
}

@media (min-width: 1200px) and (min-height: 800px) {
  .hero-dot-field {
    --hero-dot-w: 34px;
    --hero-dot-h: 30px;
    --hero-dot-r: 12px;
    width: var(--nav-content-width);
    height: 300px;
    background-image: radial-gradient(circle, #e2e2e2 0 var(--hero-dot-r), transparent calc(var(--hero-dot-r) + 0.5px));
    background-size: var(--hero-dot-w) var(--hero-dot-h);
  }
}

.hero-dot-field::before,
.hero-dot-field::after {
  content: "";
  position: absolute;
  width: calc(var(--hero-dot-r) * 2);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
}

.hero-dot-field::before {
  left: calc(var(--hero-dot-w) / 2);
  top: calc(var(--hero-dot-h) / 2);
  transform: translate(-50%, -50%);
}

.hero-dot-field::after {
  left: var(--hero-dot-last-x);
  top: var(--hero-dot-last-y);
  transform: translate(-50%, -50%);
}

.hero-badge {
  position: absolute;
  z-index: 2;
  top: var(--hero-badge-y, 190px);
  left: var(--hero-badge-x, calc(50% - min(36.75vw, 548px) + 78px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 170px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-size: clamp(19px, 1.42vw, 24px);
  font-weight: 500;
  line-height: 0.9;
  text-align: center;
  box-shadow: 0 8px 22px rgba(247, 141, 29, 0.34);
  transform: translate(-50%, -50%) scale(var(--hero-badge-scale, 1));
  transform-origin: center;
  transition: transform 980ms cubic-bezier(0.19, 1, 0.22, 1),
    opacity 220ms ease,
    box-shadow 980ms cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.hero-badge.is-collapsed {
  --hero-badge-scale: 0.16;
  box-shadow: 0 0 12px rgba(247, 141, 29, 0.45);
}

.hero-badge.is-expanded {
  --hero-badge-scale: 1;
  box-shadow: 0 12px 28px rgba(247, 141, 29, 0.34);
}

.hero-badge.is-relocating {
  opacity: 0;
  transition-duration: 0ms;
}

.hero-badge span,
.hero-badge strong {
  display: block;
  max-width: 82%;
  white-space: nowrap;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 300ms ease 280ms, transform 360ms cubic-bezier(0.19, 1, 0.22, 1) 280ms;
}

.hero-badge b {
  font-weight: 700;
}

.hero-badge strong {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

.hero-badge strong:last-child {
  font-weight: 700;
}

.hero-badge.hero-message-obsessed {
  font-size: clamp(20px, 1.5vw, 25px);
  line-height: 0.86;
}

.hero-badge.hero-message-obsessed span {
  max-width: 82%;
}

.hero-badge.hero-message-obsessed strong {
  max-width: 88%;
  margin-top: 3px;
  font-size: 0.68em;
  line-height: 0.92;
  white-space: nowrap;
  overflow-wrap: normal;
}

.hero-badge.is-collapsed span,
.hero-badge.is-collapsed strong {
  opacity: 0;
  transform: translateY(6px);
}

.hero-badge strong {
  font-size: 1.02em;
  line-height: 0.84;
}

.orange-orb {
  position: absolute;
  z-index: 1;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(9px);
  box-shadow: 0 0 30px rgba(251, 143, 24, 0.62);
  will-change: transform;
}

.hero-physics-orb {
  top: 0;
  left: 0;
  animation: none;
  transform: translate3d(var(--orb-x, 0px), var(--orb-y, 0px), 0) scale(var(--orb-scale, 1));
}

.hero-physics-orb.hero-orb-large,
.hero-physics-orb.orange-orb-top {
  top: 0;
  left: 0;
}

.hero-orb-large {
  left: 26%;
  top: clamp(345px, 60svh, 470px);
  z-index: 0;
  width: 170px;
  aspect-ratio: 1;
  filter: blur(14px);
  opacity: 0.94;
  box-shadow: 0 0 42px rgba(251, 143, 24, 0.62);
}

.orange-orb-top {
  top: clamp(70px, 15svh, 120px);
  left: 54%;
  width: 76px;
  aspect-ratio: 1;
}

.orange-orb-right {
  position: fixed;
  top: 50%;
  right: -17px;
  width: 35px;
  aspect-ratio: 1;
  z-index: 30;
  filter: none;
  cursor: pointer;
  animation: none;
  will-change: auto;
  transform: translateY(-50%);
}

.orange-orb-right::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
  opacity: 0;
  transition: opacity 180ms ease;
}

.orange-orb-right:hover::before,
.orange-orb-right.is-active::before {
  opacity: 1;
}

.hero-social-menu {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 29;
  display: grid;
  justify-items: center;
  width: 45px;
  padding: 14px 0;
  border-radius: 24px 0 0 24px;
  background: var(--accent);
  box-shadow: 0 18px 40px rgba(251, 143, 24, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(100%, -50%, 0);
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1), opacity 220ms ease;
}

.hero-social-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, -50%, 0);
}

.hero-social-menu a {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 34px;
}

.hero-social-menu a + a::before {
  content: "";
  position: absolute;
  top: 0;
  width: 22px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
}

.hero-social-menu img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.story-section {
  position: relative;
  height: 250px;
  min-height: 250px;
  overflow: hidden;

  background-color: #252525;
  background-image: linear-gradient(rgba(37, 37, 37, 0.88), rgba(37, 37, 37, 0.88)), url("../img/BG.png");
  background-position: center;
  background-size: cover;
}

.story-section > .section-inner {
  position: relative;
  top: auto;
  height: 100%;
  min-height: 0;
  padding-bottom: 0;
}

.story-section::before {
  content: "";
  position: absolute;
  inset: 0;
   z-index: 0;
  opacity: 0.28;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.28) 0 1px, transparent 1.4px);
  background-size: 9px 9px;

}

.stats-row {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
  justify-content: space-between;
  width: 100%;
  gap: 67px;
  padding-top: 0;
  opacity: var(--stats-strip-opacity, 0);
  transform: translate3d(0, calc(-50% + var(--stats-strip-y, 150px)), 0);
  will-change: transform, opacity;
}

.stat-item {
  display: flex;
  align-items: flex-start;
  color: #ffffff;
}

.stat-number-wrap {
  display: flex;
  align-items: flex-start;
  min-width: max-content;
  line-height: 0.8;
}

.stat-number {
  display: inline-block;
  font-size: clamp(38px, 3.95vw, 62px);
  font-weight: 500;
  letter-spacing: 0;
  text-align: right;
}

.stat-number[data-count-to="11"] {
  width: 1.06em;
}

.stat-number[data-count-to="300"],
.stat-number[data-count-to="700"],
.stat-number[data-count-to="100"] {
  width: 1.95em;
}

.stat-number[data-count-to="1"] {
  width: 0.45em;
}

.stat-mark {
  margin-top: 0;
  margin-left: 2px;
  font-size: clamp(11px, 1.1vw, 16px);
  font-weight: 500;
  line-height: 1;
}

.stat-item p {
  padding: 0;
  color: #eeeeee;
  font-size: clamp(7px, 0.7vw, 10px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0.55px;
  white-space: nowrap;
  margin: 0;
  margin-left: 6px;
}

.stat-item .last-stat{
  margin-top:18px;
}


.quote-art {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: block;
  width: min(720px, 58vw);
  margin: 0;
  color: #f3f3f3;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 2.2vw, 38px);
  font-style: italic;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
  text-align: center;

  transform: translate3d(
    -50%,
    calc(-50% + var(--quote-parallax-y, 0px)),
    0
  ) scale(var(--quote-parallax-scale, 1));

  opacity: var(--quote-parallax-opacity, 1);
  will-change: transform, opacity;
}

.quote-art-mark {
  display: block;
  width: clamp(68px, 7vw, 112px);
  height: auto;
  margin: 0 auto clamp(8px, 1.1vw, 16px);
  transform: scaleX(-1);
}

.quote-art-copy {
  margin: 0;
}

.quote-art-copy span {
  display: block;
}

.quote-art-copy-accent {
  color: var(--accent);
  margin-top: 2px;
}

.story-orb {
 position: absolute;
  display: block;
  z-index: 1;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(3px);
  box-shadow: 0 0 14px rgba(251, 143, 24, 0.75);
  pointer-events: none;
}

.story-physics-orb {
  top: 0;
  left: 0;
  animation: none;
  transform: translate3d(var(--story-orb-x, 0px), var(--story-orb-y, 0px), 0)
    scale(var(--story-orb-scale, 1));
  will-change: transform;
}

.story-physics-orb.story-orb-right,
.story-physics-orb.story-orb-left {
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
}


.story-orb-right {
  top: clamp(180px, 34vh, 300px);
  right: -4px;
  width: 95px;
  aspect-ratio: 1;
}

.story-orb-left {
  bottom: clamp(46px, 9vh, 100px);
  left: calc(50% - min(36.75vw, 560px) - 34px);
  width: 48px;
  aspect-ratio: 1;
}

@media (min-width: 1200px) and (min-height: 800px) {
  .story-section {
    height: 250px;
    min-height: 250px;
  }

  .story-section > .section-inner {
    display: block;
  }

  .quote-art {
    width: min(760px, 58vw);
  }
}

.expertise-section {
  position: relative;
  height: max(4200px, 650vh);
  background: #f7f7f7;
}

.expertise-sticky {
  position: sticky;
  top: 58px;
  height: calc(100vh - 58px);
  min-height: 560px;
  overflow: hidden;
  background: #f7f7f7;
}

.expertise-bg-dots {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: radial-gradient(circle, #dfdfdf 0 2px, transparent 2.5px);
  background-size: 14px 14px;
}

.expertise-track {
  position: relative;
  z-index: 1;
  display: flex;
  width: 600%;
  height: 100%;
  transform: translate3d(var(--expertise-x, 0%), 0, 0);
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.expertise-slide {
   position: relative;
  flex: 0 0 16.6667%;
  height: calc(100vh - 58px);
  min-height: 550px;
  overflow: hidden;
}

.expertise-slide:nth-child(even) {
  background: #eeeeee;
}

.expertise-slide:nth-child(odd) {
  background: transparent;
}

.expertise-inner {
 height: calc(100vh - 58px);
  min-height: 550px;
  padding-top: 34px;
}

.expertise-title {
  margin: 0;
  color: var(--accent);
  font-size: clamp(38px, 3vw, 54px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.expertise-stage {
  position: relative;
  height: calc(max(550px, 100vh) - 92px);
}

.expertise-copy {
  color: #2f2f2f;
}

.expertise-copy-main {
  position: absolute;
  top: 33%;
  left: 0;
  width: 410px;
}

.expertise-circle {
  position: absolute;
  top: 15%; /* Shifted up slightly to balance the larger size */
  left: 58%;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  width: clamp(380px, 28vw, 480px); /* Increased the width of the circle */
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ink);
  transform: translateX(-50%);
  padding-left:92px;
}

.expertise-deep-button {
  position: absolute;
  top: calc(12% + min(22vw, 390px)); /* Adjusted to attach to the larger circle */
  left: calc(56% - min(12.5vw, 220px)); /* Adjusted to attach to the larger circle */
  width: clamp(85px, 6.5vw, 105px); /* Slightly larger button */
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-size: clamp(13px, 1vw, 17px);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(251, 143, 24, 0.22);
}

.expertise-next {
  position: absolute;
  top: 0;
  left: calc(50% + min(36.75vw, 560px) - 86px);
  display: block;
  right: 0;
  height: 100%;
  overflow: hidden;
  background: rgba(224, 224, 224, 0.88);
}

.expertise-slide:nth-child(even) .expertise-next {
  background-color: #f7f7f7;
  background-image: radial-gradient(circle, #dfdfdf 0 2px, transparent 2.5px);
  background-size: 14px 14px;
}

.expertise-slide:last-child .expertise-next {
  display: none;
}

.expertise-slide:last-child .expertise-copy-main {
  left: 10%;
}

.expertise-slide:last-child .expertise-circle {
  left: 62%;
}

.expertise-slide:last-child .expertise-deep-button {
  left: calc(62% - min(9.8vw, 178px));
}

.expertise-copy-preview {
  position: absolute;
  top: calc(33% + 64px);
  left: 44px;
  width: 460px;
}

.expertise-next-button {
  position: absolute;
  right: 34px;
  bottom: 24px;
  width: 34px;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-size: 0;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(251, 143, 24, 0.22);
}

.expertise-next-button::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.expertise-next-button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  transform: translate(-50%, -34%) rotate(45deg);
}

.expertise-copy p {
  margin: 0 0 12px; /* Added a bit more space below the paragraph */
  color: #555555;
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 3px;
}

.expertise-copy h3 {
  margin: 0;
  color: #303030;
  font-size: clamp(60px, 5.5vw, 60px); /* Increased font size */
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -1.5px; /* Tightens the letters for that premium bold look */
}

.expertise-copy h3 span,
.expertise-circle span {
  color: var(--accent);
}

.expertise-circle ul {
 width: clamp(240px, 18vw, 320px); /* Wider container for the text */
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-size: clamp(14px, 1vw, 18px); /* Slightly larger text */
  font-weight: 700;
  line-height: 1.9; /* Increases the vertical space between list items */
  letter-spacing: 0.3px;
  list-style: none;
}

.work-section {
  background: #ffffff;
  padding: 16px 0 0;
}

.work-inner {
  width: 100%;
}

.work-title {
  width: min(73.5vw, 1120px);
  margin: 0 auto 22px;
  color: var(--accent);
  font-size: clamp(38px, 3vw, 54px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.work-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: clamp(270px, 33vw, 380px);
  gap: 0;
  width: 100%;
  background: #1f1f1f;
}

.work-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #242424;
}

.work-card-wide {
  grid-column: span 3;
}

.work-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 300ms ease, transform 500ms ease;
}

.work-image-color {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.work-card:nth-child(1) img,
.work-card:nth-child(5) img {
  object-position: 50% 44%;
}

.work-card:nth-child(2) img,
.work-card:nth-child(6) img {
  object-position: center;
}

.work-card:nth-child(3) img,
.work-card:nth-child(8) img {
  object-position: 48% 52%;
}

.work-card:nth-child(4) img,
.work-card:nth-child(7) img {
  object-position: 44% 50%;
}

.work-card:hover .work-image-color,
.work-card:focus-within .work-image-color {
  opacity: 1;
}

.work-card:hover img,
.work-card:focus-within img {
  transform: scale(1.04);
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 36%, rgba(0, 0, 0, 0.68) 100%);
  pointer-events: none;
}

.work-card-copy {
  position: absolute;
  z-index: 1;
  left: 24px;
  bottom: 16px;
  color: #ffffff;
}

.work-card-copy:empty {
  display: none;
}

.work-card-copy h3 {
  margin: 0;
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.work-card-copy p {
  margin: 2px 0 0;
  font-size: clamp(9px, 0.76vw, 11px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.2px;
}

.work-next-button {
  position: absolute;
  right: 30px;
  top: 50%;
  z-index: 2;
  width: 34px;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 8px 18px rgba(251, 143, 24, 0.24);
}

.work-next-button::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.work-next-button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  transform: translate(-62%, -50%) rotate(135deg);
}

.testimonials-section {
  --testimonial-arc-size: min(620px, 56vw);
  --testimonial-arc-visible-size: min(422px, 38.08vw);
  position: relative;
  height: calc(20px + 26px + 62px + var(--testimonial-arc-visible-size));
  min-height: 0;
  overflow: hidden;
  background: #f7f7f7;
}

.testimonials-section.testimonial-animate-ready .testimonials-title,
.testimonials-section.testimonial-animate-ready .testimonial-arc,
.testimonials-section.testimonial-animate-ready .testimonial-main,
.testimonials-section.testimonial-animate-ready .testimonial-face,
.testimonials-section.testimonial-animate-ready .testimonial-orb {
  opacity: 0;
  transform: translateY(18px);
}

.testimonials-section.testimonial-animate-ready .testimonial-arc {
  transform: translateX(-50%) scale(0.96);
}

.testimonials-section.testimonial-animate-ready .testimonial-main {
  transform: translateX(-50%) translateY(18px);
}

.testimonials-section.testimonial-animate-ready .testimonial-face-center-bottom {
  transform: translateX(-50%) translateY(18px);
}

.testimonials-section.is-visible .testimonials-title,
.testimonials-section.is-visible .testimonial-face,
.testimonials-section.is-visible .testimonial-orb {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonials-section.is-visible .testimonial-main {
  opacity: 1;
  transform: translateX(-50%);
  transition: opacity 520ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonials-section.is-visible .testimonial-face-center-bottom {
  opacity: 1;
  transform: translateX(-50%);
  transition: opacity 520ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonials-section.is-visible .testimonial-arc {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  transition: opacity 620ms ease, transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonials-section.is-visible .testimonial-main {
  transition-delay: 120ms;
}

.testimonials-section.is-visible .testimonial-face:nth-of-type(1) {
  transition-delay: 170ms;
}

.testimonials-section.is-visible .testimonial-face:nth-of-type(2) {
  transition-delay: 220ms;
}

.testimonials-section.is-visible .testimonial-face:nth-of-type(3) {
  transition-delay: 270ms;
}

.testimonials-section.is-visible .testimonial-face:nth-of-type(4) {
  transition-delay: 320ms;
}

.testimonials-section.is-visible .testimonial-face:nth-of-type(5) {
  transition-delay: 370ms;
}

.testimonials-dots {
 position: absolute;
  inset: 0;
  opacity: 0.42; /* Controls how faint the dots are */
  background-image: radial-gradient(circle, #dfdfdf 0 2px, transparent 2.5px); /* Draws the dots */
  background-size: 14px 14px; /* Controls the spacing between dots */
  z-index: 0;
}

.testimonials-inner {
  position: relative;
  z-index: 1;
  width: min(73.5vw, 1120px);
  height: 100%;
  min-height: 0;
  padding-top: 20px;
}

.testimonials-title {
  margin: 0;
  color: #fb8f18;
  font-size: clamp(38px, 3vw, 54px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.testimonial-stage {
  position: relative;
  height: calc(100% - 34px);
  min-height: 0;
}

.testimonial-arc {
  position: absolute;
  left: 50%;
  top: 62px;
  width: var(--testimonial-arc-size);
  aspect-ratio: 1;
  border: 2px solid rgba(251, 143, 24, 0.28);
  border-radius: 50%;
  -webkit-clip-path: inset(0 0 32% 0);
  clip-path: inset(0 0 32% 0);
  transform: translateX(-50%);
}

.testimonial-main {
  position: absolute;
  top: 2px;
  left: 50%;
  width: min(430px, 42vw);
  margin: 0;
  text-align: center;
  transform: translateX(-50%);
  will-change: opacity, transform;
  transition: opacity 360ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-main.is-changing {
  opacity: 0;
  transform: translateX(-50%) translateY(14px) scale(0.975);
}

.testimonials-section.is-visible .testimonial-main.is-changing {
  opacity: 0;
  transform: translateX(-50%) translateY(14px) scale(0.975);
  transition-delay: 0ms;
}

.testimonial-avatar {
  background: transparent;
}

.testimonial-avatar img,
.testimonial-face img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.testimonials-section.is-visible .testimonial-avatar-main img,
.testimonials-section.is-visible .testimonial-face img {
  animation: testimonial-photo-float 4.8s ease-in-out infinite;
}

.testimonials-section.is-visible .testimonial-face-left-top img {
  animation-delay: -0.7s;
}

.testimonials-section.is-visible .testimonial-face-right-top img {
  animation-delay: -1.3s;
}

.testimonials-section.is-visible .testimonial-face-left-bottom img {
  animation-delay: -2s;
}

.testimonials-section.is-visible .testimonial-face-center-bottom img {
  animation-delay: -2.6s;
}

.testimonials-section.is-visible .testimonial-face-right-bottom img {
  animation-delay: -3.2s;
}

@keyframes testimonial-photo-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

.testimonial-avatar-main {
  width: 102px;
  height: auto;
  margin: 0 auto 8px;
}

.testimonial-mark {
  display: block;
  height: 20px;
  color: #fb8f18;
  font-size: 35px;
  font-weight: 700;
  line-height: 0.72;
  position: relative;
}
.testimonial-mark img{
  width: 50px;
  position: absolute;
  top:-30px;
  left: 130px;
}
.testimonial-main h3 {
  margin: 0;
  color: #2f2f2f;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.testimonial-role {
  margin: 1px 0 8px;
  color: #fb8f18;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.testimonial-copy {
  margin: 0 auto;
  max-width: 400px;
  color: #6a6a6a;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.55;
}

.testimonial-face {
  position: absolute;
  z-index: 1;
  width: 78px;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  will-change: opacity, transform, filter;
  transition: opacity 300ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1), filter 320ms ease;
}

.testimonial-face:hover,
.testimonial-face.is-active {
  opacity: 1;
  filter: drop-shadow(0 10px 14px rgba(251, 143, 24, 0.22));
  transform: translateY(-4px) scale(1.04);
}

.testimonials-section.is-visible .testimonial-face:hover,
.testimonials-section.is-visible .testimonial-face.is-active {
  filter: drop-shadow(0 10px 14px rgba(251, 143, 24, 0.22));
  transform: translateY(-4px) scale(1.04);
  transition-delay: 0ms;
}

.testimonial-face.is-swapping {
  opacity: 0;
  transform: translateY(8px) scale(0.9);
  filter: blur(1px);
  pointer-events: none;
}

.testimonials-section.is-visible .testimonial-face.is-swapping {
  opacity: 0;
  transform: translateY(8px) scale(0.9);
  transition-delay: 0ms;
}

.testimonial-face-left-top {
  top: 76px;
  left: 20.5%;
}

.testimonial-face-right-top {
  top: 78px;
  right: 18.5%;
}

.testimonial-face-left-bottom {
  top: 325px;
  left: 21%;
}

.testimonial-face-center-bottom {
  top: 349px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-face-center-bottom:hover,
.testimonial-face-center-bottom.is-active {
  transform: translateX(-50%) translateY(-4px) scale(1.04);
}

.testimonials-section.is-visible .testimonial-face-center-bottom:hover,
.testimonials-section.is-visible .testimonial-face-center-bottom.is-active {
  transform: translateX(-50%) translateY(-4px) scale(1.04);
}

.testimonial-face-center-bottom.is-swapping,
.testimonials-section.is-visible .testimonial-face-center-bottom.is-swapping {
  opacity: 0;
  transform: translateX(-50%) translateY(8px) scale(0.9);
}

.testimonial-face-right-bottom {
  top: 334px;
  right: 19.5%;
}

.testimonial-orb {
  position: absolute;
  z-index: 1;
  display: block;
  border-radius: 50%;
  background: #fb8f18;
  filter: blur(3px);
  box-shadow: 0 0 14px rgba(251, 143, 24, 0.7);
  will-change: transform;
}

.testimonial-orb-top {
  top: 18px;
  right: 20%;
  width: 50px;
  aspect-ratio: 1;
}

.testimonial-orb-center {
  top: 178px;
  left: 25%;
  width: 34px;
  aspect-ratio: 1;
}

.testimonial-physics-orb {
  top: 0;
  left: 0;
  right: auto;
  animation: none;
  transform: translate3d(var(--testimonial-orb-x, 0px), var(--testimonial-orb-y, 0px), 0)
    scale(var(--testimonial-orb-scale, 1));
}

.testimonials-section.testimonial-animate-ready .testimonial-physics-orb,
.testimonials-section.is-visible .testimonial-physics-orb {
  transform: translate3d(var(--testimonial-orb-x, 0px), var(--testimonial-orb-y, 0px), 0)
    scale(var(--testimonial-orb-scale, 1));
}

.testimonials-section.is-visible .testimonial-physics-orb {
  transition: opacity 520ms ease;
}

.testimonial-up-button {
  position: fixed;
  right: 56px;
  bottom: var(--up-button-bottom, 26px);
  z-index: 30;
  display: grid;
  place-items: center;
  width: 40px;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: #fb8f18;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-100vh + var(--up-button-bottom, 26px) - 80px)) scale(0.9);
  overflow: visible;
  box-shadow: 0 12px 24px rgba(251, 143, 24, 0.28);
  transition:
    bottom 260ms ease,
    opacity 520ms ease,
    transform 860ms cubic-bezier(0.18, 0.86, 0.24, 1);
  will-change: bottom, transform, opacity;
}

.testimonial-up-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.testimonial-up-button .fa-solid {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: 23px;
  line-height: 1;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.testimonial-up-button.is-visible .fa-solid {
  animation: up-button-arrow-float 1.8s cubic-bezier(0.45, 0, 0.25, 1) infinite;
}

.testimonial-up-button::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(251, 143, 24, 0.38);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center center;
  pointer-events: none;
}

.testimonial-up-button.is-visible::before {
  animation: up-button-halo 2.3s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes up-button-halo {
  0% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.82);
  }

  16% {
    opacity: 0.48;
  }

  72% {
    opacity: 0.18;
  }

  100% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(2);
  }
}

@keyframes up-button-arrow-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -3px, 0);
  }
}

.brands-section {
  background: #303030;
  padding: 34px 0 48px;
}

.brands-inner {
  --brand-columns: 7;
  --brand-gap-x: 0px;
  --brand-gap-y: 34px;
  --brand-column-width: calc((100% - 112px) / 5);
  text-align: center;
}

.brands-title {
  margin: 0 0 34px;
  color: #ffffff;
  font-size: clamp(38px, 3vw, 54px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: lowercase;
}
.brands-title span{
color:#fb8f18;
}

.brands-carousel {
  position: relative;
  padding: 0;
}

.brands-viewport {
  overflow: hidden;
}

.brands-grid {
  display: grid;
  gap: var(--brand-gap-y);
}

.brands-marquee-row {
  overflow: hidden;
}

.brands-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  animation: brands-marquee-left 64s linear infinite;
}

.brands-marquee-row-bottom .brands-marquee-track {
  animation-name: brands-marquee-right;
}

.brands-section:hover .brands-marquee-track,
.brands-section:focus-within .brands-marquee-track {
  animation-play-state: paused;
}

.brands-marquee-group {
  display: flex;
  flex: 0 0 auto;
  gap: var(--brand-gap-x);
  align-items: center;
  padding-right: var(--brand-gap-x);
}

@keyframes brands-marquee-left {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes brands-marquee-right {
  from {
    transform: translate3d(-50%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.brand-logo {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  padding: 0 8px;
  opacity: 1;
}

.brand-logo img {
  display: block;
  width: auto;
  
  height: 100px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.75) contrast(1.05);
  opacity: 0.94;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.brand-logo:hover img {
  filter: grayscale(0) brightness(1.3) contrast(1.02);
  opacity: 1;
  transform: translateY(-1px);
}

.brands-arrow {
  display: none;
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 28px;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transform: translateY(-50%);
}

.brands-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(255, 255, 255, 0.86);
  border-left: 2px solid rgba(255, 255, 255, 0.86);
}

.brands-arrow-prev {
  left: 0;
}

.brands-arrow-prev::after {
  transform: translate(-35%, -50%) rotate(-45deg);
}

.brands-arrow-next {
  right: 0;
}

.brands-arrow-next::after {
  transform: translate(-65%, -50%) rotate(135deg);
}

.brands-arrow:disabled {
  cursor: default;
  opacity: 0.28;
}

.start-section {
  position: relative;
  overflow: hidden;
  background: #f7f7f7;
  padding: 42px 0 40px;
}

.start-dots {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image: radial-gradient(circle, #dfdfdf 0 2px, transparent 2.5px);
  background-size: 14px 14px;
}

.start-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: min(9vw, 135px);
  align-items: start;
  width: var(--nav-content-width);
}

.start-section .start-copy {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: calc((42px * 4) + (9px * 4) + 176px);
}

.start-copy h2 {
  margin: 0 0 38px;
  color: #fb8f18;
  font-size: clamp(38px, 3vw, 54px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.expertise-title,
.work-title {
  margin-left: calc(var(--nav-gutter) - ((var(--viewport-width) - 100%) / 2));
  margin-right: 0;
}


.expertise-title,
.work-title,
.testimonials-title,
.brands-title{
  width: var(--nav-content-width);
  margin-left: calc(var(--nav-gutter) - ((var(--viewport-width) - 100%) / 2));
  margin-right: 0;
  text-align: left;
}

.brands-title{
  text-align: center;
}

.start-section .contact-list {
  display: grid;
  align-self: end;
}

.contact-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  color: #333333;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.contact-list li:first-child {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.contact-list a {
  color: inherit;
  text-decoration: none;
  padding-left:10px;
}

.contact-list address {
  max-width: 420px;
  margin: 0;
  font-style: normal;
  padding-left:10px;
}

.contact-icon {
  display: inline-grid;
  align-items: center;
  justify-content: center;
  width: 24px;
  aspect-ratio: 1;
  background: transparent;
  margin-top: 1px;
}

.contact-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-form {
  display: grid;
  gap: 9px;
  padding-top: 2px;
}

.contact-form label {
  position: relative;
  display: block;
}

.contact-form label > span:not(.contact-dropdown-text) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.contact-form input:not([type="hidden"]),
.contact-form textarea,
.contact-form select,
.contact-dropdown-toggle {
  display: block;
  width: 100%;
  border: 1px solid transparent;
  background: #e6e6e6;
  color: #303030;
  font: inherit;
  font-size: 14px;
  border-radius: 0;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.contact-form input:not([type="hidden"]):focus,
.contact-form textarea:focus,
.contact-form select:focus,
.contact-dropdown-toggle:focus {
  background: #eeeeee;
  border-color: rgba(251, 143, 24, 0.5);
}

.contact-form input:not([type="hidden"]),
.contact-form select,
.contact-dropdown-toggle {
  height: 42px;
  padding: 0 20px;
}

.contact-dropdown-toggle {
  position: relative;
  color: #999999;
  text-align: left;
  cursor: pointer;
}

.contact-select-label.is-open {
  z-index: 8;
}

.contact-form select {
  appearance: none;
  padding-right: 62px;
  color: #999999;
}

.contact-dropdown-icon {
  position: absolute;
  top: 50%;
  right: 12px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #888888;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  transform: translateY(-50%);
  pointer-events: none;
}

.contact-select-label.is-open .contact-dropdown-icon {
  transform: translateY(-50%) rotate(180deg);
}

.contact-dropdown-menu {
  position: absolute;
  top: 42px;
  left: 0;
  z-index: 6;
  display: none;
  width: 100%;
  margin: 0;
  padding: 13px 0 9px;
  list-style: none;
  background: #e6e6e6;
  box-shadow: 6px 0 0 #eeeeee;
}

.contact-select-label.is-open .contact-dropdown-menu {
  display: block;
}

.contact-dropdown-menu li {
  display: grid;
  justify-items: center;
}

.contact-dropdown-menu li + li::before {
  content: "";
  display: block;
  width: 78%;
  height: 1px;
  margin: 0 0 8px;
  background-image: repeating-linear-gradient(90deg, #8f8f8f 0 1px, transparent 1px 3px);
  opacity: 0.8;
}

.contact-dropdown-menu button {
  width: 100%;
  margin: 0;
  padding: 0 8px 9px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #999999;
  font: inherit;
  font-size: 18px;
  line-height: 1.05;
  text-align: center;
  cursor: pointer;
}

.contact-dropdown-menu button:hover,
.contact-dropdown-menu button:focus {
  color: #303030;
}

.contact-form textarea {
  min-height: 176px;
  resize: vertical;
  padding: 13px 20px;
}

.contact-form input:not([type="hidden"])::placeholder,
.contact-form textarea::placeholder {
  color: #999999;
  opacity: 1;
}

.contact-form > button[type="submit"] {
  justify-self: end;
  margin-top: 10px;
  padding: 8px 22px;
  border: 0;
  border-radius: 999px;
  background: #fb8f18;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: lowercase;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(251, 143, 24, 0.2);
}

.contact-form > button[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.72;
}

.contact-form .is-invalid {
  border-color: rgba(220, 62, 46, 0.72);
  background: #f1e1df;
}

.contact-select-label.is-invalid .contact-dropdown-toggle {
  border-color: rgba(220, 62, 46, 0.72);
  background: #f1e1df;
}

.contact-form-status {
  grid-column: 1 / -1;
  min-height: 18px;
  margin: 2px 0 0;
  color: #606060;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  text-align: right;
}

.contact-form-status.is-error {
  color: #b7392f;
}

.contact-form-status.is-success {
  color: #288246;
}

.start-up-button {
  display: none;
  position: absolute;
  right: 42px;
  bottom: 22px;
  z-index: 2;
  width: 42px;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: #fb8f18;
  cursor: pointer;
}

.start-up-button::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.start-up-button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 11px;
  border-top: 4px solid #ffffff;
  border-left: 4px solid #ffffff;
  transform: translate(-50%, -34%) rotate(45deg);
}

.site-footer {
  position: relative;
  background: var(--charcoal);
  padding: 42px 0 46px;
  overflow: hidden;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr minmax(280px, auto);
  grid-template-rows: 1fr auto auto auto;
  column-gap: 72px;
  row-gap: 4px;
  align-items: end;
  min-height: 214px;
  width: var(--nav-content-width);
}

.footer-nav {
  display: grid;
  grid-column: 1;
  grid-row: 1 / -1;
  align-self: start;
  gap: 10px;
  justify-items: start;
}

.footer-nav span{
  color: #fb8f18;
}

.footer-nav a {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.footer-nav a::after {
  content: "";
  display: block;
  width: 29px;
  height: 1px;
  margin-top: 8px;
  background-image: repeating-linear-gradient(90deg, #ffffff 0 1px, transparent 1px 3px);
  opacity: 0.9;
}

.footer-nav a:last-child::after {
  display: none;
}

.footer-nav a::first-letter {
  text-transform: lowercase;
}

.footer-up-button {
  position: absolute;
  top: -28px;
  right: 7%;
  z-index: 2;
  width: 62px;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: #fb8f18;
  box-shadow: 0 0 0 10px rgba(251, 143, 24, 0.22);
  cursor: pointer;
}

.footer-up-button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 55%;
  width: 14px;
  height: 14px;
  border-top: 5px solid #ffffff;
  border-left: 5px solid #ffffff;
  transform: translate(-50%, -50%) rotate(45deg);
}

.footer-social {
  display: flex;
  grid-column: 2;
  grid-row: 4;
  align-items: center;
  justify-content: end;
  color: #ffffff;
  margin-top: 18px;
  gap: 0;
}

.footer-social a {
  width: 34px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  opacity: 0.94;
  transition: background-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
  transform: translateY(-1px);
}

.footer-social .facebook_footer_class{
  width: 26px;
}

.footer-social img {
  display: block;
  width: auto;
  max-width: 20px;
  object-fit: contain;
}

.footer-divider {
  width: 1px;
  height: 16px;
  margin: 0 7px;
  background: #ffffff;
  opacity: 0.55;
  flex: 0 0 1px;
}

.icon-location {
  height: 18px;
}

.icon-call {
  height: 18px;
}

.icon-mail {
  height: 13px;
}

.icon-whatsapp {
  height: 18px;
}

.icon-facebook {
  height: 18px;
}

.icon-instagram {
  height: 18px;
}

.icon-linkedin {
  height: 16px;
}

.footer-copy {
  grid-column: 2;
  margin: 0;
  color:#ffffff;
  font-size: 8px;
  font-weight: 500;
  text-align: right;
}

.footer-nav + .footer-copy {
  grid-row: 2;
  align-self: end;
}

.footer-nav + .footer-copy + .footer-copy {
  grid-row: 3;
  align-self: start;
  color: #ffffff;

  justify-self: end;
  padding: 0 3px;
  line-height: 1.25;
}

/* Our Story page */
.story-page {
  --story-page-width:calc(var(--viewport-width) - var(--nav-gutter) - var(--nav-gutter));;
  background: #ffffff;
  color: #303030;
  font-family: "Work Sans", "Montserrat", Arial, sans-serif;
}

/* Our Expertise detail page */
.expertise-page {
  background: #f7f7f7;
  color: #303030;
  font-family: "Montserrat", Arial, sans-serif;
}

.expertise-detail-body {
  --expertise-width: var(--nav-content-width);
}

.expertise-detail-hero {
  position: relative;
  overflow: visible;
  min-height: clamp(760px, 86vh, 900px);
  background: #f7f7f7 url("../img/BG.png") center top / cover no-repeat;
  background-size: 115% auto;
}

.expertise-detail-inner {
  position: relative;
  z-index: 2;
  width: var(--expertise-width);
  margin: 0 auto;
}

.expertise-detail-heading {
  position: relative;
  min-height: 196px;
  padding-top: 27px;
}

.expertise-detail-heading h1 {
  margin: 0;
  color: var(--accent);
  font-size: clamp(34px, 3.5vw, 66px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.expertise-detail-nav {
  position: absolute;
  top: 35px;
  right: 0;
  display: grid;
  gap: 13px;
  justify-items: end;
  text-align: right;
}

.expertise-detail-nav a {
  color: #303030;
  font-size: clamp(13px, 1vw, 18px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
}

.expertise-detail-nav a.is-active,
.expertise-detail-nav a span {
  color: var(--accent);
}

.expertise-detail-intro {
  width: 100%;
  padding-top: 3px;
}

.expertise-kicker,
.expertise-detail-intro p,
.expertise-question p,
.strategy-work-item p {
  font-size: clamp(13px, 1.05vw, 18px);
  font-weight: 500;
  line-height: 1.62;
  letter-spacing: 0;
  text-align: justify;
}

.expertise-kicker {
  margin: 0 0 3px;
}

.expertise-detail-intro h2 {
  margin: 0 0 22px;
  color: #303030;
  font-size: clamp(44px, 4.6vw, 88px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.expertise-detail-intro h2 span,
.expertise-question strong,
.strategy-work h2 span,
.strategy-work-item h3 span {
  color: var(--accent);
}

.expertise-detail-intro p {
  margin: 0;
  text-align: justify;
  text-align-last: left;
}

.expertise-question {
  position: relative;
  display: block;
  width: min(48%, 500px);
  margin: clamp(56px, 6vw, 88px) 0% 62px auto;
  padding-top: 4px;
}

.expertise-question > div {
  display: block;
}

.expertise-question h2 {
  max-width: none;
  /* padding-right: clamp(82px, 8vw, 136px); */
  margin: 0 0 18px;
  color: #303030;
  font-size: clamp(32px, 2.1vw, 62px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
}

.expertise-question p {
  margin: 0;
}

.expertise-question strong {
  position: absolute;
  top: -42px;
  right: 0;
  font-size: clamp(104px, 8.5vw, 142px);
  font-weight: 700;
  line-height: 1;
}

.expertise-detail-orb {
  position: absolute;
  z-index: 4;
  display: block;
  width: clamp(130px, 16vw, 310px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(10px);
  box-shadow: 0 0 36px rgba(251, 143, 24, 0.72);
  pointer-events: none;
}

.expertise-detail-orb-right {
  top: 230px;
  right: -92px;
}

.expertise-detail-orb-left {
  left: -82px;
  bottom: -48px;
}

.strategy-work {
  position: relative;
  overflow: visible;
  min-height: 866px;
  padding: 58px 0 66px;
  background: #303030;
  color: #ffffff;
}

.strategy-work h2 {
  margin: 0 0 48px;
  color: #ffffff;
  font-size: clamp(31px, 3.15vw, 61px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
}

.strategy-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(72px, 12vw, 220px);
  row-gap: 48px;
  width: var(--nav-content-width);
}

.strategy-work-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
  align-items: start;
}

.strategy-work-item > span {
  width: 28px;
  aspect-ratio: 1;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.strategy-work-item h3 {
  margin: 0 0 9px;
  color: #ffffff;
  font-size: clamp(16px, 1.35vw, 24px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.strategy-work-item p {
  margin: 0;
  color: #ffffff;
  line-height: 1.55;
  letter-spacing: 0;
}

.strategy-work-orb {
  right: 10.5%;
  bottom: -120px;
  width: clamp(170px, 22vw, 405px);
}

.expertise-detail-up {
  position: absolute;
  right: 7%;
  bottom: 70px;
  z-index: 3;
  display: block;
  width: 35px;
  box-shadow: 0 0 0 8px rgba(251, 143, 24, 0.18);
}

.expertise-detail-up::before {
  inset: 7px;
}

.expertise-detail-up::after {
  width: 9px;
  height: 9px;
  border-width: 3px;
}

.expertise-page-bottom {
  height: 92px;
  background: #f7f7f7;
}

.expertise-start {
  position: relative;
  overflow: hidden;
  background: #f7f7f7;
}

.expertise-start .start-dots {
  opacity: 0.32;
  background-image: radial-gradient(circle, #dfdfdf 0 1.4px, transparent 1.9px);
  background-size: 14px 14px;
}

.expertise-map {
  position: relative;
  z-index: 1;
  height: clamp(260px, 30vw, 370px);
  overflow: hidden;
  background: #e9ecef;
}

.expertise-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.92) contrast(0.96);
}

.expertise-start-inner {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: min(8vw, 128px);
  align-items: start;
  padding: 34px 0 76px;
}

.expertise-start .start-copy h2 {
  margin-bottom: clamp(70px, 9vw, 120px);
  font-size: clamp(42px, 4vw, 72px);
}

.expertise-start .start-copy h2 span {
  color: var(--accent);
}

.expertise-start .contact-list {
  gap: 9px;
}

.expertise-start .contact-list li {
  grid-template-columns: 26px minmax(0, 1fr);
  font-size: clamp(13px, 1vw, 17px);
  line-height: 1.45;
}

.expertise-start .contact-list li:first-child {
  font-size: clamp(13px, 1vw, 17px);
  font-weight: 600;
}

.expertise-start .contact-icon {
  width: 20px;
}

.expertise-start .contact-form {
  gap: 8px;
  padding-top: 0;
}

.expertise-start .contact-form input:not([type="hidden"]) {
  height: 35px;
}

.expertise-start .contact-form textarea {
  min-height: 174px;
}

.expertise-start .contact-form input:not([type="hidden"]),
.expertise-start .contact-form textarea {
  background: #dfdfdf;
  font-size: clamp(13px, 1vw, 17px);
}

.expertise-start .contact-form > button[type="submit"] {
  margin-top: 6px;
  padding: 6px 19px;
  font-size: 10px;
}

.expertise-start-up {
  position: absolute;
  right: 7%;
  bottom: -17px;
  z-index: 4;
  display: block;
  width: 42px;
  box-shadow: 0 0 0 8px rgba(251, 143, 24, 0.18);
}

.expertise-footer {
  padding: 31px 0 24px;
}

.expertise-footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  min-height: 168px;
}

.expertise-footer .footer-nav {
  gap: 10px;
}

.expertise-footer .footer-nav a {
  font-size: clamp(14px, 1.1vw, 18px);
}

.expertise-footer .footer-nav a::after {
  width: 23px;
  margin-top: 6px;
}

.expertise-footer-meta {
  display: grid;
  gap: 18px;
  justify-items: end;
}

.expertise-footer .footer-copy {
  grid-column: auto;
  font-size: 7px;
  line-height: 1.35;
}

.expertise-footer .footer-social {
  display: flex;
  gap: 13px;
  align-items: center;
}

.expertise-footer .footer-social a {
  width: 17px;
  height: 17px;
}

@media (min-width: 1440px) {
  .expertise-detail-hero {
    min-height: clamp(840px, 82vh, 980px);
  }

  .strategy-work {
    min-height: clamp(840px, 82vh, 980px);
  }

  .strategy-work-grid {
    width: var(--nav-content-width);
  }

  .expertise-start-inner {
    padding-bottom: 96px;
  }
}

@media (max-width: 760px) {
  .expertise-detail-heading {
    min-height: 260px;
  }

  .expertise-detail-nav {
    top: 96px;
    left: 0;
    right: auto;
    justify-items: start;
    text-align: left;
  }

  .expertise-detail-intro {
    padding-top: 0;
  }

  .expertise-question {
    width: 100%;
    margin-left: 0;
  }

  .expertise-question strong {
    top: -35px;
    opacity: 0.24;
  }

  .strategy-work-grid {
    grid-template-columns: 1fr;
    row-gap: 34px;
    width: 100%;
  }

  .expertise-detail-orb-right {
    right: -105px;
  }

  .expertise-detail-orb-left {
    left: -108px;
  }

  .strategy-work-orb {
    right: -40px;
  }

  .expertise-start-inner,
  .expertise-footer-inner {
    grid-template-columns: 1fr;
  }

  .expertise-start .start-copy h2 {
    margin-bottom: 42px;
  }

  .expertise-footer-meta {
    justify-items: start;
  }
}

.story-page-inner {
  position: relative;
  z-index: 2;
  width: var(--story-page-width);
  margin-left: max(24px, calc((100vw - 1120px) / 2));
  margin-right: auto;
  transform: none;
}

.story-page-intro {
  position: relative;
  z-index: 2;
  overflow: visible;
  padding: 24px 0 96px;
  background: #f7f7f7;
}

.story-page-dots {
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 210px;
  opacity: 0.32;
  background-image: radial-gradient(circle, #dfdfdf 0 2px, transparent 2.5px);
  background-size: 14px 14px;
}

.story-page-orb {
  position: absolute;
  z-index: 1;
  display: block;
  border-radius: 50%;
  background: #fb8f18;
  filter: blur(10px);
  box-shadow: 0 0 34px rgba(251, 143, 24, 0.72);
}

.story-page-orb-top {
  top: -24px;
  right: 14%;
  width: 132px;
  aspect-ratio: 1;
}

.story-page-orb-left {
  top: 310px;
  left: 4%;
  width: 105px;
  aspect-ratio: 1;
}

.story-page-intro h1,
.story-page-team h2 {
  margin: 0;
  color: #fb8f18;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(28px, 2.35vw, 39px);
  font-weight: 700;
  line-height: 1;
  text-transform: lowercase;
}

.story-page-lede {
  display: grid;
  grid-template-columns: minmax(320px, 0.32fr) minmax(0, 1fr);
  gap: clamp(32px, 4.6vw, 70px);
  align-items: start;
  margin-top: clamp(42px, 5vw, 68px);
}

.story-page-lede h2 {
  margin: 0;
  color: #303030;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(31px, 4.7vw, 61px);
  font-weight: 700;
  line-height: 1.12;
  white-space: nowrap;
}

.story-page-lede span,
.story-page-founder-copy span {
  color: #fb8f18;
}

.story-page-lede .story-nowrap {
  color: inherit;
  white-space: nowrap;
}

.story-page-opening,
.story-page-body-copy,
.story-page-founder-copy,
.story-page-founder-lower {
  color: #303030;
  font-size: clamp(9px, 1.72vw, 16px);
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: 0.95px;
  text-align: justify;
}

.story-page-opening {
  width: 100%;
  padding-top: clamp(34px, 21.7vw, 150px);
  max-width: none;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0.85px;
  text-align: left;
}

.story-page-opening h3 {
  margin: 22px 0 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.35px;
}

.story-page-opening p {
  margin: 0;
}

.story-page-body-copy {
  margin-top: clamp(42px, 4.8vw, 60px);
}

.story-page-body-copy p {
  margin: 0 0 22px;
}

.story-page-promise {
  margin-top: 58px;
  font-family: "Work Sans";
  font-size: clamp(15px, 3vw, 18px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.62;
}

.story-page-promise p {
  margin: 0 0 14px;
}

.story-page-dummy {
  position: absolute;
  left: min(72vw, 970px);
  bottom: -238px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: clamp(260px, 23vw, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fb8f18;
  color: #ffffff;
  font-family: Georgia, serif;
  font-size: clamp(30px, 2.35vw, 44px);
  font-weight: 700;
  transform: translateX(-50%);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.story-page-dummy::before {
  content: "";
  position: absolute;
  inset: -42px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(251, 143, 24, 0.16);
  animation: story-dummy-pulse 1.9s ease-in-out infinite;
}

@keyframes story-dummy-pulse {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(0.94);
  }

  50% {
    opacity: 0.95;
    transform: scale(1.04);
  }
}

.story-page-founder {
  position: relative;
  z-index: 1;
  overflow: hidden;
  --founder-copy-offset: 46%;
  --founder-copy-left: calc((100vw - var(--story-page-width)) / 2 + (var(--story-page-width) * 0.46));
  --founder-copy-width: min(620px, 48vw);
  min-height: 650px;
  background: #303030;
  color: #ffffff;
}

.story-page-founder-dots {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(circle, #0d0d0d 0 2px, transparent 2.5px);
  background-size: 14px 14px;
}

.story-page-founder-inner {
  position: relative;
  z-index: 4;
  width: var(--story-page-width);
  margin: 0 auto;
  min-height: 470px;
  padding-top: 64px;
}

.story-page-founder-frame {
  position: absolute;
  left: 2%;
  top: 93px;
  bottom: auto;
  width: min(32vw, 360px);
  margin: 0;
}

.story-page-founder-photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.story-page-founder-copy {
  width: var(--founder-copy-width);
  margin-left: var(--founder-copy-offset);
  padding-top: 128px;
  color: #ffffff;
  text-align: justify;
}

.story-page-founder-copy h2 {
  margin: 0 0 28px;
  color: #fb8f18;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(34px, 3.2vw, 52px);
  font-weight: 700;
  line-height: 1;
}

.story-page-founder-copy p {
  margin: 0 0 22px;
  font-size:12px;
}

.story-page-founder-copy strong {
  color: #ffffff;
  font-size: 2.16em;
  font-weight: 700;
  text-align:justify
}

.story-page-founder-strip {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  padding: 24px 0 24px var(--founder-copy-left);
  background: #fb8f18;
  color: #ffffff;
  font-size: clamp(12px, 0.92vw, 14px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.8px;
}

.story-page-founder-strip p {
  width: var(--founder-copy-width);
  margin: 0 auto 0 0;
  text-align: justify;
}

.story-page-founder-lower {
  position: relative;
  z-index: 2;
  width: var(--founder-copy-width);
  margin: 48px 0 70px var(--founder-copy-left);
  color: #ffffff;
}

.story-page-team {
  padding: 54px 0 88px;
  background: #ffffff;
}

.story-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px 58px;
  margin-top: 42px;
}

.story-team-card img,
.story-team-silhouette {
  display: block;
  width: 100%;
  /* aspect-ratio: 1; */
  object-fit: cover;
  /* background: #e6e6e6; */
  filter: grayscale(1);
}

.story-team-card h3 {
  margin: 12px 0 2px;
  color: #303030;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
}

.story-team-card p {
  margin: 0;
  color: #303030;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
}

.story-team-silhouette {
  position: relative;
  overflow: hidden;
}

.story-team-silhouette::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 13%;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #bdbdbd;
  transform: translateX(-50%);
}

.story-team-silhouette::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20%;
  width: 78%;
  height: 72%;
  border-radius: 46% 46% 0 0;
  background: #bdbdbd;
  transform: translateX(-50%);
}

@media (max-width: 680px) {
  .story-page {
    --story-page-width: calc(100% - 48px);
  }

  .story-page-inner {
    transform: none;
  }

  .story-page-lede {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 72px;
  }

  .story-page-dummy {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(260px, 70vw);
    margin: 44px auto 0;
    transform: none;
  }

  .story-page-founder-inner {
    min-height: auto;
    padding-top: 48px;
  }

  .story-page-founder-photo {
    position: relative;
    left: 0;
    top: auto;
    bottom: auto;
    width: min(360px, 70vw);
  }

  .story-page-founder-copy {
    width: 100%;
    margin: 0;
    padding-top: 28px;
  }

  .story-page-founder-strip {
    padding: 22px 24px;
  }

  .story-page-founder-strip p,
  .story-page-founder-lower {
    width: auto;
    margin-left: 24px;
    margin-right: 24px;
  }

  .story-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 28px;
  }
}

@media (max-width: 720px) {
  :root {
    --nav-gutter: 24px;
    --nav-content-width: calc(var(--viewport-width) - var(--nav-gutter) - var(--nav-gutter));
  }

  .site-header {
    width: 100%;
    padding: 0 24px;
  }

  .hero-section {
    height: calc(100vh - 56px);
    height: calc(100svh - 56px);
    min-height: 560px;
  }

  .hero-dot-field {
    --hero-dot-w: 20px;
    --hero-dot-h: 20px;
    --hero-dot-r: 5px;
    width: calc(100% - 58px);
    height: 88px;
    background-size: 20px 20px;
    background-image: radial-gradient(circle, #e5e5e5 0 5px, transparent 5.5px);
  }

  .hero-badge {
    left: 48px;
  }

  .section-inner {
    width: calc(100% - 48px);
  }

  .story-section {
    height: 250px;
    min-height: 250px;
  }

  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 28px;
    padding-top: 8px;
  }

  .stat-item {
    min-width: 0;
  }

  .stat-number {
    font-size: 48px;
  }

  .stat-mark {
    font-size: 20px;
  }

  .stat-item p {
    margin-top: 8px;
    font-size: 11px;
    letter-spacing: 0.7px;
  }

  .quote-art {
    width: min(360px, 82vw);
  }

  .story-orb-right {
    width: 72px;
    top: 156px;
  }

  .story-orb-left {
    left: 22px;
    width: 38px;
  }

  .expertise-section {
    height: max(3300px, 600vh);
  }

  .expertise-sticky {
    height: max(550px, 100vh);
  }

  .expertise-inner {
    height: max(550px, 100vh);
    padding-top: 24px;
  }

  .expertise-title {
    font-size: 34px;
  }

  .expertise-slide {
    height: max(550px, 100vh);
  }

  .expertise-copy-main {
    top: 20%;
    width: 260px;
  }

  .expertise-circle {
    top: 44%;
    left: 50%;
    width: 240px;
  }

  .expertise-deep-button {
    top: calc(44% + 162px);
    left: calc(50% - 128px);
    width: 62px;
    font-size: 11px;
  }

  .expertise-next {
    display: none;
  }

  .expertise-copy p {
    font-size: 12px;
    letter-spacing: 2.4px;
  }

  .expertise-copy h3 {
    font-size: 46px;
  }

  .expertise-circle ul {
    width: 150px;
    font-size: 10.5px;
  }

  .work-section {
    padding-top: 28px;
  }

  .work-inner {
    width: 100%;
  }

  .work-title {
    width: calc(100% - 48px);
    font-size: 34px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .work-card-wide {
    grid-column: auto;
  }

  .work-card img {
    min-height: 250px;
  }

  .work-next-button {
    top: auto;
    right: 16px;
    bottom: 16px;
    transform: none;
  }

  .testimonials-section,
  .testimonials-inner {
    min-height: 520px;
  }

  .testimonials-title {
    font-size: 34px;
  }

  .testimonial-stage {
    height: 430px;
  }

  .testimonial-main {
    top: 54px;
    width: calc(100% - 48px);
  }

  .testimonial-copy {
    max-width: 320px;
  }

  .testimonial-arc {
    top: 10px;
    width: 520px;
    bottom: auto;
  }

  .testimonial-face {
    width: 48px;
  }

  .testimonial-face-left-top {
    top: 250px;
    left: 8%;
  }

  .testimonial-face-right-top {
    top: 252px;
    right: 8%;
  }

  .testimonial-face-left-bottom {
    top: 386px;
    left: 13%;
  }

  .testimonial-face-center-bottom {
    top: 420px;
  }

  .testimonial-face-right-bottom {
    top: 386px;
    right: 13%;
  }

  .testimonial-orb-top {
    right: 12%;
  }

  .testimonial-orb-center {
    top: 330px;
    left: 28%;
  }

  .brands-section {
    padding: 30px 0 42px;
  }

  .brands-title {
    font-size: 34px;
  }

  .brands-inner {
    --brand-columns: 3;
    --brand-gap-x: 0px;
    --brand-gap-y: 24px;
    --brand-column-width: calc((100% - 40px) / 3);
  }

  .brands-carousel {
    padding: 0;
  }

  .brands-grid {
    gap: var(--brand-gap-y);
  }

  .start-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .start-section .start-copy {
    display: block;
    min-height: 0;
  }

  .start-section .contact-list {
    align-self: auto;
  }

  .start-copy h2 {
    font-size: 34px;
  }

  .contact-list address {
    max-width: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-social {
    justify-content: start;
  }

  .footer-copy {
    grid-column: auto;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-section::after,
  .orange-orb {
    animation: none;
  }

  .quote-art {
    transform: translate3d(-50%, calc(-50% + var(--quote-parallax-y, 150px)), 0)
      scale(var(--quote-parallax-scale, 1));
    will-change: auto;
    transition: none;
  }

  .stats-row {
    will-change: auto;
    transition: none;
  }

  .expertise-track {
    transform: none;
    will-change: auto;
  }

  .testimonials-section.testimonial-animate-ready .testimonials-title,
  .testimonials-section.testimonial-animate-ready .testimonial-arc,
  .testimonials-section.testimonial-animate-ready .testimonial-main,
  .testimonials-section.testimonial-animate-ready .testimonial-face,
  .testimonials-section.testimonial-animate-ready .testimonial-orb,
  .testimonials-section.is-visible .testimonials-title,
  .testimonials-section.is-visible .testimonial-arc,
  .testimonials-section.is-visible .testimonial-main,
  .testimonials-section.is-visible .testimonial-face,
  .testimonials-section.is-visible .testimonial-orb {
    opacity: 1;
    transform: translateY(0);
    transition: none;
  }

  .testimonials-section.testimonial-animate-ready .testimonial-arc,
  .testimonials-section.is-visible .testimonial-arc {
    transform: translateX(-50%);
  }

  .testimonials-section.testimonial-animate-ready .testimonial-main,
  .testimonials-section.is-visible .testimonial-main {
    transform: translateX(-50%);
  }

  .testimonials-section.testimonial-animate-ready .testimonial-face-center-bottom,
  .testimonials-section.is-visible .testimonial-face-center-bottom {
    transform: translateX(-50%);
  }

  .brands-marquee-track {
    animation: none;
    transform: translate3d(0, 0, 0);
  }

  .testimonial-up-button::before {
    animation: none;
    opacity: 0;
  }

  .testimonial-up-button .fa-solid {
    animation: none;
  }

  .testimonials-section.is-visible .testimonial-avatar-main img,
  .testimonials-section.is-visible .testimonial-face img {
    animation: none;
  }
}

@media (max-width: 720px) {
  :root {
    --nav-gutter: 16px;
    --nav-content-width: calc(var(--viewport-width) - var(--nav-gutter) - var(--nav-gutter));
  }

  .section-inner,
  .site-header {
    width: calc(100% - 32px);
  }

  .site-header {
    width: 100%;
    height: 56px;
    padding: 0 16px;
    background: #ffffff;
  }

  .brand-link {
    width: 148px;
  }

  .hero-section {
    height: calc(100vh - 56px);
    height: calc(100svh - 56px);
    min-height: 520px;
  }

  .hero-dot-field {
    --hero-dot-w: 23px;
    --hero-dot-h: 23px;
    --hero-dot-r: 6px;
    top: 82px;
    width: calc(100% - 36px);
    height: 108px;
    background-size: 23px 23px;
    background-image: radial-gradient(circle, #e4e4e4 0 6px, transparent 6.5px);
  }

  .hero-badge {
    top: var(--hero-badge-y, 140px);
    left: var(--hero-badge-x, 80px);
    width: 104px;
    font-size: 14px;
  }

  .hero-badge.hero-message-obsessed {
    font-size: 14.5px;
  }

  .orange-orb-top {
    top: 28px;
    left: 62%;
    width: 42px;
  }

  .hero-section::after {
    width: 120px;
    bottom: -72px;
  }

  .hero-social-menu {
    width: 42px;
    padding: 12px 0;
  }

  .hero-social-menu a {
    height: 32px;
  }

  .story-section {
    height: 250px;
    min-height: 250px;
    padding: 0;
  }

  .story-section > .section-inner {
    top: auto;
    height: 100%;
    min-height: 0;
  }

  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
    padding-top: 0;
    align-items: stretch;
  }

  .stat-item {
    align-items: center;
    min-height: 76px;
    padding: 12px 10px;
    border-left: 1px solid rgba(251, 143, 24, 0.34);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
  }

  .stat-number {
    font-size: 44px;
    line-height: 0.9;
  }

  .stat-number[data-count-to="300"],
  .stat-number[data-count-to="700"],
  .stat-number[data-count-to="100"] {
    width: 1.78em;
  }

  .stat-number[data-count-to="1"] {
    width: 0.62em;
  }

  .stat-item p {
    margin-left: 7px;
    color: rgba(255, 255, 255, 0.96);
    font-size: 9.5px;
    line-height: 1.08;
    letter-spacing: 0.32px;
  }

  .stat-mark {
    color: #ffffff;
    font-size: 18px;
  }

  .stat-item .last-stat {
    margin-top: 0;
  }

  .stat-item-compact {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(230px, 100%);
    min-height: 68px;
  }

  .quote-art {
    width: min(330px, 88vw);
  }

  .story-orb-right {
    width: 70px;
    top: auto;
    right: -26px;
    bottom: 22px;
    opacity: 0.94;
  }

  .expertise-section,
  .expertise-sticky,
  .expertise-slide,
  .expertise-inner {
    height: auto;
    min-height: 620px;
  }

  .expertise-section {
    overflow: visible;
  }

  .expertise-sticky {
    position: relative;
    overflow: visible;
  }

  .expertise-track {
    display: block;
    width: 100%;
    transform: none !important;
    transition: none;
  }

  .expertise-inner {
    padding-top: 28px;
  }

  .expertise-title {
    font-size: 32px;
  }

  .expertise-slide:not(:first-child) .expertise-title {
    visibility: hidden;
  }

  .expertise-stage {
    height: 560px;
  }

  .expertise-copy-main {
    top: 68px;
    left: 0;
    width: 100%;
    max-width: calc(100vw - 32px);
    padding-left: 0;
    text-align: center;
  }

  .expertise-copy p {
    max-width: 100%;
    margin-bottom: 8px;
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: 2.1px;
    white-space: normal;
  }

  .expertise-copy h3 {
    max-width: 100%;
    font-size: 38px;
    line-height: 0.92;
    overflow-wrap: break-word;
  }

  .expertise-circle {
    top: 218px;
    left: 50%;
    width: min(270px, 76vw);
  }

  .expertise-circle ul {
    width: 166px;
    font-size: 11px;
  }

  .expertise-deep-button {
    top: 402px;
    left: calc(50% - 132px);
    width: 64px;
    font-size: 11px;
  }

  .expertise-next {
    display: none;
  }

  .expertise-slide:last-child .expertise-copy-main,
  .expertise-slide:last-child .expertise-circle,
  .expertise-slide:last-child .expertise-deep-button {
    left: auto;
  }

  .expertise-slide:last-child .expertise-copy-main {
    left: 0;
  }

  .expertise-slide:last-child .expertise-circle {
    left: 50%;
  }

  .expertise-slide:last-child .expertise-deep-button {
    left: calc(50% - 132px);
  }

  .work-section {
    padding-top: 30px;
  }

  .work-title {
    width: calc(100% - 32px);
    margin-bottom: 18px;
    font-size: 32px;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-card-wide {
    grid-column: auto;
  }

  .work-card {
    min-height: 260px;
  }

  .work-card img {
    min-height: 260px;
  }

  .work-card:hover img {
    transform: none;
  }

  .work-card-copy {
    left: 16px;
    bottom: 14px;
  }

  .work-next-button {
    width: 32px;
    right: 14px;
    bottom: 14px;
    top: auto;
    transform: none;
  }

  .testimonials-section {
    min-height: 600px;
  }

  .testimonials-inner {
    width: calc(100% - 32px);
    min-height: 600px;
  }

  .testimonials-title {
    font-size: 32px;
  }

  .brands-title {
    font-size: 32px;
  }

  .testimonial-stage {
    height: 520px;
  }

  .testimonial-main {
    top: 38px;
    width: 100%;
  }

  .testimonial-avatar-main {
    width: 76px;
  }

  .testimonial-mark img {
    left: 50%;
    top: -28px;
    width: 42px;
    transform: translateX(-50%);
  }

  .testimonial-copy {
    max-width: 310px;
    font-size: 8px;
  }

  .testimonial-arc {
    top: 150px;
    width: 460px;
  }

  .testimonial-face {
    width: 62px;
  }

  .testimonial-face-left-top {
    top: 250px;
    left: 2%;
  }

  .testimonial-face-right-top {
    top: 250px;
    right: 2%;
  }

  .testimonial-face-left-bottom {
    top: 390px;
    left: 8%;
  }

  .testimonial-face-center-bottom {
    top: 350px;
    left: 50%;
  }

  .testimonial-face-right-bottom {
    top: 390px;
    right: 8%;
  }

  .testimonial-orb-top {
    top: 44px;
    right: 8%;
    width: 42px;
  }

  .testimonial-orb-center {
    top: 320px;
    left: 28%;
    width: 30px;
  }

  .brands-grid {
    grid-template-rows: repeat(2, minmax(54px, auto));
  }

  .brands-inner {
    --brand-columns: 2;
    --brand-gap-x: 15px;
    --brand-gap-y: 22px;
    --brand-column-width: calc((100% - 18px) / 2);
  }

  .brands-carousel {
    padding: 0;
  }

  .brand-logo {
    min-width: 0;
    min-height: 58px;
  }

  .brand-logo img {
    max-width: 118px;
    max-height: 50px;
  }

  .start-section {
    padding: 36px 0 42px;
  }

  .start-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .start-copy h2 {
    margin-bottom: 26px;
    font-size: 32px;
  }

  .contact-list {
    gap: 12px;
    font-size: 15px;
  }

  .contact-list li {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .contact-list a,
  .contact-list address {
    overflow-wrap: anywhere;
  }

  .contact-icon {
    width: 22px;
  }

  .contact-form input:not([type="hidden"]) {
    height: 42px;
  }

  .contact-form textarea {
    min-height: 132px;
    resize: none;
  }

  .site-footer {
    padding: 44px 0 30px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    min-height: 170px;
  }

  .footer-nav a {
    font-size: 20px;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-social a {
    width: 31px;
  }

  .footer-divider {
    margin: 0 5px;
  }

  .footer-copy {
    grid-column: auto;
    text-align: left;
  }

  .footer-up-button {
    right: 24px;
    width: 50px;
  }
}

@media (max-width: 480px) {
  :root {
    --nav-gutter: 12px;
    --nav-content-width: calc(var(--viewport-width) - var(--nav-gutter) - var(--nav-gutter));
  }

  .section-inner,
  .site-header {
    width: calc(100% - 24px);
  }

  .site-header {
    width: 100%;
    padding: 0 12px;
  }

  .hero-section {
    height: calc(100vh - 56px);
    height: calc(100svh - 56px);
    min-height: 520px;
  }

  .main-nav {
    width: min(390px, 84vw);
    padding: 68px 0;
  }

  .main-nav a {
    font-size: 28px;
  }

  .main-nav a:not(:last-child)::after {
    width: 68px;
    margin-top: 12px;
  }

  .overlay-dot-field {
    width: calc(100% - 24px);
    background-size: 34px 34px;
    background-image: radial-gradient(circle, #dfd5cb 0 9px, transparent 9.5px);
  }

  .hero-dot-field {
    --hero-dot-w: 21px;
    --hero-dot-h: 21px;
    --hero-dot-r: 5px;
    top: 78px;
    width: calc(100% - 24px);
    height: 96px;
    background-size: 21px 21px;
    background-image: radial-gradient(circle, #e4e4e4 0 5px, transparent 5.5px);
  }

  .hero-badge {
    top: var(--hero-badge-y, 126px);
    left: var(--hero-badge-x, 67px);
    width: 96px;
    font-size: 13px;
  }

  .hero-badge.hero-message-obsessed {
    font-size: 13.5px;
  }

  .hero-social-menu {
    width: 40px;
  }

  .stats-row {
    gap: 16px 10px;
  }

  .stat-item {
    min-height: 70px;
    padding: 10px 8px;
  }

  .stat-number {
    font-size: 34px;
  }

  .stat-mark {
    font-size: 15px;
  }

  .stat-item p {
    margin-left: 5px;
    font-size: 8px;
    line-height: 1.08;
    letter-spacing: 0.18px;
  }

  .stat-number[data-count-to="300"],
  .stat-number[data-count-to="700"],
  .stat-number[data-count-to="100"] {
    width: 1.72em;
  }

  .stat-item-compact {
    width: min(210px, 100%);
  }

  .quote-art {
    width: min(300px, 88vw);
  }

  .story-orb-right {
    width: 58px;
    right: -22px;
    bottom: 26px;
  }

  .expertise-section,
  .expertise-sticky,
  .expertise-slide,
  .expertise-inner {
    min-height: 585px;
  }

  .expertise-title {
    font-size: 29px;
  }

  .work-title,
  .testimonials-title,
  .brands-title,
  .start-copy h2 {
    font-size: 29px;
  }

  .expertise-stage {
    height: 525px;
  }

  .expertise-copy-main {
    top: 66px;
    width: 100%;
    max-width: calc(100vw - 24px);
    padding-left: 0;
    text-align: center;
  }

  .expertise-copy p {
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: 1.55px;
  }

  .expertise-copy h3 {
    font-size: 32px;
    line-height: 0.94;
  }

  .expertise-circle {
    top: 205px;
    width: min(244px, 78vw);
  }

  .expertise-circle ul {
    width: 148px;
    font-size: 10px;
  }

  .expertise-deep-button {
    top: 382px;
    left: calc(50% - 119px);
    width: 58px;
    font-size: 10px;
  }

  .expertise-slide:last-child .expertise-deep-button {
    left: calc(50% - 119px);
  }

  .work-card,
  .work-card img {
    min-height: 235px;
  }

  .work-card-copy h3 {
    font-size: 14px;
  }

  .work-card-copy p {
    font-size: 10px;
  }

  .testimonials-section,
  .testimonials-inner {
    min-height: 560px;
  }

  .testimonials-inner {
    width: calc(100% - 24px);
  }

  .testimonial-stage {
    height: 488px;
  }

  .testimonial-main {
    top: 36px;
  }

  .testimonial-main h3 {
    font-size: 12px;
  }

  .testimonial-role {
    font-size: 9px;
  }

  .testimonial-copy {
    max-width: 270px;
    font-size: 7.5px;
    line-height: 1.45;
  }

  .testimonial-arc {
    top: 148px;
    width: 390px;
  }

  .testimonial-face {
    width: 48px;
  }

  .testimonial-face-left-top {
    top: 246px;
    left: 0;
  }

  .testimonial-face-right-top {
    top: 246px;
    right: 0;
  }

  .testimonial-face-left-bottom {
    top: 376px;
    left: 5%;
  }

  .testimonial-face-center-bottom {
    top: 338px;
  }

  .testimonial-face-right-bottom {
    top: 376px;
    right: 5%;
  }

  .contact-form > button[type="submit"] {
    justify-self: stretch;
  }

  .brand-logo {
    min-height: 54px;
  }

  .brand-logo img {
    max-width: 112px;
    max-height: 46px;
  }

  .footer-nav a {
    font-size: 18px;
  }
}


/* --- The Ultimate Smooth Sliding Fix --- */
.expertise-section {
  position: relative;
  height: 600vh; /* Keeps the scrolling space */
  background: #f7f7f7;
}

.expertise-sticky {
  position: sticky;
  top: 58px; 
  height: calc(100vh - 58px);
  min-height: 550px;
  overflow: hidden;
}

/* 1. Paint a permanent 30% grey background on the right side */
.expertise-sticky::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20vw; /* Covers exactly the 30% peek area */
  height: 100%;
  background: rgba(224, 224, 224, 0.88); /* Your original grey color */
  z-index: 0; /* Keeps it behind the sliding content */
  pointer-events: none;
}

.expertise-track {
  position: relative;
  display: block; 
  width: 100%;
  height: 100%;
  transform: none !important; 
  z-index: 1; /* Puts sliding text ON TOP of the grey background */
}

.expertise-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent !important; 
  pointer-events: none; 
}

/* 2. Hide the duplicate sidebar elements completely so text doesn't overlap! */
.expertise-next {
  display: none !important;
}

/* Fix last slide alignment */
.expertise-slide:last-child .expertise-copy-main { left: 0; }
.expertise-slide:last-child .expertise-circle { left: 58%; }
.expertise-slide:last-child .expertise-deep-button { left: calc(58% - min(12.5vw, 220px)); }

/* Hide duplicate "our expertise" titles */
.expertise-slide:not(:first-child) .expertise-title { opacity: 0; }

.expertise-stage {
  position: absolute;
  width: 100%;
  height: 100%;
  will-change: transform;
  pointer-events: auto; 
}

.expertise-copy-main,
.expertise-slide:last-child .expertise-copy-main {
  left: calc(var(--nav-gutter) - ((var(--viewport-width) - 100%) / 2));
  width: min(410px, var(--nav-content-width));
  max-width: calc(100% - max(0px, calc(var(--nav-gutter) - ((var(--viewport-width) - 100%) / 2))));
  padding-left: 0;
  text-align: left;
}

.expertise-title,
.work-title,
.testimonials-title,
.start-copy h2 {
  box-sizing: border-box;
  width: calc(var(--nav-content-width) - var(--title-logo-align-offset));
  max-width: calc(var(--nav-content-width) - var(--title-logo-align-offset));
  margin-left: calc(var(--nav-gutter) - ((var(--viewport-width) - 100%) / 2) + var(--title-logo-align-offset));
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  text-align: left;
}

.work-title {
  margin-top: 0;
  margin-bottom: 22px;
}

.start-copy h2 {
  margin-top: 0;
  margin-bottom: 38px;
}

.start-section .start-copy h2 {
  justify-self: start;
  width: max-content;
  max-width: calc(var(--nav-content-width) - var(--title-logo-align-offset));
  margin-left: var(--title-logo-align-offset);
  transform: none;
}

@media (max-width: 720px) {
  .expertise-title,
  .work-title,
  .testimonials-title,
  .start-copy h2 {
    width: calc(var(--nav-content-width) - var(--title-logo-align-offset));
    max-width: calc(var(--nav-content-width) - var(--title-logo-align-offset));
    margin-left: calc(var(--nav-gutter) - ((var(--viewport-width) - 100%) / 2) + var(--title-logo-align-offset));
  }

  .work-title {
    margin-bottom: 18px;
  }

  .start-copy h2 {
    margin-bottom: 26px;
  }

  .start-section .start-copy h2 {
    width: max-content;
    max-width: calc(var(--nav-content-width) - var(--title-logo-align-offset));
    margin-left: var(--title-logo-align-offset);
    transform: none;
  }
}

@media (max-width: 1180px) {
  .expertise-section {
    height: auto;
    overflow: visible;
    padding: clamp(34px, 5vw, 56px) 0 clamp(28px, 5vw, 52px);
  }

  .expertise-sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .expertise-sticky::after {
    display: none;
  }

  .expertise-track {
    display: block;
    width: 100%;
    height: auto;
    transform: none !important;
    transition: none;
    will-change: auto;
  }

  .expertise-slide {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: clamp(560px, 62vw, 680px);
    overflow: hidden;
    pointer-events: auto;
  }

  .expertise-slide:not(:first-child) .expertise-title {
    display: none;
  }

  .expertise-inner {
    height: auto;
    min-height: clamp(560px, 62vw, 680px);
    padding-top: 0;
  }

  .expertise-stage {
    position: relative;
    width: 100%;
    height: clamp(500px, 58vw, 620px);
    transform: none !important;
    will-change: auto;
  }

  .expertise-copy-main,
  .expertise-slide:last-child .expertise-copy-main {
    top: clamp(56px, 9vw, 92px);
    left: 0;
    width: min(430px, 48vw);
    max-width: 100%;
    text-align: left;
  }

  .expertise-copy p {
    font-size: clamp(11px, 1.45vw, 15px);
    line-height: 1.35;
    letter-spacing: clamp(1.8px, 0.3vw, 3px);
  }

  .expertise-copy h3 {
    font-size: clamp(38px, 6vw, 58px);
    line-height: 0.96;
    overflow-wrap: anywhere;
  }

  .expertise-circle,
  .expertise-slide:last-child .expertise-circle {
    top: clamp(150px, 20vw, 230px);
    left: 67%;
    width: clamp(286px, 34vw, 390px);
    padding-left: clamp(54px, 7vw, 82px);
  }

  .expertise-circle ul {
    width: clamp(172px, 22vw, 240px);
    font-size: clamp(11px, 1.35vw, 15px);
    line-height: 1.65;
  }

  .expertise-deep-button,
  .expertise-slide:last-child .expertise-deep-button {
    top: clamp(382px, 47vw, 510px);
    left: calc(67% - clamp(152px, 18vw, 205px));
    width: clamp(68px, 8vw, 94px);
    font-size: clamp(11px, 1.25vw, 14px);
  }

  .expertise-slide::after {
    content: "";
    position: absolute;
    right: var(--nav-gutter);
    bottom: 0;
    left: var(--nav-gutter);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(251, 143, 24, 0.34), transparent);
    opacity: 0.72;
  }

  .expertise-slide:last-child::after {
    display: none;
  }

  .expertise-section.expertise-compact-ready .expertise-copy-main,
  .expertise-section.expertise-compact-ready .expertise-deep-button {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    transition:
      opacity 620ms ease,
      transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }

  .expertise-section.expertise-compact-ready .expertise-circle {
    opacity: 0;
    transform: translate3d(-50%, 30px, 0) scale(0.94);
    transition:
      opacity 680ms ease 90ms,
      transform 820ms cubic-bezier(0.22, 1, 0.36, 1) 90ms;
    will-change: opacity, transform;
  }

  .expertise-section.expertise-compact-ready .expertise-deep-button {
    transition-delay: 170ms;
  }

  .expertise-section.expertise-compact-ready .expertise-slide.has-mobile-viewed .expertise-copy-main,
  .expertise-section.expertise-compact-ready .expertise-slide.has-mobile-viewed .expertise-deep-button,
  .expertise-section.expertise-compact-ready .expertise-slide.is-mobile-active .expertise-copy-main,
  .expertise-section.expertise-compact-ready .expertise-slide.is-mobile-active .expertise-deep-button {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .expertise-section.expertise-compact-ready .expertise-slide.has-mobile-viewed .expertise-circle,
  .expertise-section.expertise-compact-ready .expertise-slide.is-mobile-active .expertise-circle {
    opacity: 1;
    transform: translate3d(-50%, 0, 0) scale(1);
  }
}

@media (max-width: 720px) {
  .expertise-section {
    padding-top: 28px;
    padding-bottom: 24px;
  }

  .expertise-slide {
    min-height: 545px;
  }

  .expertise-inner {
    min-height: 545px;
  }

  .expertise-stage {
    height: 500px;
  }

  .expertise-copy-main,
  .expertise-slide:last-child .expertise-copy-main {
    top: 58px;
    width: 100%;
    text-align: left;
  }

  .expertise-circle,
  .expertise-slide:last-child .expertise-circle {
    top: 190px;
    left: 50%;
    width: min(244px, 78vw);
    padding-left: 48px;
  }

  .expertise-circle ul {
    width: 148px;
    font-size: 10px;
    line-height: 1.55;
  }

  .expertise-deep-button,
  .expertise-slide:last-child .expertise-deep-button {
    top: 362px;
    left: calc(50% - 119px);
    width: 58px;
    font-size: 10px;
  }

  .expertise-section.expertise-compact-ready .expertise-copy-main {
    transform: translate3d(0, 18px, 0);
  }

  .expertise-section.expertise-compact-ready .expertise-circle {
    transform: translate3d(-50%, 24px, 0) scale(0.95);
  }

  .expertise-section.expertise-compact-ready .expertise-deep-button {
    transform: translate3d(-6px, 16px, 0) scale(0.96);
  }

  .expertise-section.expertise-compact-ready .expertise-slide.has-mobile-viewed .expertise-copy-main,
  .expertise-section.expertise-compact-ready .expertise-slide.has-mobile-viewed .expertise-deep-button,
  .expertise-section.expertise-compact-ready .expertise-slide.is-mobile-active .expertise-copy-main,
  .expertise-section.expertise-compact-ready .expertise-slide.is-mobile-active .expertise-deep-button {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .expertise-section.expertise-compact-ready .expertise-slide.has-mobile-viewed .expertise-circle,
  .expertise-section.expertise-compact-ready .expertise-slide.is-mobile-active .expertise-circle {
    transform: translate3d(-50%, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .expertise-section.expertise-compact-ready .expertise-copy-main,
  .expertise-section.expertise-compact-ready .expertise-circle,
  .expertise-section.expertise-compact-ready .expertise-deep-button {
    opacity: 1;
    transition: none;
    will-change: auto;
  }

  .expertise-section.expertise-compact-ready .expertise-copy-main,
  .expertise-section.expertise-compact-ready .expertise-deep-button {
    transform: translate3d(0, 0, 0);
  }

  .expertise-section.expertise-compact-ready .expertise-circle {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 1180px) {
  .hero-section {
    height: min(680px, calc(100svh - 58px));
    min-height: 560px;
  }

  .hero-dot-field {
    top: clamp(96px, 14svh, 132px);
    width: min(760px, calc(100% - 64px));
    height: clamp(96px, 13vw, 124px);
    background-image: radial-gradient(circle, #e3e3e3 0 var(--hero-dot-r), transparent calc(var(--hero-dot-r) + 0.5px));
  }

  .hero-badge {
    width: clamp(108px, 12vw, 132px);
    font-size: clamp(13.5px, 1.45vw, 17px);
    box-shadow: 0 10px 24px rgba(247, 141, 29, 0.3);
  }

  .hero-badge.hero-message-obsessed {
    font-size: clamp(14px, 1.55vw, 18px);
  }

  .hero-orb-large,
  .hero-physics-orb.hero-orb-large {
    top: clamp(255px, 38svh, 350px);
    left: 52%;
    width: clamp(150px, 20vw, 220px);
    opacity: 0.74;
    filter: blur(16px);
    transform: translateX(-50%);
    box-shadow: 0 0 38px rgba(251, 143, 24, 0.42);
  }

  .orange-orb-top,
  .hero-physics-orb.orange-orb-top {
    top: clamp(210px, 31svh, 285px);
    left: min(70%, calc(100% - 92px));
    width: clamp(42px, 5.8vw, 60px);
    opacity: 0.76;
    filter: blur(8px);
    box-shadow: 0 0 22px rgba(251, 143, 24, 0.42);
  }

  .orange-orb-right {
    top: auto;
    right: 18px;
    bottom: 22px;
    width: 42px;
    filter: none;
    transform: none;
    box-shadow: 0 12px 26px rgba(251, 143, 24, 0.34);
  }

  .hero-social-menu {
    top: auto;
    right: 18px;
    bottom: 76px;
    border-radius: 24px;
    transform: translate3d(0, 18px, 0) scale(0.96);
  }

  .hero-social-menu.is-open {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .story-section {
    height: auto;
    min-height: 0;
    scroll-margin-top: 58px;
    padding: clamp(38px, 5vw, 58px) 0 clamp(42px, 5vw, 64px);
    overflow: hidden;
  }

  .story-section > .section-inner {
    display: grid;
    gap: clamp(34px, 4vw, 48px);
    height: auto;
    min-height: 0;
  }

  .quote-art {
    order: 1;
    position: relative;
    top: auto;
    left: auto;
    justify-self: center;
    width: min(520px, calc(100vw - 96px));
    max-width: calc(100vw - 96px);
    transform: none !important;
    opacity: 1 !important;
    will-change: auto;
  }

  .stats-row {
    order: 2;
    position: relative;
    top: auto;
    left: auto;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(18px, 2.8vw, 34px);
    width: 100%;
    opacity: 1 !important;
    transform: none !important;
    will-change: auto;
  }

  .stat-item {
    min-width: 0;
  }

  .stat-item p {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .hero-section {
    height: 440px;
    min-height: 440px;
  }

  .hero-dot-field {
    --hero-dot-w: 18px;
    --hero-dot-h: 18px;
    --hero-dot-r: 4px;
    top: 58px;
    width: calc(100% - 30px);
    height: 70px;
    background-size: var(--hero-dot-w) var(--hero-dot-h);
  }

  .hero-badge {
    width: 86px;
    font-size: 11px;
    line-height: 0.9;
    box-shadow: 0 8px 18px rgba(247, 141, 29, 0.28);
  }

  .hero-badge.hero-message-obsessed {
    font-size: 11.4px;
  }

  .hero-badge.hero-message-obsessed strong {
    margin-top: 2px;
    white-space: normal;
  }

  .hero-orb-large,
  .hero-physics-orb.hero-orb-large {
    top: 165px;
    left: 57%;
    width: min(118px, 33vw);
    opacity: 0.74;
    filter: blur(14px);
    box-shadow: 0 0 30px rgba(251, 143, 24, 0.4);
  }

  .orange-orb-top,
  .hero-physics-orb.orange-orb-top {
    top: 288px;
    left: 58%;
    width: 32px;
    opacity: 0.72;
    filter: blur(6px);
    box-shadow: 0 0 18px rgba(251, 143, 24, 0.36);
  }

  .orange-orb-right {
    top: auto;
    right: 16px;
    bottom: 18px;
    width: 42px;
    filter: none;
    transform: none;
    box-shadow: 0 12px 26px rgba(251, 143, 24, 0.34);
  }

  .hero-social-menu {
    top: auto;
    right: 14px;
    bottom: 70px;
    width: 42px;
    padding: 10px 0;
    border-radius: 24px;
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.96);
  }

  .hero-social-menu.is-open {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .testimonial-up-button {
    right: 70px;
  }

  .quote-art {
    width: min(278px, calc(100vw - 68px));
    max-width: calc(100vw - 68px);
  }

  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
  }

  .stat-item {
    min-height: 86px;
  }

  .story-orb-left {
    left: 30px;
    width: 44px;
  }

  .story-orb-right {
    right: -18px;
    width: 66px;
  }

  .story-section {
    scroll-margin-top: 56px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 420px;
    min-height: 420px;
  }

  .hero-dot-field {
    --hero-dot-w: 17px;
    --hero-dot-h: 17px;
    --hero-dot-r: 3.75px;
    top: 56px;
    width: calc(100% - 24px);
    height: 68px;
  }

  .hero-badge {
    width: 82px;
    font-size: 10.5px;
  }

  .hero-badge.hero-message-obsessed {
    font-size: 10.9px;
  }

  .hero-orb-large,
  .hero-physics-orb.hero-orb-large {
    top: 160px;
    left: 57%;
    width: min(108px, 32vw);
    filter: blur(13px);
  }

  .orange-orb-top,
  .hero-physics-orb.orange-orb-top {
    top: 280px;
    left: 58%;
    width: 28px;
    filter: blur(5px);
  }

  .orange-orb-right {
    right: 14px;
    bottom: 16px;
    width: 40px;
  }

  .hero-social-menu {
    right: 13px;
    bottom: 66px;
    width: 40px;
  }

  .testimonial-up-button {
    right: 66px;
  }

  .quote-art {
    width: min(250px, calc(100vw - 76px));
    max-width: calc(100vw - 76px);
  }

  .stats-row {
    gap: 14px 10px;
  }

  .stat-item {
    min-height: 82px;
  }

  .story-orb-left {
    left: 28px;
    width: 40px;
  }

  .story-orb-right {
    right: -20px;
    width: 58px;
  }
}

@media (max-width: 1180px) {
  .expertise-section {
    height: auto;
    scroll-margin-top: 58px;
    padding: clamp(44px, 6vw, 72px) 0 clamp(36px, 6vw, 68px);
    overflow: hidden;
    background-color: #f7f7f7;
    background-image: radial-gradient(circle, rgba(223, 223, 223, 0.62) 0 1.4px, transparent 1.8px);
    background-size: 16px 16px;
  }

  .expertise-bg-dots {
    display: none;
  }

  .expertise-sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    overflow: visible;
    background: transparent;
  }

  .expertise-sticky::after {
    display: none;
  }

  .expertise-track {
    display: grid;
    gap: clamp(44px, 5vw, 70px);
    width: 100%;
    height: auto;
    transform: none !important;
    transition: none;
    will-change: auto;
  }

  .expertise-slide {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: visible;
    background: transparent !important;
    pointer-events: auto;
  }

  .expertise-slide::after {
    content: "";
    position: absolute;
    right: var(--nav-gutter);
    bottom: calc(clamp(44px, 5vw, 70px) / -2);
    left: var(--nav-gutter);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(251, 143, 24, 0.28), transparent);
  }

  .expertise-slide:last-child::after {
    display: none;
  }

  .expertise-inner {
    display: grid;
    height: auto;
    min-height: 0;
    padding-top: 0;
  }

  .expertise-title {
    display: block;
    width: min(100%, var(--nav-content-width));
    max-width: var(--nav-content-width);
    margin: 0 0 clamp(34px, 5vw, 52px);
    color: var(--accent);
    font-size: clamp(38px, 6vw, 60px);
  }

  .expertise-slide:not(:first-child) .expertise-title {
    display: none;
  }

  .expertise-stage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(220px, 0.78fr) minmax(300px, 1fr);
    align-items: center;
    column-gap: clamp(36px, 6vw, 84px);
    width: 100%;
    height: auto;
    min-height: 360px;
    transform: none !important;
    will-change: auto;
  }

  .expertise-copy-main,
  .expertise-slide:last-child .expertise-copy-main {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 430px;
    padding-left: 0;
    text-align: left;
  }

  .expertise-copy p {
    max-width: 380px;
    margin-bottom: 12px;
    color: #6b6b6b;
    font-size: clamp(12px, 1.35vw, 15px);
    line-height: 1.35;
    letter-spacing: clamp(1.8px, 0.24vw, 2.8px);
  }

  .expertise-copy h3 {
    color: #303030;
    font-size: clamp(48px, 7vw, 74px);
    line-height: 0.92;
    overflow-wrap: anywhere;
  }

  .expertise-circle,
  .expertise-slide:last-child .expertise-circle {
    position: relative;
    top: auto;
    left: auto;
    justify-self: center;
    width: clamp(310px, 36vw, 420px);
    padding: 0 clamp(44px, 6vw, 76px);
    transform: none;
  }

  .expertise-circle ul {
    width: 100%;
    color: #ffffff;
    font-size: clamp(12px, 1.45vw, 15px);
    line-height: 1.65;
  }

  .expertise-deep-button,
  .expertise-slide:last-child .expertise-deep-button {
    position: absolute;
    top: auto;
    right: calc(clamp(310px, 36vw, 420px) - clamp(310px, 36vw, 420px) * 0.94);
    bottom: clamp(10px, 2vw, 26px);
    left: auto;
    width: clamp(72px, 8vw, 94px);
    font-size: clamp(11px, 1.25vw, 14px);
    transform: translateX(-46%);
  }

  .expertise-next {
    display: none !important;
  }

  .expertise-section.expertise-compact-ready .expertise-copy-main,
  .expertise-section.expertise-compact-ready .expertise-circle,
  .expertise-section.expertise-compact-ready .expertise-deep-button {
    opacity: 0;
    transition:
      opacity 560ms ease,
      transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }

  .expertise-section.expertise-compact-ready .expertise-copy-main {
    transform: translate3d(0, 20px, 0);
  }

  .expertise-section.expertise-compact-ready .expertise-circle {
    transform: translate3d(24px, 20px, 0) scale(0.96);
    transition-delay: 80ms;
  }

  .expertise-section.expertise-compact-ready .expertise-deep-button {
    transform: translate3d(-46%, 18px, 0) scale(0.96);
    transition-delay: 150ms;
  }

  .expertise-section.expertise-compact-ready .expertise-slide.has-mobile-viewed .expertise-copy-main,
  .expertise-section.expertise-compact-ready .expertise-slide.has-mobile-viewed .expertise-circle,
  .expertise-section.expertise-compact-ready .expertise-slide.is-mobile-active .expertise-copy-main,
  .expertise-section.expertise-compact-ready .expertise-slide.is-mobile-active .expertise-circle {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .expertise-section.expertise-compact-ready .expertise-slide.has-mobile-viewed .expertise-deep-button,
  .expertise-section.expertise-compact-ready .expertise-slide.is-mobile-active .expertise-deep-button {
    opacity: 1;
    transform: translate3d(-46%, 0, 0) scale(1);
  }
}

@media (max-width: 720px) {
  .expertise-section {
    scroll-margin-top: 56px;
    padding: 34px 0 38px;
    background-size: 14px 14px;
  }

  .expertise-track {
    gap: 38px;
  }

  .expertise-slide::after {
    right: 18px;
    bottom: -19px;
    left: 18px;
  }

  .expertise-title {
    margin-bottom: 24px;
    font-size: 34px;
  }

  .expertise-stage {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 24px;
    min-height: 0;
  }

  .expertise-copy-main,
  .expertise-slide:last-child .expertise-copy-main {
    max-width: 100%;
    text-align: left;
  }

  .expertise-copy p {
    max-width: 100%;
    margin-bottom: 8px;
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: 1.55px;
  }

  .expertise-copy h3 {
    font-size: clamp(38px, 12vw, 48px);
    line-height: 0.94;
  }

  .expertise-circle,
  .expertise-slide:last-child .expertise-circle {
    width: min(260px, 76vw);
    padding: 0 42px 0 58px;
  }

  .expertise-circle ul {
    font-size: 10.5px;
    line-height: 1.58;
    max-width: 150px;
    margin-left: auto;
    margin-right: auto;
  }

  .expertise-deep-button,
  .expertise-slide:last-child .expertise-deep-button {
    right: auto;
    bottom: 8px;
    left: calc(50% - min(154px, 44vw));
    width: 62px;
    font-size: 10px;
    transform: none;
  }

  .expertise-section.expertise-compact-ready .expertise-circle {
    transform: translate3d(0, 22px, 0) scale(0.96);
  }

  .expertise-section.expertise-compact-ready .expertise-deep-button {
    transform: translate3d(-8px, 18px, 0) scale(0.96);
  }

  .expertise-section.expertise-compact-ready .expertise-slide.has-mobile-viewed .expertise-deep-button,
  .expertise-section.expertise-compact-ready .expertise-slide.is-mobile-active .expertise-deep-button {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 480px) {
  .expertise-section {
    padding-top: 30px;
  }

  .expertise-title {
    font-size: 30px;
  }

  .expertise-track {
    gap: 34px;
  }

  .expertise-stage {
    row-gap: 20px;
  }

  .expertise-copy h3 {
    font-size: clamp(34px, 11vw, 42px);
  }

  .expertise-circle,
  .expertise-slide:last-child .expertise-circle {
    width: min(238px, 78vw);
    padding: 0 38px 0 54px;
  }

  .expertise-circle ul {
    font-size: 9.8px;
    line-height: 1.52;
    max-width: 138px;
  }

  .expertise-deep-button,
  .expertise-slide:last-child .expertise-deep-button {
    left: calc(50% - min(142px, 45vw));
    width: 58px;
    font-size: 9.5px;
  }
}

@media (max-width: 1180px) {
  .testimonials-section {
    height: auto;
    min-height: 0;
    scroll-margin-top: 58px;
    padding: clamp(44px, 6vw, 72px) 0 clamp(48px, 6vw, 76px);
    overflow: hidden;
    background-color: #f7f7f7;
  }

  .testimonials-dots {
    opacity: 0.32;
    background-size: 16px 16px;
    background-image: radial-gradient(circle, #dfdfdf 0 1.4px, transparent 1.8px);
  }

  .testimonials-inner {
    display: grid;
    gap: clamp(28px, 4vw, 44px);
    width: var(--nav-content-width);
    height: auto;
    min-height: 0;
    padding-top: 0;
  }

  .testimonials-title {
    font-size: clamp(40px, 6vw, 62px);
  }

  .testimonial-stage {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1fr);
    align-items: center;
    column-gap: clamp(34px, 5vw, 72px);
    height: auto;
    min-height: 0;
  }

  .testimonial-arc {
    left: 26%;
    top: 50%;
    width: min(420px, 44vw);
    opacity: 0.85;
    clip-path: none;
    -webkit-clip-path: none;
    transform: translate(-50%, -50%);
  }

  .testimonial-main {
    position: relative;
    top: auto;
    left: auto;
    z-index: 2;
    grid-column: 2;
    width: 100%;
    max-width: 430px;
    margin: 0;
    padding: clamp(26px, 3.8vw, 42px) clamp(22px, 3.4vw, 38px);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 44px rgba(47, 47, 47, 0.08);
    text-align: left;
    transform: none;
  }

  .testimonials-section.testimonial-animate-ready .testimonial-main,
  .testimonials-section.is-visible .testimonial-main,
  .testimonial-main.is-changing,
  .testimonials-section.is-visible .testimonial-main.is-changing {
    transform: none;
  }

  .testimonial-avatar-main {
    width: clamp(86px, 11vw, 112px);
    margin: 0 0 14px;
  }

  .testimonial-mark {
    display: none;
  }

  .testimonial-mark img {
    top: -54px;
    left: auto;
    right: 4px;
    width: 54px;
    opacity: 0.9;
    transform: none;
  }

  .testimonial-main h3 {
    font-size: clamp(20px, 2.7vw, 28px);
  }

  .testimonial-role {
    margin: 4px 0 14px;
    font-size: clamp(11px, 1.35vw, 14px);
    line-height: 1.25;
  }

  .testimonial-copy {
    max-width: none;
    margin: 0;
    font-size: clamp(12px, 1.35vw, 15px);
    line-height: 1.65;
  }

  .testimonial-face {
    width: clamp(62px, 8vw, 86px);
  }

  .testimonial-face-left-top {
    top: 8%;
    left: 7%;
  }

  .testimonial-face-right-top {
    top: 12%;
    right: auto;
    left: 39%;
  }

  .testimonial-face-left-bottom {
    top: auto;
    bottom: 8%;
    left: 10%;
  }

  .testimonial-face-center-bottom {
    top: auto;
    bottom: 20%;
    left: 29%;
  }

  .testimonial-face-right-bottom {
    top: auto;
    right: auto;
    bottom: 10%;
    left: 34%;
  }

  .testimonial-orb-top {
    top: 88px;
    right: 15%;
    width: 44px;
    opacity: 0.72;
  }

  .testimonial-orb-center {
    top: auto;
    bottom: 88px;
    left: 18%;
    width: 32px;
    opacity: 0.68;
  }

  .testimonials-section.is-visible .testimonial-avatar-main img,
  .testimonials-section.is-visible .testimonial-face img {
    animation-duration: 6.5s;
  }
}

@media (max-width: 720px) {
  .testimonials-section {
    scroll-margin-top: 56px;
    padding: 34px 0 40px;
  }

  .testimonials-dots {
    opacity: 0.26;
    background-size: 14px 14px;
  }

  .testimonials-inner {
    gap: 24px;
    width: calc(100% - 32px);
  }

  .testimonials-title {
    font-size: 34px;
  }

  .testimonial-stage {
    display: grid;
    grid-template-columns: repeat(5, auto);
    gap: 22px 14px;
    justify-content: center;
    align-items: center;
  }

  .testimonial-arc {
    display: none;
  }

  .testimonial-main {
    grid-column: auto;
    grid-column: 1 / -1;
    width: 100%;
    max-width: 360px;
    padding: 22px 20px 24px;
    background: rgba(255, 255, 255, 0.78);
    text-align: center;
  }

  .testimonial-avatar-main {
    width: 84px;
    margin: 0 auto 12px;
  }

  .testimonial-mark img {
    top: -48px;
    right: 18px;
    width: 44px;
  }

  .testimonial-main h3 {
    font-size: 18px;
    line-height: 1.18;
  }

  .testimonial-role {
    margin: 4px 0 12px;
    font-size: 10px;
    letter-spacing: 0.65px;
  }

  .testimonial-copy {
    max-width: 100%;
    font-size: 11px;
    line-height: 1.58;
  }

  .testimonial-face {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: inline-grid;
    grid-row: 2;
    width: 54px;
    transform: none !important;
  }

  .testimonial-face-center-bottom {
    left: auto;
    transform: none !important;
  }

  .testimonial-face:hover,
  .testimonial-face.is-active,
  .testimonials-section.is-visible .testimonial-face:hover,
  .testimonials-section.is-visible .testimonial-face.is-active {
    transform: translateY(-3px) scale(1.04) !important;
  }

  .testimonial-orb-top {
    top: 80px;
    right: 10%;
    width: 34px;
  }

  .testimonial-orb-center {
    bottom: 34px;
    left: 8%;
    width: 26px;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 30px 0 36px;
  }

  .testimonials-inner {
    width: calc(100% - 24px);
  }

  .testimonials-title {
    font-size: 30px;
  }

  .testimonial-main {
    max-width: 100%;
    padding: 20px 16px 22px;
  }

  .testimonial-avatar-main {
    width: 76px;
  }

  .testimonial-main h3 {
    font-size: 16px;
  }

  .testimonial-role {
    font-size: 9.5px;
  }

  .testimonial-copy {
    font-size: 10.5px;
  }

  .testimonial-face {
    width: 48px;
    margin: 0 1px;
  }

  .testimonial-stage {
    gap: 18px 14px;
  }
}

@media (max-width: 365px) {
  .testimonial-stage {
    gap: 16px 12px;
  }

  .testimonial-face {
    width: 42px;
    margin: 0;
  }
}

@media (max-width: 1180px) {
  .brands-section {
    scroll-margin-top: 58px;
    padding: clamp(52px, 7vw, 84px) 0 clamp(58px, 7vw, 92px);
  }

  .brands-inner {
    --brand-gap-x: clamp(42px, 7vw, 72px);
    --brand-gap-y: clamp(34px, 5vw, 52px);
    width: var(--nav-content-width);
  }

  .brands-title {
    margin-bottom: clamp(36px, 5vw, 56px);
    font-size: clamp(40px, 6vw, 62px);
    text-align: center;
  }

  .brands-grid {
    gap: var(--brand-gap-y);
  }

  .brands-marquee-group {
    gap: var(--brand-gap-x);
    padding-right: var(--brand-gap-x);
  }

  .brand-logo {
    flex-basis: clamp(132px, 18vw, 170px);
    width: clamp(132px, 18vw, 170px);
    min-width: clamp(132px, 18vw, 170px);
    min-height: clamp(74px, 10vw, 100px);
    padding: 0 14px;
  }

  .brand-logo img {
    height: auto;
    max-width: clamp(118px, 16vw, 156px);
    max-height: clamp(56px, 7vw, 78px);
  }
}

@media (max-width: 720px) {
  .brands-section {
    scroll-margin-top: 56px;
    padding: 42px 0 58px;
  }

  .brands-inner {
    --brand-gap-x: 12px;
    --brand-gap-y: 28px;
  }

  .brands-title {
    margin-bottom: 30px;
    max-width: 330px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(30px, 8.8vw, 34px);
    line-height: 1.08;
    text-wrap: balance;
  }

  .brands-marquee-track {
    animation: none;
    transform: translate3d(0, 0, 0);
  }

  .brands-marquee-row {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .brands-marquee-row::-webkit-scrollbar {
    display: none;
  }

  .brands-marquee-group[aria-hidden="true"] {
    display: none;
  }

  .brands-marquee-group {
    gap: var(--brand-gap-x);
    padding-right: 0;
  }

  .brand-logo {
    flex-basis: calc((var(--nav-content-width) - (var(--brand-gap-x) * 2)) / 3);
    width: calc((var(--nav-content-width) - (var(--brand-gap-x) * 2)) / 3);
    min-width: calc((var(--nav-content-width) - (var(--brand-gap-x) * 2)) / 3);
    min-height: 82px;
    padding: 0 10px;
    scroll-snap-align: start;
  }

  .brand-logo img {
    max-width: 100%;
    max-height: 62px;
  }
}

@media (max-width: 480px) {
  .brands-section {
    padding: 38px 0 54px;
  }

  .brands-inner {
    --brand-gap-x: 10px;
    --brand-gap-y: 24px;
  }

  .brands-title {
    margin-bottom: 28px;
    max-width: 300px;
    font-size: 30px;
  }

  .brand-logo {
    flex-basis: calc((var(--nav-content-width) - (var(--brand-gap-x) * 2)) / 3);
    width: calc((var(--nav-content-width) - (var(--brand-gap-x) * 2)) / 3);
    min-width: calc((var(--nav-content-width) - (var(--brand-gap-x) * 2)) / 3);
    min-height: 76px;
    padding: 0 8px;
  }

  .brand-logo img {
    max-width: 100%;
    max-height: 58px;
  }
}

@media (max-width: 1180px) {
  .start-section {
    scroll-margin-top: 58px;
    padding: clamp(54px, 7vw, 78px) 0 clamp(54px, 7vw, 84px);
  }

  .start-dots {
    opacity: 0.28;
    background-size: 15px 15px;
  }

  .start-inner {
    grid-template-columns: minmax(230px, 0.84fr) minmax(360px, 1fr);
    gap: clamp(34px, 6vw, 68px);
    align-items: center;
  }

  .start-section .start-copy {
    display: block;
    min-height: 0;
  }

  .start-section .start-copy h2 {
    width: auto;
    max-width: 100%;
    margin: 0 0 clamp(28px, 4vw, 40px);
    font-size: clamp(40px, 5.4vw, 56px);
  }

  .start-section .contact-list {
    gap: 16px;
  }

  .contact-list li {
    grid-template-columns: 34px minmax(0, 1fr);
    font-size: 15px;
    line-height: 1.55;
  }

  .contact-list li:first-child {
    font-size: 17px;
  }

  .contact-list a,
  .contact-list address {
    padding-left: 8px;
    overflow-wrap: anywhere;
  }

  .contact-icon {
    width: 27px;
  }

  .contact-form {
    gap: 10px;
    padding: clamp(18px, 3vw, 26px);
    border: 1px solid rgba(255, 255, 255, 0.76);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 20px 42px rgba(38, 38, 38, 0.08);
    backdrop-filter: blur(3px);
  }

  .contact-form input:not([type="hidden"]),
  .contact-form select,
  .contact-dropdown-toggle {
    height: 46px;
    padding: 0 18px;
  }

  .contact-form textarea {
    min-height: 142px;
    padding: 14px 18px;
  }

  .contact-dropdown-menu {
    top: 46px;
    max-height: min(270px, 42vh);
    overflow-y: auto;
    box-shadow: 0 14px 28px rgba(38, 38, 38, 0.08);
  }

  .contact-form > button[type="submit"] {
    min-width: 112px;
    min-height: 38px;
    margin-top: 8px;
    padding: 9px 24px;
    font-size: 13px;
  }

  .start-up-button {
    right: 24px;
    bottom: 20px;
    width: 40px;
  }

  .orange-orb-right.is-start-hidden,
  .hero-social-menu.is-start-hidden,
  .testimonial-up-button.is-start-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 12px, 0) scale(0.92);
  }
}

@media (max-width: 860px) {
  .start-section {
    padding: 50px 0 62px;
  }

  .start-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    width: min(680px, var(--nav-content-width));
  }

  .start-section .start-copy {
    display: grid;
    gap: 0;
  }

  .start-section .start-copy h2 {
    margin-bottom: 24px;
    font-size: clamp(36px, 7vw, 48px);
  }

  .start-section .contact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
  }

  .contact-list li {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .contact-list li:nth-child(3) {
    grid-column: 1 / -1;
  }

  .contact-form {
    max-width: 620px;
    padding: 22px;
  }
}

@media (max-width: 720px) {
  .start-section {
    scroll-margin-top: 56px;
    padding: 42px 0 50px;
  }

  .start-dots {
    opacity: 0.2;
    background-size: 13px 13px;
  }

  .start-inner {
    width: calc(100% - 28px);
    gap: 24px;
  }

  .start-section .start-copy h2 {
    margin-bottom: 20px;
    font-size: clamp(32px, 9vw, 38px);
    line-height: 0.98;
  }

  .start-section .contact-list {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .contact-list li,
  .contact-list li:first-child {
    grid-template-columns: 30px minmax(0, 1fr);
    align-items: center;
    font-size: 14px;
    line-height: 1.45;
  }

  .contact-list li:nth-child(3) {
    align-items: start;
  }

  .contact-icon {
    width: 24px;
  }

  .contact-list a,
  .contact-list address {
    padding-left: 6px;
  }

  .contact-form {
    gap: 9px;
    max-width: none;
    padding: 16px;
    background: rgba(255, 255, 255, 0.66);
    box-shadow: 0 16px 32px rgba(38, 38, 38, 0.07);
  }

  .contact-form input:not([type="hidden"]),
  .contact-form select,
  .contact-dropdown-toggle {
    height: 44px;
    padding: 0 15px;
    font-size: 14px;
  }

  .contact-dropdown-icon {
    right: 10px;
    width: 22px;
    height: 22px;
    font-size: 12px;
  }

  .contact-dropdown-menu {
    top: 44px;
    padding: 10px 0 6px;
  }

  .contact-dropdown-menu button {
    font-size: 15px;
  }

  .contact-form textarea {
    min-height: 112px;
    padding: 13px 15px;
    font-size: 14px;
    resize: none;
  }

  .contact-form > button[type="submit"] {
    justify-self: stretch;
    min-height: 42px;
    margin-top: 6px;
    padding: 10px 20px;
    font-size: 13px;
  }

  .contact-form-status {
    text-align: center;
  }

  .start-up-button {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .start-section {
    padding: 38px 0 46px;
  }

  .start-inner {
    width: calc(100% - 24px);
    gap: 22px;
  }

  .start-section .start-copy h2 {
    margin-bottom: 18px;
    font-size: 32px;
  }

  .contact-list li,
  .contact-list li:first-child {
    grid-template-columns: 28px minmax(0, 1fr);
    font-size: 13.5px;
  }

  .contact-icon {
    width: 22px;
  }

  .contact-form {
    padding: 14px;
  }

  .contact-form input:not([type="hidden"]),
  .contact-form select,
  .contact-dropdown-toggle {
    height: 42px;
    padding: 0 13px;
  }

  .contact-dropdown-menu {
    top: 42px;
  }
}

@media (max-width: 1180px) {
  .site-footer {
    padding: clamp(46px, 6vw, 68px) 0 clamp(34px, 5vw, 52px);
  }

  .footer-inner {
    grid-template-columns: minmax(220px, 0.85fr) minmax(300px, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: clamp(44px, 8vw, 84px);
    row-gap: 10px;
    align-items: end;
    min-height: 0;
    width: var(--nav-content-width);
  }

  .footer-nav {
    grid-row: 1 / -1;
    gap: 11px;
  }

  .footer-nav a {
    font-size: clamp(22px, 2.8vw, 30px);
    line-height: 0.98;
  }

  .footer-nav a::after {
    width: 34px;
    margin-top: 7px;
    opacity: 0.72;
  }

  .footer-copy {
    grid-column: 2;
    justify-self: end;
    font-size: 10px;
    line-height: 1.35;
    opacity: 0.92;
  }

  .footer-social {
    grid-column: 2;
    justify-content: flex-end;
    align-self: end;
    margin-top: 14px;
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .footer-social a {
    width: 38px;
    height: 36px;
  }

  .footer-divider {
    margin: 0 5px;
    opacity: 0.42;
  }
}

@media (max-width: 860px) {
  .site-footer {
    padding: 42px 0 34px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }

  .footer-nav {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 28px;
    width: 100%;
  }

  .footer-nav a {
    font-size: clamp(21px, 4.2vw, 28px);
    line-height: 1.02;
  }

  .footer-nav a::after {
    width: 30px;
    margin-top: 8px;
  }

  .footer-copy,
  .footer-nav + .footer-copy,
  .footer-nav + .footer-copy + .footer-copy {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    align-self: start;
    padding: 0;
    text-align: left;
  }

  .footer-nav + .footer-copy {
    margin-top: 6px;
  }

  .footer-nav + .footer-copy + .footer-copy {
    margin-top: -16px;
  }

  .footer-social {
    grid-column: 1;
    grid-row: auto;
    justify-content: flex-start;
    margin-top: -8px;
  }
}

@media (max-width: 720px) {
  .site-footer {
    padding: 36px 0 32px;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc(100% - 28px);
    gap: 18px;
  }

  .footer-nav {
    order: 1;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-nav a {
    width: max-content;
    max-width: 100%;
    font-size: 20px;
    line-height: 1;
  }

  .footer-nav a::after {
    width: 28px;
    margin-top: 6px;
    opacity: 0.62;
  }

  .footer-copy {
    order: 3;
    margin: 0;
    font-size: 9.5px;
    line-height: 1.4;
  }

  .footer-nav + .footer-copy {
    margin-top: 2px;
  }

  .footer-nav + .footer-copy + .footer-copy {
    margin-top: -14px;
  }

  .footer-social {
    order: 2;
    gap: 7px;
    margin-top: -2px;
  }

  .footer-social a,
  .footer-social .facebook_footer_class {
    width: 36px;
    height: 36px;
  }

  .footer-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 32px 0 30px;
  }

  .footer-inner {
    width: calc(100% - 24px);
    gap: 16px;
  }

  .footer-nav {
    gap: 9px;
  }

  .footer-nav a {
    font-size: 19px;
  }

  .footer-social {
    gap: 6px;
    max-width: 300px;
  }

  .footer-social a,
  .footer-social .facebook_footer_class {
    width: 34px;
    height: 34px;
  }

  .footer-social img {
    max-width: 18px;
  }
}

@media (max-width: 1180px) {
  .hero-section {
    height: clamp(220px, 27svh, 280px);
    min-height: 220px;
  }

  .hero-dot-field {
    --hero-dot-w: clamp(22px, 2.9vw, 29px);
    --hero-dot-h: clamp(22px, 2.9vw, 29px);
    --hero-dot-r: clamp(5px, 0.72vw, 7px);
    top: 50%;
    width: min(720px, calc(100% - 72px));
    height: clamp(78px, 8.5vw, 100px);
    background-size: var(--hero-dot-w) var(--hero-dot-h);
  }

  .hero-badge {
    width: clamp(106px, 11vw, 126px);
    font-size: clamp(13px, 1.35vw, 16px);
    line-height: 0.9;
  }

  .hero-badge.hero-message-obsessed {
    font-size: clamp(13.4px, 1.45vw, 16.8px);
  }

  .hero-badge.hero-message-obsessed strong {
    white-space: normal;
  }

  .hero-orb-large,
  .hero-physics-orb.hero-orb-large {
    display: none;
  }

  .orange-orb-top,
  .hero-physics-orb.orange-orb-top {
    display: none;
  }

  .orange-orb-right {
    top: auto;
    right: 18px;
    bottom: 18px;
    width: 40px;
    filter: none;
    transform: none;
    box-shadow: 0 12px 24px rgba(251, 143, 24, 0.32);
  }

  .hero-social-menu {
    top: auto;
    right: 18px;
    bottom: 68px;
    width: 42px;
    padding: 10px 0;
    border-radius: 24px;
    transform: translate3d(0, 16px, 0) scale(0.96);
  }

  .hero-social-menu.is-open {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 860px) {
  .hero-section {
    height: 176px;
    min-height: 176px;
  }

  .hero-dot-field {
    --hero-dot-w: 19px;
    --hero-dot-h: 19px;
    --hero-dot-r: 4.35px;
    top: 50%;
    width: calc(100% - 42px);
    height: 68px;
  }

  .hero-badge {
    width: 88px;
    font-size: 11.2px;
    line-height: 0.9;
  }

  .hero-badge.hero-message-obsessed {
    font-size: 11.6px;
  }

  .hero-badge span,
  .hero-badge strong {
    max-width: 84%;
  }

  .hero-orb-large,
  .hero-physics-orb.hero-orb-large {
    display: none;
  }

  .orange-orb-top,
  .hero-physics-orb.orange-orb-top {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 224px;
    min-height: 224px;
  }

  .hero-dot-field {
    --hero-dot-w: 18px;
    --hero-dot-h: 18px;
    --hero-dot-r: 4px;
    top: 50%;
    width: calc(100% - 26px);
    height: 86px;
  }

  .hero-badge {
    width: 90px;
    font-size: 11.4px;
  }

  .hero-badge.hero-message-obsessed {
    font-size: 11.7px;
  }

  .hero-orb-large,
  .hero-physics-orb.hero-orb-large {
    display: none;
  }

  .orange-orb-top,
  .hero-physics-orb.orange-orb-top {
    display: none;
  }

  .orange-orb-right {
    right: 14px;
    bottom: 14px;
    width: 38px;
  }

  .hero-social-menu {
    right: 13px;
    bottom: 62px;
    width: 40px;
  }
}

@media (max-width: 720px) {
  .story-section {
    padding: 34px 0 38px;
  }

  .story-section > .section-inner {
    width: calc(100% - 28px);
    gap: 26px;
  }

  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
  }

  .stat-item {
    position: relative;
    min-height: 82px;
    padding: 13px 12px 12px;
    display: grid;
    grid-template-columns: minmax(58px, auto) minmax(0, 1fr);
    column-gap: 8px;
    align-items: center;
    background: rgba(255, 255, 255, 0.035);
    border-left: 1px solid rgba(251, 143, 24, 0.62);
  }

  .stat-number-wrap {
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
  }

  .stat-number {
    font-size: clamp(34px, 11vw, 48px);
    line-height: 0.82;
    text-align: right;
  }

  .stat-number[data-count-to="300"],
  .stat-number[data-count-to="700"],
  .stat-number[data-count-to="100"] {
    width: auto;
  }

  .stat-mark {
    font-size: 12px;
  }

  .stat-item p {
    margin-left: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 8px;
    line-height: 1.05;
    letter-spacing: 0.2px;
    align-self: center;
  }

  .stat-item-compact {
    grid-column: 1 / -1;
    grid-template-columns: auto auto;
    justify-self: center;
    width: min(220px, 72vw);
    min-height: 64px;
    justify-content: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.045);
  }

  .stat-item .last-stat {
    margin-top: 0;
  }

  .story-orb-left {
    left: 14px;
    bottom: 20%;
    width: 30px;
    opacity: 0.52;
  }

  .story-orb-right {
    right: -28px;
    top: auto;
    bottom: 28%;
    width: 50px;
    opacity: 0.5;
  }
}

@media (max-width: 480px) {
  .story-section {
    padding: 30px 0 34px;
  }

  .story-section > .section-inner {
    width: calc(100% - 24px);
    gap: 22px;
  }

  .stats-row {
    gap: 10px;
  }

  .stat-item {
    min-height: 76px;
    padding: 12px 9px 11px;
    grid-template-columns: minmax(52px, auto) minmax(0, 1fr);
    column-gap: 7px;
  }

  .stat-number {
    font-size: clamp(30px, 10vw, 40px);
  }

  .stat-item p {
    font-size: 7.4px;
  }

  .stat-item-compact {
    width: min(190px, 70vw);
    min-height: 58px;
  }

  .story-orb-left {
    left: 10px;
    width: 28px;
  }

  .story-orb-right {
    right: -30px;
    width: 48px;
  }
}

@media (max-width: 1180px) {
  .story-page {
    --story-page-width: var(--nav-content-width);
  }

  .story-page-inner {
    width: var(--story-page-width);
    margin-left: auto;
    margin-right: auto;
  }

  .story-page-intro {
    overflow: hidden;
    padding: clamp(42px, 6vw, 70px) 0 clamp(72px, 8vw, 110px);
  }

  .story-page-dots {
    right: -10%;
    width: min(520px, 58vw);
    height: clamp(160px, 22vw, 240px);
    opacity: 0.24;
    background-size: 15px 15px;
  }

  .story-page-orb-top {
    top: 20px;
    right: -40px;
    width: clamp(84px, 12vw, 118px);
    opacity: 0.7;
  }

  .story-page-orb-left {
    top: auto;
    left: -44px;
    bottom: 170px;
    width: clamp(70px, 10vw, 98px);
    opacity: 0.62;
  }

  .story-page-intro h1,
  .story-page-team h2 {
    font-size: clamp(38px, 5.8vw, 56px);
  }

  .story-page-lede {
    grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
    gap: clamp(34px, 5vw, 62px);
    margin-top: clamp(42px, 6vw, 72px);
  }

  .story-page-lede h2 {
    font-size: clamp(42px, 7vw, 72px);
    line-height: 0.98;
  }

  .story-page-opening {
    padding-top: clamp(12px, 3vw, 34px);
    font-size: clamp(13px, 1.45vw, 16px);
    line-height: 1.62;
    letter-spacing: 0.45px;
  }

  .story-page-opening h3 {
    margin: 20px 0 18px;
    font-size: clamp(18px, 2.1vw, 24px);
  }

  .story-page-body-copy {
    max-width: 920px;
    margin-top: clamp(44px, 6vw, 70px);
    font-size: clamp(13px, 1.45vw, 16px);
    line-height: 1.68;
    letter-spacing: 0.42px;
  }

  .story-page-promise {
    max-width: 620px;
    margin-top: clamp(38px, 5vw, 58px);
    font-size: clamp(16px, 2.2vw, 22px);
  }

  .story-page-dummy {
    left: auto;
    right: max(24px, var(--nav-gutter));
    bottom: -74px;
    width: clamp(150px, 19vw, 230px);
    font-size: clamp(18px, 2.1vw, 28px);
  }

  .story-page-dummy::before {
    inset: -24px;
  }

  .story-page-founder {
    --founder-copy-offset: 0;
    --founder-copy-left: max(24px, var(--nav-gutter));
    --founder-copy-width: min(680px, 58vw);
    min-height: 0;
    overflow: hidden;
  }

  .story-page-founder-inner {
    display: grid;
    grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
    gap: clamp(36px, 6vw, 72px);
    align-items: center;
    min-height: 0;
    padding-top: clamp(54px, 7vw, 84px);
    padding-bottom: clamp(34px, 5vw, 58px);
  }

  .story-page-founder-frame {
    position: relative;
    left: auto;
    top: auto;
    justify-self: center;
    width: min(320px, 34vw);
  }

  .story-page-founder-photo {
    width: 100%;
  }

  .story-page-founder-copy {
    width: 100%;
    max-width: 680px;
    margin-left: 0;
    padding-top: 0;
    font-size: clamp(13px, 1.35vw, 15px);
    line-height: 1.65;
    letter-spacing: 0.42px;
  }

  .story-page-founder-copy h2 {
    margin-bottom: clamp(20px, 3vw, 30px);
    font-size: clamp(40px, 5.6vw, 62px);
  }

  .story-page-founder-copy p {
    font-size: inherit;
  }

  .story-page-founder-copy strong {
    font-size: clamp(30px, 4.3vw, 52px);
    line-height: 1.02;
  }

  .story-page-founder-strip {
    margin-top: 0;
    padding: clamp(22px, 3vw, 30px) var(--nav-gutter);
    font-size: clamp(13px, 1.35vw, 16px);
    line-height: 1.6;
  }

  .story-page-founder-strip p {
    width: min(760px, 100%);
    margin: 0 auto;
    text-align: center;
  }

  .story-page-founder-lower {
    width: min(760px, var(--story-page-width));
    margin: clamp(34px, 5vw, 52px) auto clamp(52px, 7vw, 78px);
    font-size: clamp(13px, 1.35vw, 16px);
    line-height: 1.68;
    letter-spacing: 0.42px;
  }

  .story-page-team {
    padding: clamp(52px, 7vw, 76px) 0 clamp(64px, 8vw, 96px);
  }

  .story-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(34px, 5vw, 54px) clamp(28px, 4vw, 46px);
    margin-top: clamp(34px, 5vw, 52px);
  }

  .story-team-card h3 {
    font-size: clamp(14px, 1.6vw, 17px);
  }

  .story-team-card p {
    font-size: clamp(11px, 1.25vw, 13px);
  }
}

@media (max-width: 860px) {
  .story-page {
    --story-page-width: calc(100% - 40px);
  }

  .story-page-intro {
    padding: 38px 0 64px;
  }

  .story-page-dots {
    right: -18%;
    width: 78vw;
    height: 180px;
    opacity: 0.2;
  }

  .story-page-orb-top {
    right: -48px;
    width: 88px;
    filter: blur(8px);
  }

  .story-page-orb-left {
    display: none;
  }

  .story-page-lede {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 34px;
  }

  .story-page-lede h2 {
    font-size: clamp(40px, 10vw, 60px);
    white-space: normal;
  }

  .story-page-opening,
  .story-page-body-copy,
  .story-page-founder-copy,
  .story-page-founder-lower {
    text-align: left;
    text-align-last: auto;
  }

  .story-page-dummy {
    display: none;
  }

  .story-page-founder-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 48px;
  }

  .story-page-founder-photo {
    order: 2;
    width: min(300px, 68vw);
    max-height: 380px;
    object-fit: contain;
  }

  .story-page-founder-copy {
    order: 1;
    max-width: 100%;
  }

  .story-page-founder-strip p {
    text-align: left;
  }

  .story-page-founder-lower {
    width: var(--story-page-width);
  }

  .story-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
  }
}

@media (max-width: 560px) {
  .story-page {
    --story-page-width: calc(100% - 28px);
  }

  .story-page-intro {
    padding: 32px 0 52px;
  }

  .story-page-dots {
    right: -34%;
    width: 98vw;
    height: 150px;
    background-size: 13px 13px;
  }

  .story-page-intro h1,
  .story-page-team h2 {
    font-size: 32px;
  }

  .story-page-lede {
    gap: 22px;
    margin-top: 28px;
  }

  .story-page-lede h2 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .story-page-opening,
  .story-page-body-copy,
  .story-page-founder-copy,
  .story-page-founder-lower {
    font-size: 13px;
    line-height: 1.62;
    letter-spacing: 0.18px;
  }

  .story-page-opening h3 {
    margin: 18px 0 16px;
    font-size: 17px;
  }

  .story-page-body-copy {
    margin-top: 34px;
  }

  .story-page-body-copy p {
    margin-bottom: 18px;
  }

  .story-page-promise {
    margin-top: 30px;
    font-size: 15px;
    line-height: 1.55;
  }

  .story-page-promise p {
    margin-bottom: 10px;
  }

  .story-page-founder-inner {
    width: var(--story-page-width);
    gap: 22px;
    padding-top: 32px;
    padding-bottom: 30px;
  }

  .story-page-founder-photo {
    width: min(220px, 62vw);
    max-height: 330px;
  }

  .story-page-founder-copy h2 {
    margin-bottom: 18px;
    font-size: 32px;
  }

  .story-page-founder-copy strong {
    font-size: 26px;
  }

  .story-page-founder-strip {
    padding: 20px 14px;
    font-size: 13px;
  }

  .story-page-founder-lower {
    margin: 30px auto 48px;
  }

  .story-page-team {
    padding: 38px 0 58px;
  }

  .story-team-grid {
    gap: 28px 16px;
    margin-top: 28px;
  }

  .story-team-card h3 {
    margin-top: 10px;
    font-size: 13px;
  }

  .story-team-card p {
    font-size: 10.5px;
    line-height: 1.3;
  }
}

@media (max-width: 365px) {
  .story-team-grid {
    gap: 24px 12px;
  }

  .story-team-card h3 {
    font-size: 12px;
  }

  .story-team-card p {
    font-size: 10px;
  }
}

/* Story page responsive polish */
@media (max-width: 1180px) {
  .story-page-inner,
  .story-page-founder-inner {
    width: min(100% - 48px, 920px);
  }

  .story-page-intro {
    padding-top: clamp(38px, 5vw, 64px);
  }

  .story-page-body-copy,
  .story-page-promise {
    max-width: 760px;
  }

  .story-page-founder-inner {
    grid-template-columns: minmax(210px, 0.42fr) minmax(0, 1fr);
    gap: clamp(34px, 5vw, 64px);
  }

  .story-page-founder-frame {
    width: min(300px, 31vw);
    align-self: end;
  }

  .story-page-founder-photo {
    width: 100%;
  }

  .story-page-founder-copy {
    max-width: 620px;
  }

  .story-page-founder-lower,
  .story-page-founder-strip p {
    max-width: 760px;
  }

  .story-team-grid {
    gap: clamp(30px, 4vw, 46px) clamp(22px, 3vw, 38px);
  }

  .story-team-card img {
    height: clamp(260px, 28vw, 330px);
    object-fit: cover;
    object-position: center top;
  }
}

@media (max-width: 860px) {
  .story-page-inner,
  .story-page-founder-inner {
    width: calc(100% - 36px);
  }

  .story-page-intro {
    padding: 34px 0 56px;
  }

  .story-page-lede {
    gap: 24px;
    margin-top: 30px;
  }

  .story-page-lede h2 {
    max-width: 11ch;
    font-size: clamp(38px, 9vw, 56px);
  }

  .story-page-opening,
  .story-page-body-copy,
  .story-page-promise,
  .story-page-founder-copy,
  .story-page-founder-lower {
    letter-spacing: 0.2px;
  }

  .story-page-opening {
    padding-top: 0;
  }

  .story-page-body-copy {
    margin-top: 34px;
  }

  .story-page-founder-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 34px;
    padding-bottom: 28px;
  }

  .story-page-founder-copy {
    display: contents;
  }

  .story-page-founder-copy h2 {
    order: 1;
    margin: 0;
  }

  .story-page-founder-copy p:first-of-type {
    order: 2;
    margin: 0;
    color: #ffffff;
    font-weight: 700;
  }

  .story-page-founder-frame {
    order: 3;
    position: relative;
    left: auto;
    top: auto;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 420px);
    aspect-ratio: 16 / 10;
    margin: 6px 0 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.04)),
      rgba(48, 48, 48, 0.72);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  }

  .story-page-founder-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 64%, rgba(48, 48, 48, 0.3));
  }

  .story-page-founder-photo {
    position: absolute;
    z-index: 1;
    width: auto;
    height: 192%;
    max-width: none;
    object-fit: contain;
    object-position: center center;
    top:14px;
    left: 50%;
    transform: translate(-50%, -14px);
  }

  .story-page-founder-copy p:nth-of-type(2) {
    order: 4;
    margin: 0;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.62;
  }

  .story-page-founder-copy strong {
    display: inline-block;
    margin-bottom: 4px;
    font-size: clamp(24px, 6vw, 34px);
    line-height: 1.02;
  }

  .story-page-founder-strip {
    padding: 20px 18px;
  }

  .story-page-founder-strip p,
  .story-page-founder-lower {
    width: calc(100% - 36px);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .story-page-founder-lower {
    margin-top: 28px;
    margin-bottom: 44px;
  }

  .story-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }

  .story-team-card img {
    height: clamp(190px, 48vw, 300px);
  }
}

@media (max-width: 560px) {
  .story-page-inner,
  .story-page-founder-inner,
  .story-page-founder-strip p,
  .story-page-founder-lower {
    width: calc(100% - 28px);
  }

  .story-page-intro {
    padding: 30px 0 48px;
  }

  .story-page-dots {
    opacity: 0.16;
  }

  .story-page-orb-top {
    width: 72px;
    opacity: 0.55;
  }

  .story-page-intro h1,
  .story-page-team h2 {
    font-size: 30px;
  }

  .story-page-lede {
    margin-top: 24px;
  }

  .story-page-lede h2 {
    font-size: clamp(34px, 11vw, 43px);
    line-height: 0.98;
  }

  .story-page-opening,
  .story-page-body-copy,
  .story-page-founder-copy p:nth-of-type(2),
  .story-page-founder-lower {
    font-size: 12.8px;
    line-height: 1.58;
  }

  .story-page-promise {
    font-size: 14.5px;
  }

  .story-page-founder-inner {
    gap: 16px;
    padding-top: 30px;
  }

  .story-page-founder-frame {
    width: min(100%, 360px);
    aspect-ratio: 16 / 10.5;
  }

  .story-page-founder-photo {
    height: 139%;
  }

  .story-page-founder-copy h2 {
    font-size: 30px;
  }

  .story-page-founder-copy p:first-of-type {
    font-size: 13px;
    line-height: 1.45;
  }

  .story-page-founder-copy strong {
    font-size: 24px;
  }

  .story-page-founder-strip {
    padding: 18px 0;
  }

  .story-page-team {
    padding: 34px 0 50px;
  }

  .story-team-grid {
    gap: 24px 14px;
    margin-top: 24px;
  }

  .story-team-card img {
    height: clamp(160px, 57vw, 235px);
  }

  .story-team-card h3 {
    font-size: 12.5px;
  }

  .story-team-card p {
    font-size: 10px;
  }
}

@media (max-width: 380px) {
  .story-team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .story-team-card {
    justify-self: center;
    width: 100%;
    max-width: 240px;
  }

  .story-team-card img {
    height: 275px;
  }
}
