.info-page,
.info-view {
  background: #f8f8f8;
}

.info-view {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: none;
  scrollbar-width: thin;
  scrollbar-color: #151515 transparent;
}

.info-header {
  position: sticky;
  top: 36px;
  right: auto;
  left: auto;
  z-index: 80;
  margin: 0 36px -38px;
  background: #f8f8f8;
}

.info-main {
  color: #151515;
}

.info-eyebrow {
  margin: 0;
  color: #707070;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
}

.info-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(420px, 0.96fr) minmax(300px, 1fr);
  grid-template-rows: 1fr auto;
  gap: 28px clamp(28px, 3vw, 52px);
  min-height: max(760px, 100vh);
  padding: 96px max(36px, calc((100vw - 1400px) / 2)) 0;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #f8f8f8 0%,
    #f8f8f8 48%,
    #efffd8 70%,
    #d8ff9f 100%
  );
}

.info-portrait {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: end;
  display: flex;
  justify-content: center;
  height: min(96vh, 1220px);
  margin: 0;
  z-index: 2;
}

.info-portrait img {
  width: auto;
  max-width: none;
  height: 100%;
  display: block;
  will-change: transform;
}

.info-hero-copy {
  grid-column: 3;
  grid-row: 1;
  align-self: start;
  margin-top: clamp(72px, 9vh, 112px);
  z-index: 3;
}

.info-identity {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  margin-top: clamp(72px, 9vh, 112px);
  z-index: 3;
}

.info-identity h1 {
  margin: 0 0 8px;
  font-size: clamp(44px, 3.35vw, 68px);
  font-weight: 600;
  line-height: 0.92;
  white-space: nowrap;
}

.info-role {
  margin: 0;
  font-size: clamp(17px, 1.45vw, 25px);
  line-height: 1.25;
}

.info-intro-text {
  max-width: 37ch;
}

.info-intro-text p {
  margin: 0 0 22px;
  color: #353535;
  font-size: clamp(15px, 1.05vw, 19px);
  line-height: 1.38;
}

.info-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: end;
  margin: 0 0 clamp(48px, 7vh, 76px);
  padding: 0;
  border: 1px solid rgba(21, 21, 21, 0.18);
  z-index: 3;
}

.info-stats-left {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
  width: 100%;
  max-width: 380px;
}

.info-stats-right {
  grid-column: 3;
  grid-row: 2;
  justify-self: end;
  width: 100%;
  max-width: 380px;
}

.info-stats div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 14px 13px;
}

.info-stats div + div {
  border-left: 1px solid rgba(21, 21, 21, 0.18);
}

.info-stats dt,
.info-stats dd {
  margin: 0;
}

.info-stats dt {
  font-size: clamp(28px, 2.2vw, 42px);
  font-weight: 600;
  line-height: 1;
}

.info-stats dd {
  font-size: 12px;
  line-height: 1.2;
}

.info-stats dd span {
  display: block;
  margin-top: 4px;
  color: #707070;
}

.personal-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 600;
  line-height: 0.95;
}

.info-career {
  padding: clamp(90px, 13vh, 160px) clamp(24px, 4vw, 64px);
  color: #f8f8f8;
  background: #151515;
}

.info-career .info-eyebrow {
  color: #999;
}

.info-section-head {
  display: grid;
  grid-template-columns: minmax(150px, 0.4fr) minmax(0, 0.6fr);
  gap: 40px;
  margin-bottom: clamp(70px, 10vh, 120px);
}

.info-section-head h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(36px, 4vw, 66px);
  font-weight: 500;
  line-height: 1;
}

.career-track ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.career-track {
  position: relative;
  padding-top: 26px;
}

.career-line {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  overflow: hidden;
  background: rgba(248, 248, 248, 0.22);
}

.career-line i {
  position: absolute;
  inset: 0;
  display: block;
  background: #aeed00;
  transform: scaleX(0);
  transform-origin: left;
}

.career-track ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.career-track li {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px clamp(12px, 2vw, 30px) 0 0;
  border-right: 1px solid rgba(248, 248, 248, 0.16);
  opacity: 0.34;
  transition: opacity 300ms ease;
}

.career-track li.is-active {
  opacity: 1;
}

.career-track time {
  color: #999;
  font-size: 11px;
}

.career-track strong {
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 500;
  line-height: 1;
}

.info-personal {
  display: grid;
  grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(52px, 9vw, 140px);
  align-items: center;
  padding: clamp(84px, 12vh, 130px) clamp(24px, 4vw, 64px);
  border-top: 1px solid rgba(21, 21, 21, 0.18);
}

.personal-copy p {
  max-width: 43ch;
  margin: 34px 0 0;
  color: #555;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.48;
}

.personal-copy p + p {
  margin-top: 18px;
}

.personal-images {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(160px, 0.82fr);
  align-items: end;
  gap: clamp(16px, 2vw, 30px);
}

.info-placeholder {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  background: #dedede;
  color: #6b6b6b;
}

.personal-image-main {
  min-height: clamp(380px, 48vw, 610px);
}

