:root {
  --about-black: #030303;
  --about-ink: #f5f2ea;
  --about-muted: rgba(245, 242, 234, 0.68);
  --about-line: rgba(245, 242, 234, 0.12);
  --about-light: #e8e7e2;
  --about-paper: #f4f2ed;
  --about-accent: #dce84e;
}

.about-page {
  background: var(--about-black);
}

.about-hero {
  display: grid;
  min-height: 100svh;
  padding: 92px clamp(16px, 3vw, 44px) clamp(70px, 8vw, 120px);
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.08), transparent 28%),
    #030303;
  color: var(--about-ink);
}

.about-hero-inner {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 28px;
  text-align: center;
  transform: translateY(clamp(24px, 5vh, 58px));
}

.about-hero h1 {
  display: grid;
  margin: 0;
  color: var(--about-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 7.8vw, 132px);
  font-weight: 400;
  letter-spacing: -0.058em;
  line-height: 0.88;
}

.about-hero-line {
  display: block;
  color: inherit;
  opacity: 1;
  transform: none;
}

.about-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 17px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  transition: transform 320ms cubic-bezier(0.19, 1, 0.22, 1), background 240ms ease, color 240ms ease, border-color 240ms ease;
}

.about-button:hover {
  transform: translateY(-2px);
}

.about-button-light {
  background: var(--about-ink);
  color: #050505;
}

.about-button-light:hover {
  background: var(--about-ink);
  color: #050505;
}

.about-button-dark {
  background: #070707;
  color: var(--about-ink);
}

.about-button-outline {
  border: 1px solid rgba(0, 0, 0, 0.18);
  color: #070707;
}

.about-intro {
  padding: clamp(50px, 8vw, 120px) clamp(16px, 3vw, 44px);
  background: #030303;
  color: var(--about-ink);
}

.about-intro-inner {
  display: grid;
  gap: 18px;
  max-width: 1240px;
}

.about-intro p {
  max-width: 1180px;
  margin: 0;
  font-size: clamp(28px, 4.2vw, 72px);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.about-intro span {
  max-width: 720px;
  color: var(--about-muted);
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1.32;
}

.identity-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 5.5vw, 82px);
  padding: clamp(72px, 9vw, 128px) clamp(16px, 3vw, 44px) clamp(76px, 9vw, 128px);
  background: #030303;
  color: var(--about-ink);
  border-top: 1px solid var(--about-line);
}

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

.identity-lines {
  display: grid;
}

.identity-line {
  display: block;
  padding: clamp(15px, 2vw, 24px) 0;
  border-bottom: 1px solid var(--about-line);
  color: var(--about-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7.8vw, 118px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.identity-copy {
  display: grid;
  align-content: center;
  gap: clamp(18px, 3vw, 34px);
}

.identity-copy article {
  padding-top: 16px;
  border-top: 1px solid var(--about-line);
}

.identity-copy h3 {
  margin: 0 0 10px;
  color: rgba(245, 242, 234, 0.58);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.identity-copy p {
  margin: 0;
  color: rgba(245, 242, 234, 0.76);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.42;
}

.people-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(210px, 1fr));
  gap: clamp(14px, 2vw, 28px);
  overflow-x: auto;
  padding: 0 clamp(16px, 3vw, 44px) clamp(78px, 9vw, 140px);
  background: #030303;
  color: var(--about-ink);
}

.person-card {
  min-width: 210px;
}

.person-card img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  border-radius: 14px;
  filter: grayscale(0.1) contrast(1.02);
  transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1), filter 350ms ease;
}

.person-card:hover img {
  transform: translateY(-8px) scale(1.03);
  filter: grayscale(0) contrast(1.04);
}

.person-card-copy {
  display: grid;
  gap: 11px;
  margin-top: 15px;
}

.person-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(24px, 2.35vw, 38px);
  font-weight: 520;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.person-card p {
  max-width: 29ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.32;
}

.about-light {
  background: var(--about-light);
  color: #080808;
}

.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 60px);
  align-items: center;
  padding: clamp(64px, 8.5vw, 126px) clamp(16px, 3vw, 44px);
}

