body.page-about {
  --about-panel: rgba(255, 255, 255, 0.045);
  --about-border: rgba(255, 255, 255, 0.12);
  --about-muted: rgba(255, 255, 255, 0.72);
  --about-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  overflow-x: visible;
  background: linear-gradient(180deg, #010102 0%, #000000 38%, #000000 100%);
}

body.page-about::before,
body.page-about::after {
  content: "";
  position: fixed;
  inset: -16%;
  pointer-events: none;
  z-index: 0;
}

body.page-about::before {
  background:
    radial-gradient(ellipse at 12% 14%, rgba(255, 126, 57, 0.06) 0%, rgba(255, 126, 57, 0.018) 26%, transparent 62%),
    radial-gradient(ellipse at 88% 10%, rgba(56, 209, 255, 0.08) 0%, rgba(56, 209, 255, 0.024) 22%, transparent 60%),
    radial-gradient(ellipse at 80% 54%, rgba(255, 102, 153, 0.038) 0%, rgba(255, 102, 153, 0.014) 18%, transparent 52%),
    radial-gradient(ellipse at 22% 74%, rgba(72, 141, 255, 0.034) 0%, rgba(72, 141, 255, 0.012) 18%, transparent 54%);
  filter: blur(128px);
  opacity: 0.9;
}

body.page-about::after {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 9, 0.16) 0%, rgba(5, 5, 9, 0.04) 18%, rgba(5, 5, 9, 0.12) 54%, rgba(5, 5, 9, 0.2) 100%),
    radial-gradient(ellipse at 50% 32%, rgba(255, 255, 255, 0.04) 0%, transparent 34%);
  opacity: 0.92;
}

.page-about .about-page,
.page-about .site-footer {
  position: relative;
  z-index: 1;
}

.page-about .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: linear-gradient(180deg, rgba(5, 5, 9, 0.94) 0%, rgba(5, 5, 9, 0.56) 42%, rgba(5, 5, 9, 0) 100%) !important;
}

.page-about .nav-link[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

@media (max-width: 900px) {
  body.page-about .site-header .header-inner {
    position: relative;
    min-height: 72px;
    width: 100%;
    justify-content: space-between;
    gap: 14px;
    overflow: visible;
  }

  body.page-about .site-header .brand {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
  }

  body.page-about .site-header .brand-mark {
    height: 38px;
  }

  body.page-about .site-header .mobile-nav-toggle {
    position: absolute !important;
    top: 50%;
    right: 82px !important;
    left: auto !important;
    margin: 0 !important;
    z-index: 2;
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(-50%) !important;
  }

  body.page-about .site-header .mobile-nav-toggle span {
    display: block !important;
    width: 16px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
  }
}

@media (max-width: 640px) {
  body.page-about .site-header .brand-mark {
    height: 40px;
  }

  body.page-about .site-header .brand-text {
    display: none;
  }

  body.page-about .site-header .mobile-nav-toggle {
    right: 74px !important;
  }
}

.about-page {
  padding: 122px 0 0;
}

.about-hero {
  position: relative;
  padding: 30px 0 34px;
  overflow: visible;
}

.about-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 140px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.04) 24%, rgba(0, 0, 0, 0.12) 44%, rgba(0, 0, 0, 0.3) 68%, rgba(0, 0, 0, 0.66) 100%);
  filter: blur(22px);
  opacity: 0.88;
  z-index: 0;
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.about-hero-copy {
  max-width: 920px;
}

.about-page-kicker {
  margin: 0 0 18px;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
}

.about-page-title {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(50px, 7.6vw, 94px);
  line-height: 1.12;
  letter-spacing: -0.058em;
}

.about-page-title span {
  display: block;
}

.about-page-title-muted {
  position: relative;
  width: fit-content;
  opacity: 0.72;
  animation: about-title-settle 1.35s ease-out both;
}

