.pages.about {
  /* -------------------------
     HERO
     ------------------------- */

  .about-hero {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 0;
    margin: 20px auto 60px auto;
    text-align: center;
    position: relative;
    overflow: hidden;

    .about-hero__col--text {
      grid-row: 1;
      grid-column: 1;
      z-index: 1;
      align-self: end;
      padding-top: 200px;
      padding-bottom: 40px;
    }

    .about-hero__col--photo {
      grid-row: 1;
      grid-column: 1;
      order: -1;
      z-index: 0;
      align-self: start;
      position: relative;

      img {
        max-width: 280px;
        height: auto;
        margin: 0 auto;
        display: block;
      }

      &::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60%;
        background: linear-gradient(to bottom, transparent, var(--color-bg));
        pointer-events: none;
      }
    }
  }

  .section-label {
    font-family: var(--font-oxygen);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-purple);
    margin: 0 0 24px;
    display: block;
  }

  .about-hero__heading {
    font-family: var(--font-oxygen);
    font-size: clamp(2.5rem, 8vw, var(--font-size-xxl));
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 24px;
  }

  .about-hero__accent {
    color: var(--color-purple);
  }

  .about-hero__lead {
    font-family: var(--font-nunito-sans);
    font-size: var(--font-size-2xl-3);
    color: var(--color-gray-400);
    line-height: 1.7;
    margin: 0 0 36px;
  }

  .about-hero__stats {
    display: flex;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }

  .about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    width: 100%;

    &:first-child {
      padding-top: 0;
    }

    &:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
  }

  @media (min-width: 640px) {
    .about-hero__stats {
      flex-direction: row;
      align-items: stretch;
    }

    .about-stat {
      padding: 0 20px;
      border-bottom: none;
      border-right: 1px solid rgba(255, 255, 255, 0.12);
      width: auto;

      &:first-child {
        padding-top: 0;
        padding-left: 0;
      }

      &:last-child {
        border-right: none;
        padding-bottom: 0;
        padding-right: 0;
      }
    }
  }

  .about-stat__number {
    font-family: var(--font-oxygen);
    font-size: var(--font-size-16xl);
    font-weight: 700;
    color: var(--color-purple);
    line-height: 1;
  }

  .about-stat__label {
    font-family: var(--font-nunito-sans);
    font-size: var(--font-size-xs);
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 6px;
    white-space: nowrap;
  }

  @media (min-width: 768px) {
    .about-hero {
      text-align: left;
      margin-bottom: 80px;

      &::before {
        content: "HUMAN";
        font-family: var(--font-big-shoulders-stencil-text);
        font-size: clamp(8rem, 18vw, 18rem);
        color: transparent;
        -webkit-text-stroke: 1px rgba(155, 81, 224, 0.12);
        position: absolute;
        top: 50%;
        right: -30px;
        transform: translateY(-50%);
        white-space: nowrap;
        pointer-events: none;
        user-select: none;
        z-index: 0;
        line-height: 1;
      }

      .about-hero__col--text {
        align-self: center;
        padding-top: 0;
        max-width: 75%;
        z-index: 1;
      }

      .about-hero__col--photo {
        justify-self: end;
        align-self: start;

        &::after {
          display: none;
        }
      }

      .about-hero__stats {
        justify-content: flex-start;
      }

      .about-stat {
        align-items: flex-start;
      }
    }
  }

  @media (min-width: 1280px) {
    .about-hero {
      grid-template-columns: 1fr 338px;
      gap: 0 200px;
      margin-bottom: 100px;

      .about-hero__col--text {
        grid-row: auto;
        grid-column: auto;
        z-index: auto;
        align-self: auto;
        padding-top: 0;
        max-width: inherit;
      }

      .about-hero__col--photo {
        grid-row: auto;
        grid-column: auto;
        order: 0;
        z-index: auto;

        img {
          max-width: 100%;
        }
      }
    }
  }

  /* -------------------------
     ROLES SECTION
     ------------------------- */

  .about-roles {
    padding: 60px 0;
  }

  .about-roles__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .about-role-card {
    flex: 0 0 100%;
    background: var(--color-bg);
    border-radius: 8px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;

    &:hover {
      border-color: rgba(155, 81, 224, 0.4);
    }

    i {
      font-size: 1.75rem;
      color: var(--color-purple);
      display: block;
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }

    h3 {
      font-family: var(--font-oxygen);
      font-size: var(--font-size-2xl-3);
      color: var(--color-white);
      margin: 0 0 10px;
      position: relative;
      z-index: 1;
    }

    p {
      font-family: var(--font-nunito-sans);
      font-size: var(--font-size-base);
      color: var(--color-gray-400);
      margin: 0;
      line-height: 1.6;
      position: relative;
      z-index: 1;
    }
  }

  .about-role-card__num {
    position: absolute;
    top: -8px;
    right: 10px;
    font-family: var(--font-big-shoulders-stencil-text);
    font-size: 5.5rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(155, 81, 224, 0.18);
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }

  @media (min-width: 640px) {
    .about-role-card {
      flex: 0 0 calc(50% - 8px);
    }
  }

  @media (min-width: 768px) {
    .about-roles {
      padding: 80px 0;
    }
  }

  @media (min-width: 1024px) {
    .about-role-card {
      flex: 0 0 calc(33.333% - 11px);
    }
  }

  /* -------------------------
     STORY SECTION
     ------------------------- */

  .about-story {
    background: url("/assets/who-am-i-bg-0d9e4838.png") no-repeat center center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
  }

  .about-story__inner {
    width: 100%;
    max-width: 680px;
  }

  .about-story__badge-wrap {
    text-align: center;
    margin-bottom: 40px;
  }

  .about-story__badge {
    background: var(--color-purple);
    rotate: -4deg;
    border-radius: 4px;
    font-family: var(--font-oxygen);
    font-size: var(--font-size-16xl);
    text-align: center;
    text-transform: uppercase;
    margin: 0 auto;
    padding: 15px 24px;
    display: inline-block;
    min-width: 239px;
  }

  .about-story__body {
    text-align: center;

    p {
      font-family: var(--font-nunito-sans);
      font-size: var(--font-size-2xl-3);
      color: var(--color-gray-400);
      line-height: 1.8;
      margin: 0 0 24px;

      &:last-child {
        margin-bottom: 0;
      }
    }
  }

  @media (min-width: 768px) {
    .about-story {
      padding: 100px 20px;
      min-height: 510px;
      justify-content: center;
    }
  }

  /* -------------------------
     CTA SECTION
     ------------------------- */

  .about-cta {
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid rgba(155, 81, 224, 0.35);
  }

  .about-cta__heading {
    font-family: var(--font-oxygen);
    font-size: clamp(1.75rem, 5vw, var(--font-size-xxl));
    font-weight: 700;
    margin: 0 0 20px;
  }

  .about-cta__sub {
    font-family: var(--font-nunito-sans);
    font-size: var(--font-size-2xl-3);
    color: var(--color-gray-400);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 40px;
  }

  .about-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  @media (min-width: 768px) {
    .about-cta {
      padding: 120px 0;
    }
  }
}
