.aboutMe-page {
  background: #07090d;
  color: #f3f6fb;
  font-family: inherit;
  overflow: hidden;
}

.aboutMe-page * {
  box-sizing: border-box;
}

.aboutMe-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0;
}

.aboutMe-kicker {
  display: block;
  color: #5aa7ff;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}

.aboutMe-center {
  text-align: center;
}

.aboutMe-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 20px 90px;
  isolation: isolate;
}

.aboutMe-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(7,9,13,.15), rgba(7,9,13,.75) 55%, #07090d 100%),
    radial-gradient(circle at 70% 40%, rgba(64,139,255,.18), transparent 38%);
  z-index: -1;
}

.aboutMe-heroMedia {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.aboutMe-heroMedia img,
.aboutMe-heroMedia video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aboutMe-heroContent {
  width: min(1180px, 100%);
  margin: 0 auto;
  max-width: 640px;
}

.aboutMe-hero h1,
.aboutMe-copy h2,
.aboutMe-featured h2 {
  font-size: clamp(38px, 6vw, 82px);
  line-height: 0.95;
  margin: 0 0 24px;
  letter-spacing: -0.04em;
}

.aboutMe-copy h2,
.aboutMe-featured h2 {
  font-size: clamp(30px, 4vw, 54px);
}

.aboutMe-hero p,
.aboutMe-copy p,
.aboutMe-featured p,
.aboutMe-services p,
.aboutMe-experience p {
  color: rgba(243,246,251,.72);
  line-height: 1.75;
}

.aboutMe-button,
.aboutMe-toggleExperience {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(90,167,255,.35);
  background: rgba(255,255,255,.04);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  cursor: pointer;
  transition: .25s ease;
}

.aboutMe-button:hover,
.aboutMe-toggleExperience:hover {
  background: rgba(90,167,255,.16);
  border-color: rgba(90,167,255,.75);
}

.aboutMe-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.aboutMe-profileImage {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding: 10px;
}

.aboutMe-profileImage img {
  width: 100%;
  display: block;
  filter: grayscale(1);
}

.aboutMe-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.aboutMe-services article,
.aboutMe-featured,
.aboutMe-experience,
.aboutMe-tools {
  border: 1px solid rgba(255,255,255,.09);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}

.aboutMe-services article {
  padding: 34px 26px;
  text-align: center;
}

.aboutMe-services img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 22px;
}

.aboutMe-services h3,
.aboutMe-experience h3 {
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.aboutMe-tools {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
  padding: 34px;
  text-align: center;
}

.aboutMe-tools img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 12px;
}

.aboutMe-tools span {
  display: block;
  color: rgba(255,255,255,.76);
  font-size: 13px;
}

.aboutMe-featured {
  position: relative;
  min-height: 360px;
  padding: 46px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.aboutMe-featured img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
  z-index: 0;
}

.aboutMe-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #07090d 0%, rgba(7,9,13,.65) 42%, rgba(7,9,13,.25) 100%);
  z-index: 1;
}

.aboutMe-featured div {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.aboutMe-experience {
  max-width: 780px;
  margin: 0 auto;
  padding: 44px;
}

.aboutMe-experience article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  position: relative;
  padding-bottom: 42px;
}

.aboutMe-experience article:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 58px;
  bottom: 0;
  width: 1px;
  background: rgba(90,167,255,.35);
}

.aboutMe-experience img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-top: 4px;
}

.aboutMe-experience span {
  color: #5aa7ff;
  font-weight: 700;
  font-size: 14px;
}

.aboutMe-extraExperience {
  display: none;
}

.aboutMe-extraExperience.aboutMe-isOpen {
  display: block;
}

.aboutMe-toggleExperience {
  margin: 10px auto 0;
  display: flex;
}

/* Tablet */
@media (max-width: 900px) {
  .aboutMe-section {
    padding: 64px 0;
  }

  .aboutMe-intro {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .aboutMe-profileImage {
    max-width: 420px;
  }

  .aboutMe-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .aboutMe-tools {
    grid-template-columns: repeat(4, 1fr);
  }

  .aboutMe-featured {
    min-height: 320px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .aboutMe-section {
    width: min(100% - 28px, 460px);
    padding: 52px 0;
  }

  .aboutMe-hero {
    min-height: 86vh;
    padding: 110px 18px 64px;
    align-items: flex-end;
  }

  .aboutMe-hero h1 {
    font-size: 42px;
  }

  .aboutMe-hero p {
    font-size: 15px;
  }

  .aboutMe-button,
  .aboutMe-toggleExperience {
    width: 100%;
  }

  .aboutMe-services {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .aboutMe-services article {
    padding: 26px 16px;
  }

  .aboutMe-services h3 {
    font-size: 13px;
  }

  .aboutMe-services p {
    font-size: 13px;
    line-height: 1.55;
  }

  .aboutMe-tools {
    grid-template-columns: repeat(3, 1fr);
    padding: 24px 16px;
  }

  .aboutMe-featured {
    padding: 28px;
    min-height: 280px;
  }

  .aboutMe-featured::after {
    background: linear-gradient(to top, #07090d 0%, rgba(7,9,13,.75) 48%, rgba(7,9,13,.2) 100%);
  }

  .aboutMe-experience {
    padding: 30px 20px;
  }

  .aboutMe-experience article {
    grid-template-columns: 42px 1fr;
    gap: 18px;
  }

  .aboutMe-experience article:not(:last-child)::after {
    left: 20px;
  }

  .aboutMe-experience h3 {
    font-size: 14px;
  }
}

/* Small Mobile */
@media (max-width: 430px) {
  .aboutMe-hero h1 {
    font-size: 36px;
  }

  .aboutMe-services {
    grid-template-columns: 1fr;
  }

  .aboutMe-tools {
    grid-template-columns: repeat(2, 1fr);
  }
}