.about-page-title-muted::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: rgba(255, 255, 255, 0.24);
  text-shadow:
    8px 0 0 rgba(255, 255, 255, 0.18),
    16px 0 2px rgba(255, 255, 255, 0.14),
    24px 0 6px rgba(255, 255, 255, 0.12),
    38px 0 14px rgba(255, 255, 255, 0.08);
  filter: blur(1.2px);
  pointer-events: none;
  opacity: 0;
  transform: translateX(0);
  animation: about-title-dust 1.45s ease-out 0.08s both;
}

.about-page-lead {
  margin: 48px 0 0;
  max-width: 68ch;
  font-size: 17px;
  line-height: 1.82;
  color: var(--about-muted);
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 52px;
}

.about-hero-actions .btn {
  min-height: 54px;
  padding: 12px 28px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  box-shadow: none;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
}

.about-hero-actions .btn:hover {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.78);
}

.about-scroll-button {
  gap: 12px;
}

.about-scroll-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(5, 5, 9, 0.08);
}

.about-scroll-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 94px;
}

.about-stat-card {
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.about-stat-value {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(32px, 3.7vw, 54px);
  line-height: 0.96;
  font-weight: 650;
  letter-spacing: -0.06em;
  color: #ffffff;
}

.about-stat-label {
  display: block;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
}

.team-section {
  position: relative;
  margin-top: -56px;
  padding: 244px 0 36px;
  isolation: isolate;
  background: transparent;
}

.team-section::before {
  content: "";
  position: absolute;
  inset: -14% -10% -16%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 12% 50%, rgba(38, 109, 255, 0.06) 0%, rgba(38, 109, 255, 0.02) 22%, rgba(0, 0, 0, 0) 58%),
    radial-gradient(ellipse at 84% 50%, rgba(255, 85, 129, 0.06) 0%, rgba(255, 85, 129, 0.02) 22%, rgba(0, 0, 0, 0) 58%),
    radial-gradient(ellipse at 50% 10%, rgba(255, 255, 255, 0.028) 0%, rgba(255, 255, 255, 0.006) 18%, rgba(0, 0, 0, 0) 54%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.06) 16%, rgba(0, 0, 0, 0.04) 80%, rgba(0, 0, 0, 0.38) 100%);
  filter: blur(150px);
  opacity: 0.82;
}

.team-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 168px;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.16) 28%, rgba(0, 0, 0, 0.06) 52%, rgba(0, 0, 0, 0) 100%);
  filter: blur(34px);
  opacity: 0.92;
}

.team-shell {
  display: grid;
  position: relative;
  z-index: 1;
  gap: 14px;
  overflow: visible;
}

.team-header {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  position: relative;
  z-index: 4;
  top: 18px;
  text-align: center;
}

.team-title {
  margin: 0;
  display: block;
  max-width: none;
  position: relative;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: clamp(34px, 4.4vw, 66px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  text-wrap: balance;
}

.team-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: -1;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.11);
  text-shadow:
    0 0 14px rgba(255, 255, 255, 0.06),
    0 18px 34px rgba(0, 0, 0, 0.16);
  filter: blur(12px);
  opacity: 0.16;
  transform: translateY(10px) scale(1.008);
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.team-header.is-visible .team-title::after,
.team-title:hover::after {
  opacity: 0.34;
  transform: translateY(6px) scale(1.012);
}

.team-title:hover::after {
  opacity: 0.42;
}

.team-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  gap: clamp(52px, 6vw, 112px);
  align-items: start;
  margin-top: 18px;
}

.team-stage {
  position: relative;
  min-height: 900px;
  margin-top: -8px;
  margin-left: clamp(-360px, -24vw, -160px);
  margin-right: clamp(-124px, -10vw, -44px);
}

.team-portrait {
  position: relative;
  min-height: 900px;
  overflow: visible;
  isolation: isolate;
  background: transparent;
}