.personal-image-small {
  min-height: clamp(230px, 30vw, 390px);
}

.info-placeholder span,
.info-placeholder strong {
  font-size: 10px;
  font-weight: 500;
}

.info-contact {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: clamp(56px, 9vw, 150px);
  min-height: 430px;
  padding: clamp(80px, 11vh, 120px) clamp(24px, 4vw, 64px);
  color: #f8f8f8;
  background: #151515;
}

.info-contact h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(54px, 7vw, 112px);
  font-weight: 500;
  line-height: 0.9;
}

.info-contact > div {
  display: grid;
  gap: 24px;
}

.info-contact-button {
  width: 100%;
  min-height: 64px;
  border: 1px solid #f8f8f8;
  background: #f8f8f8;
  color: #151515;
  font: inherit;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: color 220ms ease, background-color 220ms ease;
}

.info-contact-button:hover,
.info-contact-button:focus-visible {
  background: #151515;
  color: #f8f8f8;
}

.info-contact p {
  max-width: 42ch;
  margin: 0;
  color: #aaa;
  font-size: 14px;
  line-height: 1.45;
}

.info-footer {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 4vw, 64px);
  color: #777;
  font-size: 10px;
}

.info-footer a {
  color: #151515;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .info-hero {
    grid-template-columns: minmax(210px, 1fr) minmax(300px, 0.9fr) minmax(220px, 1fr);
    gap: 28px;
    padding-right: 40px;
    padding-left: 40px;
  }

  .info-portrait {
    height: min(78vh, 680px);
  }

  .info-identity h1 {
    font-size: clamp(42px, 5.4vw, 58px);
    white-space: normal;
  }

  .info-stats dd {
    font-size: 10px;
  }

  .info-personal {
    gap: 54px;
  }
}

@media (max-width: 800px) {
  .info-personal,
  .info-contact {
    grid-template-columns: 1fr;
  }

  .info-hero {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    grid-template-areas:
      "portrait"
      "identity"
      "copy"
      "stats-left"
      "stats-right";
    gap: 38px;
    min-height: 0;
    padding: 102px clamp(24px, 5vw, 40px) 72px;
    overflow: visible;
  }

  .info-portrait {
    grid-area: portrait;
    width: 100%;
    height: min(72vh, 720px);
  }

  .info-identity {
    grid-area: identity;
    margin-top: 0;
  }

  .info-identity h1 {
    font-size: clamp(54px, 11vw, 86px);
    white-space: normal;
  }

  .info-hero-copy {
    grid-area: copy;
    margin-top: 0;
  }

  .info-intro-text {
    max-width: 55ch;
  }

  .info-stats {
    margin: 0;
  }

  .info-stats-left {
    grid-area: stats-left;
  }

  .info-stats-right {
    grid-area: stats-right;
  }

  .info-section-head {
    grid-template-columns: 1fr;
  }

  .info-personal {
    align-items: start;
  }

  .info-contact {
    gap: 64px;
    min-height: 560px;
  }
}

@media (max-width: 600px) {
  .info-header {
    top: 24px;
    margin: 0 18px -38px;
  }

  .info-header .demo-button {
    display: none;
  }

  .info-hero,
  .info-career,
  .info-personal,
  .info-contact {
    padding-right: 18px;
    padding-left: 18px;
  }

  .info-hero {
    gap: 34px;
    padding-top: 92px;
    padding-bottom: 66px;
  }

  .info-portrait {
    height: 66vh;
    min-height: 440px;
  }

  .info-identity h1 {
    margin: 0 0 8px;
    font-size: clamp(48px, 16vw, 68px);
  }

  .info-role {
    font-size: 17px;
  }

  .info-intro-text p {
    font-size: 16px;
  }

  .info-stats div {
    min-height: 98px;
    padding: 13px 11px 11px;
  }

  .info-stats dt {
    font-size: 29px;
  }

  .info-career,
  .info-personal {
    gap: 44px;
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .info-career {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .info-section-head {
    gap: 28px;
    margin-bottom: 56px;
  }

  .info-section-head h2 {
    font-size: 38px;
  }

  .career-track {
    padding: 0 0 0 22px;
  }

  .career-line {
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    width: 1px;
    height: auto;
  }

  .career-line i {
    transform: scaleY(0);
    transform-origin: top;
  }

  .career-track ol {
    grid-template-columns: 1fr;
  }

  .career-track li {
    min-height: 114px;
    padding: 0 0 22px 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(248, 248, 248, 0.15);
  }

  .career-track strong {
    font-size: 25px;
  }

  .personal-images {
    grid-template-columns: 1fr;
  }

  .personal-image-main {
    min-height: 118vw;
  }

  .personal-image-small {
    min-height: 76vw;
  }

  .info-contact {
    gap: 72px;
    min-height: 560px;
    padding-top: 78px;
    padding-bottom: 76px;
  }

  .info-contact h2 {
    font-size: clamp(50px, 15vw, 66px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .info-portrait img,
  [data-reveal],
  .career-line i,
  .career-track li {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
}

