.about-page {
  --paper: #f5f5f7;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(29, 29, 31, .12);
  --accent: #0071e3;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "PingFang SC", "Noto Sans SC Variable", sans-serif;
  font-optical-sizing: auto;
}

.about-page main {
  padding-bottom: 82px;
}

.about-hero {
  padding: 82px 0 54px;
}

.about-eyebrow {
  margin: 0 0 25px;
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.about-hero h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(3.75rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.01;
  letter-spacing: -.055em;
}

.about-lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.6vw, 1.3rem);
  line-height: 1.68;
  letter-spacing: -.012em;
}

.about-learn {
  min-height: 44px;
  margin-top: 17px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 560;
  transition: color .16s ease-out, transform 100ms ease-out;
}

.about-learn span {
  font-size: 1.2em;
  transition: transform .28s cubic-bezier(.22, 1, .36, 1);
}

.about-learn:hover { color: #0077ed; }
.about-learn:hover span { transform: translateX(4px); }
.about-learn:active { transform: scale(.97); }

.about-brands {
  display: grid;
  grid-template-columns: minmax(0, 1.68fr) minmax(280px, 1fr);
  gap: 22px;
}

.about-brand-card {
  position: relative;
  min-height: 394px;
  overflow: hidden;
  display: block;
  background: #fff;
  border: 1px solid rgba(29, 29, 31, .08);
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .035);
  isolation: isolate;
  transform: translateZ(0);
  transition: transform .38s cubic-bezier(.22, 1, .36, 1), box-shadow .38s cubic-bezier(.22, 1, .36, 1), border-color .18s ease-out;
}

.about-brand-card:hover {
  border-color: rgba(29, 29, 31, .14);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .075);
  transform: translate3d(0, -4px, 0);
}

.about-brand-card:active {
  box-shadow: 0 8px 22px rgba(0, 0, 0, .045);
  transform: scale(.985);
  transition-duration: 100ms;
}

.about-brand-card:focus-visible,
.about-resource:focus-visible,
.about-actions a:focus-visible,
.about-learn:focus-visible {
  outline: 3px solid rgba(0, 113, 227, .8);
  outline-offset: 4px;
}

.about-brand-card--hhj::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, .99) 0%, rgba(255, 255, 255, .96) 35%, rgba(255, 255, 255, .45) 54%, rgba(255, 255, 255, 0) 70%);
}

.about-brand-card--hhj img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  transition: transform .48s cubic-bezier(.22, 1, .36, 1);
}

.about-brand-card--hhj:hover img {
  transform: scale(1.018);
}