.team-portrait::before,
.team-portrait::after {
  content: "";
  position: absolute;
  inset: -12% -10%;
  pointer-events: none;
}

.team-portrait::before {
  z-index: 0;
  background:
    radial-gradient(circle at 16% 54%, rgba(56, 209, 255, 0.08) 0%, rgba(56, 209, 255, 0.016) 24%, rgba(0, 0, 0, 0) 64%),
    radial-gradient(circle at 88% 46%, rgba(255, 102, 153, 0.07) 0%, rgba(255, 102, 153, 0.016) 22%, rgba(0, 0, 0, 0) 62%);
  filter: blur(34px);
}

.team-portrait::after {
  z-index: 3;
  background:
    radial-gradient(ellipse 84% 30% at 50% 0%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.92) 24%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.12) 72%, rgba(0, 0, 0, 0) 100%),
    radial-gradient(ellipse 88% 32% at 50% 100%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.92) 24%, rgba(0, 0, 0, 0.52) 52%, rgba(0, 0, 0, 0.12) 74%, rgba(0, 0, 0, 0) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.92) 8%, rgba(0, 0, 0, 0.5) 18%, rgba(0, 0, 0, 0.1) 32%, rgba(0, 0, 0, 0) 42%),
    linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.92) 8%, rgba(0, 0, 0, 0.5) 18%, rgba(0, 0, 0, 0.1) 32%, rgba(0, 0, 0, 0) 42%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.42) 12%, rgba(0, 0, 0, 0.06) 26%, rgba(0, 0, 0, 0.04) 74%, rgba(0, 0, 0, 0.42) 88%, rgba(0, 0, 0, 0.98) 100%);
  opacity: 1;
  filter: blur(46px);
}

.team-portrait-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(148px);
  opacity: 0.28;
  pointer-events: none;
  z-index: 1;
}

.team-portrait-glow--cyan {
  inset: -2% auto 2% -16%;
  width: 58%;
  background: rgba(56, 209, 255, 0.18);
}

.team-portrait-glow--rose {
  inset: 4% -16% 6% auto;
  width: 52%;
  background: rgba(255, 102, 153, 0.14);
}

