/* about-us.html — page-specific styles */

/* =====================================================================
   ABOUT-US PAGE SPECIFIC
   ===================================================================== */
    .about-hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      text-align: left;
      padding: 160px 0 100px;
      position: relative;
      overflow: hidden;
    }

    #heroCanvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
      opacity: 0.55;
    }

    .about-hero::after {
      content: '';
      position: absolute;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 900px;
      height: 600px;
      background: radial-gradient(ellipse, rgba(123, 92, 246, 0.12) 0%, transparent 65%);
      pointer-events: none;
      z-index: 0;
    }

    /* Editorial two-col grid */
    .about-hero-inner {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 80px;
      align-items: center;
      width: 100%;
      position: relative;
      z-index: 1;
    }

    .about-hero-left {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .about-hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 28px;
      opacity: 0;
      transform: translateY(18px);
      animation: about-hero-reveal 0.7s var(--ease-out-expo) 0.1s forwards;
    }

    .about-hero-eyebrow-line {
      width: 40px;
      height: 2px;
      background: var(--color-purple);
      border-radius: 2px;
    }

    .about-hero-eyebrow-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--color-purple);
    }

    .about-hero-title {
      font-family: var(--font-display);
      font-size: clamp(44px, 7vw, 88px);
      font-weight: 640;
      line-height: 1.07;
      letter-spacing: 0;
      display: inline-block;
      width: fit-content;
      overflow: visible;
      background: linear-gradient(to right, #ffffff 10%, #d8b4fe 40%, #7B5CF6 60%, #d8b4fe 80%, #ffffff 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      -webkit-text-fill-color: transparent;
      margin: 0;
      opacity: 0;
      transform: translateY(24px);
      animation: about-hero-reveal 0.85s var(--ease-out-expo) 0.2s forwards, text-flow 5s linear infinite;
      text-shadow: 0 0 32px rgba(123, 92, 246, 0.18);
    }


    .about-hero-title em {
      font-family: var(--font-accent);
      font-style: italic;
      font-weight: 540;
      background: var(--accent-gradient);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      -webkit-text-fill-color: transparent;
      line-height: 1.12;
      padding: 0.04em 0.14em 0.12em 0.02em;
      margin: -0.04em -0.1em -0.12em -0.02em;
      vertical-align: baseline;
      overflow: visible;
      filter: drop-shadow(0 10px 22px rgba(123, 92, 246, 0.18));
    }

    .about-hero-title em .word {
      color: inherit;
      -webkit-text-fill-color: inherit;
    }

    @keyframes about-hero-reveal {
      from {
        opacity: 0;
        transform: translateY(24px);
        filter: blur(8px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
      }
    }

    @keyframes text-flow {
      0% {
        background-position: 0% center;
      }

      100% {
        background-position: 200% center;
      }
    }

    .about-hero-title.about-hero--gsap {
      animation: text-flow 5s linear infinite;
      filter: none;
    }

    .about-hero-sub.about-hero--gsap,
    .about-hero-stats.about-hero--gsap,
    .about-hero-actions.about-hero--gsap,
    .social-row.about-hero--gsap {
      animation: none;
      filter: none;
    }

    .about-hero-divider {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-top: 40px;
      opacity: 0;
      transform: translateY(18px);
      animation: about-hero-reveal 0.75s var(--ease-out-expo) 0.35s forwards;
    }

    .about-hero-divider-rule {
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, var(--color-border-hover), transparent);
    }

    .about-hero-divider-text {
      font-size: 12px;
      color: var(--color-muted);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      white-space: nowrap;
      font-weight: 600;
    }

    /* Right column */
    .about-hero-right {
      display: flex;
      flex-direction: column;
      gap: 32px;
      border-left: 1px solid var(--color-border);
      padding-left: 64px;
    }

    .about-hero-sub {
      margin: 0;
      font-size: 18px;
      font-weight: 400;
      color: var(--color-muted);
      max-width: 380px;
      line-height: 1.75;
      opacity: 0;
      transform: translateY(24px);
      animation: about-hero-reveal 0.75s var(--ease-out-expo) 0.4s forwards;
    }

    .about-hero-stats {
      display: flex;
      gap: 32px;
      opacity: 0;
      transform: translateY(16px);
      animation: about-hero-reveal 0.7s var(--ease-out-expo) 0.55s forwards;
    }

    .about-hero-stat strong {
      display: inline-flex;
      align-items: baseline;
      gap: 0.02em;
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 800;
      color: var(--color-text);
      line-height: 1;
    }

    .stat-count {
      display: inline-block;
      min-width: var(--stat-count-width, 2ch);
      font-variant-numeric: tabular-nums;
    }

    .stat-symbol {
      display: inline-block;
      font: inherit;
      line-height: 1;
    }

    .stat-star {
      display: inline-block;
      font-size: 0.68em;
      line-height: 1;
      margin-left: 0.07em;
      transform: translateY(-0.03em);
    }

    .about-hero-stat>span {
      font-size: 12px;
      color: var(--color-muted);
      margin-top: 4px;
      display: block;
      letter-spacing: 0.04em;
    }

    .about-hero-sub {
      margin: 0;
      font-size: 18px;
      font-weight: 400;
      color: var(--color-muted);
      max-width: 380px;
      line-height: 1.75;
      opacity: 0;
      transform: translateY(24px);
      position: relative;
      z-index: 1;
      animation: about-hero-reveal 0.75s var(--ease-out-expo) 0.4s forwards;
    }

    .about-hero-actions {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(16px);
      animation: about-hero-reveal 0.7s var(--ease-out-expo) 0.7s forwards;
    }

    .social-row {
      display: flex;
      align-items: center;
      gap: 14px;
      opacity: 0;
      transform: translateY(24px);
      position: relative;
      z-index: 1;
      animation: about-hero-reveal 0.7s var(--ease-out-expo) 0.85s forwards;
    }

    .social-row span {
      font-size: 13px;
      font-weight: 600;
      color: var(--color-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    @media (max-width: 900px) {
      .about-hero {
        padding: 140px 24px 80px;
      }

      .about-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .about-hero-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--color-border);
        padding-top: 32px;
      }
    }

    .social-icon-btn {
      width: 40px;
      height: 40px;
      border: 1px solid var(--color-border);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease-out-expo);
    }

    .social-icon-btn:hover {
      border-color: var(--color-purple);
      background: var(--color-purple-soft);
      transform: translateY(-2px);
    }

    .social-icon-btn img {
      width: 16px;
      height: 16px;
      filter: brightness(1.6);
    }

    .showreel-btn {
      margin-top: 36px;
      opacity: 0;
      transform: translateY(24px);
      position: relative;
      z-index: 1;
    }

    /* Mission section */
    .mission-intro {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 56px;
    }

    .mission-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    /* Founder section */
    .founder-grid {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 64px;
      align-items: start;
    }

    .founder-copy {
      text-align: left;
    }

    .founder-copy .section-label {
      justify-content: flex-start;
      margin-bottom: 12px;
    }

    .founder-copy .section-title {
      display: block;
      text-align: left;
      margin: 0 0 18px;
    }

    .founder-heading-line,
    .section-heading-line {
      display: block;
    }

    .founder-img-wrap {
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--color-border);
      position: relative;
      background: var(--color-bg-card);
    }

    .founder-img-wrap img {
      width: 100%;
      display: block;
    }

    .founder-img-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, transparent 60%, rgba(123, 92, 246, 0.15));
      pointer-events: none;
      z-index: 2;
    }

    .founder-carousel {
      aspect-ratio: 4 / 5;
      min-height: 420px;
    }

    .founder-carousel-track {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .founder-carousel-slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(100%);
      opacity: 0;
      transform: scale(1.025);
      transition: opacity 950ms ease, transform 1400ms var(--ease-out-expo);
    }

    .founder-carousel-slide.is-active {
      opacity: 1;
      transform: scale(1);
      z-index: 1;
    }

    .founder-socials {
      display: flex;
      gap: 10px;
      margin-top: 24px;
    }

    /* Quality section */
    .quality-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 48px;
    }

    .quality-card {
      background: var(--color-bg-card);
      border: 1px solid var(--color-border);
      border-radius: 16px;
      padding: 32px;
      transition: border-color 0.3s, transform 0.35s var(--ease-out-expo);
    }

    .quality-card:hover {
      border-color: var(--color-border-hover);
      transform: translateY(-4px);
    }

    .quality-card-icon {
      width: 48px;
      height: 48px;
      background: var(--color-purple-soft);
      border: 1px solid var(--color-border-hover);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .quality-card-icon img,
    .quality-card-icon svg {
      width: 24px;
      height: 24px;
    }

    .quality-card h3 {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .quality-card p {
      font-size: 15px;
      color: var(--color-muted);
      line-height: 1.7;
    }

    .quality-intro .section-label {
      display: flex;
      justify-content: center;
    }

    .quality-intro .section-title {
      display: block;
    }

    /* Why choose items on about page */
    .why-about-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 72px;
      align-items: start;
    }

    .industries-intro .section-label {
      display: flex;
      justify-content: flex-start;
    }

    .industries-intro .section-title {
      display: block;
    }

    /* Portfolio 2-col for about page */
    .portfolio-intro .section-label {
      display: flex;
      justify-content: flex-start;
    }

    .portfolio-intro .section-title {
      display: block;
    }

    .portfolio-about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 48px;
    }

    @media (max-width: 900px) {

      .founder-grid,
      .mission-cards,
      .quality-grid,
      .why-about-grid,
      .portfolio-about-grid {
        grid-template-columns: 1fr;
      }
    }