.about-light .split-section + .split-section {
  padding-top: clamp(44px, 6vw, 84px);
}

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

.about-kicker {
  margin: 0 0 18px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.split-copy h2 {
  max-width: 760px;
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.8vw, 78px);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.96;
}

.split-copy p {
  max-width: 620px;
  margin: 0 0 16px;
  color: rgba(0, 0, 0, 0.66);
  font-size: clamp(15px, 1.28vw, 19px);
  line-height: 1.38;
}

.split-copy .about-button {
  margin-top: 14px;
}

.network-visual,
.process-image,
.build-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 18px;
  background: #d3d1ca;
  clip-path: inset(8% 0 0 0 round 18px);
  transition: clip-path 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

.network-visual.is-visible,
.process-image.is-visible {
  clip-path: inset(0 0 0 0 round 18px);
}

.build-card {
  clip-path: inset(0 0 0 0 round 18px);
}

.network-visual img,
.process-image img,
.build-card img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.network-visual::after,
.process-image::after,
.build-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.36));
}

.network-dots {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.network-dots i {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--about-accent);
  box-shadow: 0 0 0 8px rgba(220, 232, 78, 0.16);
}

.network-dots i:nth-child(1) { left: 18%; top: 18%; }
.network-dots i:nth-child(2) { left: 42%; top: 26%; }
.network-dots i:nth-child(3) { left: 70%; top: 18%; }
.network-dots i:nth-child(4) { left: 24%; top: 58%; }
.network-dots i:nth-child(5) { left: 58%; top: 54%; }
.network-dots i:nth-child(6) { left: 82%; top: 64%; }
.network-dots i:nth-child(7) { left: 36%; top: 78%; }
.network-dots i:nth-child(8) { left: 68%; top: 84%; }

.work-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.work-steps span {
  padding: 12px 13px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.build-card div {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 8px;
  color: #fff;
}

.build-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.build-card strong {
  max-width: 12ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.85;
}

.about-final-cta {
  padding: clamp(80px, 11vw, 165px) clamp(16px, 3vw, 44px);
  text-align: center;
}

.about-final-inner {
  display: grid;
  justify-items: center;
  gap: 24px;
}

.about-final-cta h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(38px, 5.5vw, 88px);
  font-weight: 820;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.about-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 850ms cubic-bezier(0.19, 1, 0.22, 1), transform 950ms cubic-bezier(0.19, 1, 0.22, 1);
}

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

@media (max-width: 1024px) {
  .identity-section,
  .split-section,
  .split-reverse {
    grid-template-columns: 1fr;
  }

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

  .people-row {
    grid-template-columns: repeat(4, minmax(230px, 1fr));
  }
}

@media (max-width: 720px) {
  .about-hero {
    padding-top: 120px;
    min-height: 100svh;
  }

  .about-hero-inner {
    transform: translateY(clamp(18px, 4vh, 36px));
  }

  .about-hero h1 {
    font-size: clamp(44px, 12.5vw, 74px);
  }

  .about-intro p {
    font-size: clamp(30px, 9vw, 48px);
  }

  .identity-section {
    padding-top: 70px;
    gap: 34px;
  }

  .identity-line {
    font-size: clamp(40px, 13vw, 68px);
    letter-spacing: -0.04em;
    line-height: 0.96;
  }

  .identity-copy {
    grid-template-columns: 1fr;
  }

  .people-row {
    margin: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .split-section {
    padding-block: 64px;
  }

  .about-light .split-section + .split-section {
    padding-top: 38px;
  }

  .network-visual,
  .process-image,
  .build-card,
  .network-visual img,
  .process-image img,
  .build-card img {
    min-height: 420px;
  }

  .work-steps {
    grid-template-columns: 1fr;
  }

  .about-actions {
    display: grid;
    width: 100%;
  }

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

@media (max-width: 430px) {
  .about-hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .split-copy h2 {
    font-size: clamp(32px, 9.5vw, 46px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-reveal,
  .identity-line {
    transform: none;
    animation: none;
  }
}