.team-video {
  position: absolute;
  top: var(--team-video-top, -28%);
  left: 3%;
  width: 166%;
  height: 164%;
  z-index: 2;
  object-fit: contain;
  object-position: 60% 46%;
  transform: scale(1.06);
  opacity: 0.96;
  mix-blend-mode: screen;
  filter: saturate(1.05) contrast(1.08) brightness(0.98);
  -webkit-mask-image: radial-gradient(ellipse 50% 68% at 57% 46%, #000 0%, #000 44%, rgba(0, 0, 0, 0.94) 58%, rgba(0, 0, 0, 0.6) 72%, rgba(0, 0, 0, 0.18) 84%, transparent 96%);
  mask-image: radial-gradient(ellipse 50% 68% at 57% 46%, #000 0%, #000 44%, rgba(0, 0, 0, 0.94) 58%, rgba(0, 0, 0, 0.6) 72%, rgba(0, 0, 0, 0.18) 84%, transparent 96%);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease;
}

.team-portrait.is-active .team-video,
.team-portrait.is-finished .team-video {
  transform: scale(1.08);
  opacity: 1;
}

.team-portrait.is-finished .team-video {
  animation: team-finished-breathe 5.6s ease-in-out infinite;
}

.team-pulse {
  position: absolute;
  left: 50%;
  bottom: 17%;
  z-index: 1;
  width: 34%;
  height: 16%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(56, 209, 255, 0.06) 28%, rgba(255, 102, 153, 0.04) 42%, rgba(0, 0, 0, 0) 72%);
  filter: blur(44px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.team-portrait.is-finished .team-pulse {
  opacity: 0.82;
  animation: team-pulse-breathe 5.6s ease-in-out infinite;
}

.team-details {
  display: grid;
  gap: 20px;
  align-content: center;
  padding-top: 54px;
  position: relative;
  z-index: 4;
  transform: translate(clamp(18px, 3vw, 54px), 96px);
  max-width: 560px;
}

.team-role {
  display: block;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  order: 3;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.42);
}

.team-name {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(54px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  order: 1;
  text-shadow: 0 16px 44px rgba(0, 0, 0, 0.5);
}

.team-description {
  margin: 0;
  max-width: 44ch;
  font-size: 18px;
  line-height: 1.9;
  color: var(--about-muted);
  order: 2;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.42);
}

.team-controls {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  order: 4;
}

.team-nav {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.team-nav:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
}

.team-nav svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-dots {
  display: flex;
  align-items: center;
  gap: 12px;
}

.team-dot {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.team-dot:hover,
.team-dot[aria-selected="true"] {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.88);
  background: transparent;
}

.about-capabilities {
  padding: 32px 0 68px;
}

.about-capabilities .about-section-head {
  margin-bottom: 48px;
}

.about-section-head {
  display: grid;
  gap: 18px;
  max-width: 1140px;
  margin-bottom: 64px;
}

.about-section-head--compact {
  margin-bottom: 48px;
}

.about-section-title {
  margin: 0;
  max-width: 24ch;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.about-section-title-line {
  display: block;
}

.about-section-title-line--nowrap {
  white-space: nowrap;
}

.about-section-lead {
  margin: 0;
  max-width: 74ch;
  font-size: 17px;
  line-height: 1.9;
  color: var(--about-muted);
}

@media (min-width: 901px) {
  .about-capabilities {
    padding-top: 88px;
  }
}

.about-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
}

.about-capability-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.about-capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  height: auto;
  margin-bottom: 20px;
}

.about-capability-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.about-capability-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.about-capability-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.78;
  color: var(--about-muted);
}

.about-values {
  padding: 92px 0 132px;
}

.about-values .about-section-head--compact {
  margin-bottom: 38px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.about-value-card {
  min-height: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.about-value-index {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.54);
}

.about-value-card h3 {
  margin: 18px 0 0;
  max-width: 11ch;
  font-size: 28px;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.about-value-card p {
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.82;
  color: var(--about-muted);
}

.page-about .final-cta-section {
  padding-top: 74px;
  background:
    radial-gradient(circle at 76% 44%, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 18%, rgba(0, 0, 0, 0) 46%),
    linear-gradient(180deg, #000000 0%, #050509 100%);
}

.page-about .final-cta-title {
  max-width: 18ch;
}

.page-about .site-footer {
  background: transparent !important;
}

.page-about .portfolio-closeout {
  gap: clamp(56px, 8vw, 108px);
}

.page-about .portfolio-qr-card {
  background: #000000;
  border-radius: 30px;
}

.page-about .portfolio-qr-card::before {
  inset: 2px;
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.86) 46%, rgba(0, 0, 0, 0.28) 76%, rgba(0, 0, 0, 0) 100%);
  filter: blur(42px);
  opacity: 1;
}

.page-about .portfolio-qr-image {
  padding: 12px;
  background: #000000;
  border-radius: 30px;
}

.page-about .will-reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(12px);
  transition: opacity 0.82s ease, transform 0.82s cubic-bezier(0.22, 1, 0.36, 1), filter 0.82s ease;
}