.about-brand-copy {
  position: relative;
  z-index: 2;
  width: min(47%, 320px);
  padding: 44px 0 40px 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-brand-copy > strong {
  font-size: clamp(2rem, 3.3vw, 3.1rem);
  font-weight: 720;
  line-height: 1;
  letter-spacing: -.045em;
}

.about-brand-copy > span:not(.about-visually-hidden) {
  margin-top: 20px;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.5;
}

.about-brand-copy > i {
  width: 30px;
  height: 1px;
  margin: 20px 0;
  display: block;
  background: rgba(29, 29, 31, .25);
}

.about-brand-copy > small {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: .005em;
}

.about-brand-card--kver {
  background: linear-gradient(145deg, #fff 0%, #fff 56%, #f6faff 100%);
}

.about-brand-card--kver .about-brand-copy {
  width: 100%;
  padding-right: 34px;
}

.about-map {
  position: absolute;
  z-index: 1;
  right: -8%;
  bottom: -11%;
  width: 114%;
  height: 64%;
  overflow: hidden;
  background:
    linear-gradient(32deg, transparent 47%, rgba(0, 113, 227, .09) 48%, rgba(0, 113, 227, .09) 50%, transparent 51%) 0 0 / 66px 66px,
    linear-gradient(122deg, transparent 47%, rgba(0, 113, 227, .08) 48%, rgba(0, 113, 227, .08) 50%, transparent 51%) 0 0 / 74px 74px,
    linear-gradient(rgba(0, 113, 227, .055) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(90deg, rgba(0, 113, 227, .055) 1px, transparent 1px) 0 0 / 42px 42px;
  opacity: .86;
  transform: perspective(420px) rotateX(57deg) rotateZ(-8deg) scale(1.12);
  transform-origin: center bottom;
}

.about-map::before,
.about-map::after {
  position: absolute;
  left: 54%;
  top: 45%;
  content: "";
  border: 1px solid rgba(0, 113, 227, .24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.about-map::before { width: 112px; height: 112px; }
.about-map::after { width: 174px; height: 174px; opacity: .52; }

.about-map-pin {
  position: absolute;
  z-index: 3;
  left: 55%;
  bottom: 89px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #42a5ff, #0071e3);
  border: 5px solid rgba(255, 255, 255, .94);
  border-radius: 50% 50% 50% 8px;
  box-shadow: 0 18px 30px rgba(0, 113, 227, .25);
  transform: translateX(-50%) rotate(-45deg);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}

.about-map-pin b {
  width: 11px;
  height: 11px;
  background: #fff;
  border-radius: 50%;
}

.about-brand-card--kver:hover .about-map-pin {
  transform: translateX(-50%) translateY(-4px) rotate(-45deg);
}

.about-resources {
  margin-top: 22px;
  padding: 28px 30px 26px;
  background: #fff;
  border: 1px solid rgba(29, 29, 31, .08);
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .03);
}

.about-resources h2 {
  margin: 0 0 24px;
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.about-resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-resource {
  min-width: 0;
  min-height: 86px;
  padding: 7px 24px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  border-left: 1px solid rgba(29, 29, 31, .12);
  transition: color .16s ease-out, transform 100ms ease-out;
}

.about-resource:first-child {
  padding-left: 0;
  border-left: 0;
}

.about-resource:hover { color: var(--accent); }
.about-resource:active { transform: scale(.975); }

.about-resource strong,
.about-resource small {
  display: block;
}

.about-resource strong {
  color: var(--ink);
  font-size: .88rem;
  font-weight: 650;
  line-height: 1.4;
}

.about-resource small {
  margin-top: 5px;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.55;
}

.about-resource-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: block;
  color: var(--accent);
}

.about-resource-icon--1::before {
  position: absolute;
  inset: 5px 8px 3px;
  content: "";
  border: 2px solid currentColor;
  border-radius: 4px;
}

.about-resource-icon--1::after {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 12px;
  height: 2px;
  content: "";
  background: currentColor;
  box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
}

.about-resource-icon--2::before {
  position: absolute;
  inset: 4px;
  content: "";
  border: 2px solid currentColor;
  border-radius: 50%;
}

.about-resource-icon--2::after {
  position: absolute;
  left: 13px;
  top: 13px;
  width: 12px;
  height: 7px;
  content: "";
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.about-resource-icon--3::before {
  position: absolute;
  inset: 6px 3px 5px;
  content: "";
  border: 2px solid currentColor;
  border-radius: 4px 4px 8px 8px;
  background: linear-gradient(90deg, transparent calc(50% - 1px), currentColor calc(50% - 1px), currentColor calc(50% + 1px), transparent calc(50% + 1px));
}

.about-resource-icon--3::after {
  position: absolute;
  left: 19px;
  bottom: 3px;
  width: 2px;
  height: 7px;
  content: "";
  background: #fff;
}

.about-resource-icon--4::before {
  position: absolute;
  left: 19px;
  top: 4px;
  width: 2px;
  height: 21px;
  content: "";
  background: currentColor;
  box-shadow: -6px 14px 0 -1px currentColor, 6px 14px 0 -1px currentColor;
}

.about-resource-icon--4::after {
  position: absolute;
  left: 14px;
  top: 16px;
  width: 9px;
  height: 9px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.about-resource-icon--4 i {
  position: absolute;
  left: 7px;
  right: 7px;
  bottom: 3px;
  height: 10px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 3px 3px;
}

.about-actions {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-actions a {
  min-height: 66px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(29, 29, 31, .1);
  border-radius: 16px;
  font-size: .9rem;
  font-weight: 650;
  box-shadow: 0 7px 20px rgba(0, 0, 0, .02);
  transition: color .16s ease-out, background-color .16s ease-out, border-color .16s ease-out, transform .34s cubic-bezier(.22, 1, .36, 1), box-shadow .34s cubic-bezier(.22, 1, .36, 1);
}

.about-actions a span {
  color: var(--accent);
  font-size: 1.25rem;
  transition: transform .28s cubic-bezier(.22, 1, .36, 1);
}

.about-actions a:hover {
  color: var(--accent);
  background: #fff;
  border-color: rgba(0, 113, 227, .2);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .05);
  transform: translateY(-2px);
}

.about-actions a:hover span { transform: translateX(4px); }

.about-actions a:active {
  transform: scale(.98);
  transition-duration: 100ms;
}

.about-verification {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto 96px;
  padding: 70px 0;
  border-top: 1px solid var(--line);
}

.about-verification-head {
  display: grid;
  grid-template-columns: .65fr 1fr 1.15fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 42px;
}

.about-verification-head > p {
  margin: 8px 0 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
}

.about-verification-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.about-verification-head > div {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.about-verification-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}

.about-verification-grid article {
  min-height: 210px;
  padding: 28px;
  background: #fff;
}

.about-verification-grid article + article {
  border-left: 1px solid var(--line);
}

.about-verification-grid span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.about-verification-grid h3 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-size: 19px;
}

.about-verification-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

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

@media (max-width: 920px) {
  .about-brand-copy {
    width: 55%;
    padding-left: 32px;
  }

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

  .about-resource:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .about-resource:nth-child(n + 3) {
    margin-top: 18px;
    padding-top: 22px;
    border-top: 1px solid rgba(29, 29, 31, .1);
  }

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

  .about-verification-head > div {
    grid-column: 2;
  }

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

  .about-verification-grid article:nth-child(3) {
    border-left: 0;
  }

  .about-verification-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .about-page main { padding-bottom: 62px; }
  .about-hero { padding: 64px 0 42px; }

  .about-hero h1 {
    font-size: clamp(3.15rem, 14vw, 4.8rem);
    line-height: 1;
  }

  .about-lead {
    max-width: 34rem;
    margin-top: 22px;
    font-size: 1.02rem;
  }

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

  .about-brand-card { min-height: 380px; }
  .about-brand-card--kver { min-height: 330px; }

  .about-brand-card--hhj::after {
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, .96) 35%, rgba(255, 255, 255, .22) 60%, rgba(255, 255, 255, 0) 75%);
  }

  .about-brand-card--hhj img {
    object-position: 60% 54%;
  }

  .about-brand-copy,
  .about-brand-card--kver .about-brand-copy {
    width: 100%;
    padding: 30px 28px;
  }

  .about-brand-copy > strong { font-size: 2.25rem; }
  .about-brand-copy > span:not(.about-visually-hidden) { margin-top: 12px; }
  .about-brand-copy > i { margin: 14px 0; }

  .about-map-pin { bottom: 74px; }

  .about-resources {
    padding: 25px 22px 22px;
  }

  .about-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-verification {
    width: min(100% - 32px, 680px);
    margin-bottom: 64px;
    padding: 48px 0;
  }

  .about-verification-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-verification-head > div {
    grid-column: auto;
  }

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

  .about-verification-grid article {
    min-height: 0;
  }

  .about-verification-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 500px) {
  .about-resource-grid { grid-template-columns: 1fr; }

  .about-resource,
  .about-resource:first-child,
  .about-resource:nth-child(3) {
    min-height: 76px;
    padding: 16px 0;
    border-top: 1px solid rgba(29, 29, 31, .1);
    border-left: 0;
  }

  .about-resource:first-child { border-top: 0; }
  .about-resource:nth-child(n + 3) { margin-top: 0; }
  .about-brand-card--hhj img { object-position: 64% 58%; }
}

@media (prefers-reduced-motion: reduce) {
  .about-learn,
  .about-learn span,
  .about-brand-card,
  .about-brand-card img,
  .about-map-pin,
  .about-resource,
  .about-actions a,
  .about-actions a span {
    transition-duration: .01ms !important;
    transform: none !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .about-actions a { background: #fff; }
}

@media (prefers-contrast: more) {
  .about-brand-card,
  .about-resources,
  .about-actions a {
    border-color: #1d1d1f;
  }

  .about-resource + .about-resource {
    border-color: #1d1d1f;
  }
}