.page-about .will-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (max-width: 1180px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .about-capabilities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .team-spotlight {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .team-header,
  .team-details {
    transform: none;
  }

  .team-header {
    top: 8px;
  }

  .team-title {
    white-space: normal;
    font-size: clamp(34px, 6vw, 56px);
  }

  .team-spotlight {
    margin-top: 10px;
  }

  .team-stage,
  .team-portrait {
    min-height: 900px;
  }

  .team-stage {
    margin-top: -22px;
    margin-left: clamp(-220px, -14vw, -56px);
    margin-right: clamp(-26px, -3vw, 0px);
  }
}

@media (max-width: 900px) {
  .about-page {
    padding-top: 104px;
  }

  .about-stats-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-capabilities {
    padding-top: 54px;
  }

  .about-values {
    padding-top: 76px;
  }

  .about-capabilities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .team-stage,
  .team-portrait {
    min-height: 760px;
  }

  .team-details {
    max-width: none;
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  html {
    max-width: 100%;
    overflow-x: hidden;
  }

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

  body.page-about .about-page,
  body.page-about .team-section {
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
  }

  .about-page {
    padding-top: 92px;
  }

  .about-hero {
    padding-top: 18px;
  }

  .about-page-title {
    font-size: clamp(40px, 13vw, 56px);
    max-width: 11ch;
    line-height: 1.1;
  }

  .about-page-lead,
  .about-section-lead,
  .about-capability-card p,
  .about-value-card p,
  .team-description {
    font-size: 14px;
    line-height: 1.7;
  }

  .about-hero-actions {
    width: 100%;
  }

  .about-hero-actions .btn {
    width: 100%;
  }

  .about-stats-band {
    grid-template-columns: 1fr;
    margin-top: 64px;
  }

  .about-stat-card {
    padding-top: 16px;
  }

  .team-section {
    padding: 94px 0 22px;
    overflow: hidden;
    background:
      radial-gradient(circle at 18% 58%, rgba(56, 209, 255, 0.05) 0%, rgba(56, 209, 255, 0.016) 30%, rgba(5, 5, 9, 0) 58%),
      radial-gradient(circle at 82% 50%, rgba(255, 102, 153, 0.05) 0%, rgba(255, 102, 153, 0.016) 32%, rgba(5, 5, 9, 0) 60%),
      #050509;
  }

  .team-title,
  .about-section-title {
    max-width: 16ch;
  }

  .team-header {
    top: 0;
  }

  .team-spotlight {
    margin-top: 2px;
    gap: 10px;
  }

  .team-stage,
  .team-portrait {
    min-height: 500px;
  }

  .team-stage {
    margin-top: -28px;
    margin-left: -20px;
    margin-right: -20px;
  }

  .team-stage::before {
    content: "";
    position: absolute;
    top: -10%;
    bottom: -14%;
    left: 0;
    width: 58px;
    z-index: 4;
    pointer-events: none;
    background: linear-gradient(90deg, #050509 0%, rgba(5, 5, 9, 0.82) 38%, rgba(5, 5, 9, 0) 100%);
  }

  .team-stage::after {
    content: "";
    position: absolute;
    left: -18px;
    right: -18px;
    bottom: -62px;
    height: 248px;
    z-index: 4;
    pointer-events: none;
    background:
      radial-gradient(ellipse 86% 50% at 50% 18%, rgba(5, 5, 9, 0) 0%, rgba(5, 5, 9, 0.22) 34%, rgba(5, 5, 9, 0.82) 72%, #050509 100%),
      linear-gradient(180deg, rgba(5, 5, 9, 0) 0%, rgba(5, 5, 9, 0.28) 18%, rgba(5, 5, 9, 0.88) 58%, #050509 100%);
    filter: blur(22px);
  }

  .team-portrait::before,
  .team-portrait::after {
    inset: -10% -12% -16%;
  }

  .team-portrait {
    background:
      radial-gradient(circle at 16% 56%, rgba(56, 209, 255, 0.05) 0%, rgba(56, 209, 255, 0.012) 34%, rgba(6, 7, 11, 0) 60%),
      radial-gradient(circle at 84% 48%, rgba(255, 102, 153, 0.05) 0%, rgba(255, 102, 153, 0.012) 34%, rgba(6, 7, 11, 0) 62%),
      linear-gradient(180deg, #06070b 0%, #07060c 100%);
  }

  .team-portrait::after {
    background:
      radial-gradient(ellipse 86% 34% at 50% 0%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.92) 22%, rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.08) 72%, rgba(0, 0, 0, 0) 100%),
      radial-gradient(ellipse 108% 54% at 50% 100%, rgba(5, 5, 9, 1) 0%, rgba(5, 5, 9, 0.98) 26%, rgba(5, 5, 9, 0.84) 50%, rgba(5, 5, 9, 0.32) 78%, rgba(5, 5, 9, 0) 100%),
      linear-gradient(180deg, rgba(5, 5, 9, 0.88) 0%, rgba(5, 5, 9, 0.38) 16%, rgba(5, 5, 9, 0) 34%, rgba(5, 5, 9, 0) 48%, rgba(5, 5, 9, 0.68) 76%, #050509 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.42) 14%, rgba(0, 0, 0, 0.04) 30%, rgba(0, 0, 0, 0.04) 70%, rgba(0, 0, 0, 0.42) 86%, rgba(0, 0, 0, 0.98) 100%);
    filter: blur(58px);
  }

  .team-video {
    top: -22%;
    left: var(--team-video-left, 68%);
    width: 152%;
    height: 154%;
    margin-left: -76%;
    object-position: 50% 45%;
    -webkit-mask-image:
      radial-gradient(ellipse 60% 80% at 55% 44%, #000 0%, #000 32%, rgba(0, 0, 0, 0.96) 46%, rgba(0, 0, 0, 0.72) 60%, rgba(0, 0, 0, 0.24) 78%, transparent 98%),
      linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.92) 6%, #000 16%, #000 100%),
      linear-gradient(180deg, transparent 0%, #000 12%, #000 64%, rgba(0, 0, 0, 0.62) 78%, transparent 96%);
    mask-image:
      radial-gradient(ellipse 60% 80% at 55% 44%, #000 0%, #000 32%, rgba(0, 0, 0, 0.96) 46%, rgba(0, 0, 0, 0.72) 60%, rgba(0, 0, 0, 0.24) 78%, transparent 98%),
      linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.92) 6%, #000 16%, #000 100%),
      linear-gradient(180deg, transparent 0%, #000 12%, #000 64%, rgba(0, 0, 0, 0.62) 78%, transparent 96%);
  }

  .team-details {
    width: min(100%, 376px);
    margin: -82px auto 0;
    padding-inline: 18px;
    gap: 10px;
  }

  .team-name,
  .team-description,
  .team-role {
    width: 100%;
    max-width: none;
  }

  .team-name {
    font-size: clamp(25px, 8.8vw, 40px);
    line-height: 0.96;
    letter-spacing: -0.055em;
    white-space: nowrap;
  }

  .team-description {
    font-size: 13px;
    line-height: 1.66;
  }

  .team-role {
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 0.14em;
  }

  .team-controls {
    justify-content: center;
    width: 100%;
    gap: 14px;
    margin-top: 10px;
  }

  .team-nav {
    width: 46px;
    height: 46px;
  }

  .about-capabilities-grid {
    grid-template-columns: 1fr;
  }

  .about-capability-card {
    min-height: auto;
  }

  .about-values {
    padding-bottom: 82px;
  }

  .page-about .final-cta-section {
    padding-top: 30px;
  }
}

@keyframes about-title-settle {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 0.72;
    transform: translateY(0);
  }
}

@keyframes about-title-dust {
  0% {
    opacity: 0;
    transform: translateX(0);
  }
  24% {
    opacity: 0.58;
  }
  100% {
    opacity: 0;
    transform: translateX(54px);
  }
}

@keyframes team-finished-breathe {
  0%,
  100% {
    transform: scale(1.08);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes team-pulse-breathe {
  0%,
  100% {
    opacity: 0.62;
    transform: translateX(-50%) scale(0.98);
  }
  50% {
    opacity: 0.92;
    transform: translateX(-50%) scale(1.04);
  }
}
