/* ============================================================
   about.css — About Us page
   ============================================================ */

/* ── Override global scroll-snap & layout padding ─────────── */
html:has(body.about-page) {
    scroll-snap-type: none;
    height: auto;
    overflow-y: auto;
}

body.about-page {
    height: auto;
    overflow-y: visible;
}

body.about-page .page {
    background-color: #fff;
}

body.about-page section {
    height: auto;
    overflow: visible;
    scroll-snap-align: none;
    scroll-snap-stop: unset;
    /* Remove layout.css top/side padding — sections self-manage spacing */
    padding: 0 !important;
}

/* ── Main wrapper ─────────────────────────────────────────── */
.about {
    background: #fff;
    /* Kill any bottom gap before footer */
    padding-bottom: 0;
}

/* ── Section card wrapper — mirrors header's 24px side inset ── */
.about__section-wrap {
    margin: 0 24px;
    border-radius: var(--a-radius-xl);
    overflow: hidden;
}

/* ── Inter-section spacing — mirrors header's 24px top inset ── */
.about__mission,
.about__numbers,
.about__stack,
.about__testimonials,
.about__team {
    margin-top: 24px;
}

/* Bottom gap before footer mirrors header top inset */
.about__team {
    margin-bottom: 24px;
}

/* Footer — match header's 24px all-sides inset on about page */
body.about-page .footer {
    margin: 0 24px 24px;
    border-radius: var(--a-radius-xl);
    overflow: hidden;
    padding-left: 24px;
    padding-right: 24px;
}

body.about-page .footer__copyright {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* ── Shared label ─────────────────────────────────────────── */
.about__label {
    display: inline-block;
    font-family: var(--a-font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--a-color-green-400);
    margin-bottom: var(--a-space-lg);
}

/* ── Hero ─────────────────────────────────────────────────── */
.about__hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--a-color-beige-50);
}

.about__hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about__hero-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(8, 1fr);
    width: 100%;
    height: 100%;
}

.about__hero-cell {
    border: 1px solid var(--a-color-beige-100);
    opacity: 0;
    transition: opacity 0.4s ease, background 0.4s ease;
}

.about__hero-cell.is-lit {
    opacity: 1;
    background: var(--a-color-beige-100);
}

.about__hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--a-space-xl);
}

.about__hero-tag {
    font-family: var(--a-font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--a-color-green-400);
    margin-bottom: var(--a-space-lg);
    opacity: 0;
    transform: translateY(12px);
}

.about__hero-tag-bracket {
    opacity: 0.5;
}

.about__hero-title {
    font-family: var(--a-font-mono);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: var(--a-font-weight-bold);
    line-height: 1.1;
    color: var(--a-color-beige-950);
    margin-bottom: var(--a-space-xl);
    overflow: hidden;
}

.about__hero-title .word {
    display: inline-block;
    overflow: hidden;
}

.about__hero-title .char {
    display: inline-block;
    transform: translateY(110%);
}

.about__hero-sub {
    font-size: 1.1rem;
    color: var(--a-color-beige-600);
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(12px);
}

.about__hero-scroll {
    position: absolute;
    bottom: var(--a-space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.about__hero-scroll-line {
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, var(--a-color-beige-400));
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* ============================================================
   ── Mission
   ============================================================ */

.about__mission .about__section-wrap {
    background: var(--a-color-beige-50);
}

.about__mission-inner {
    display: grid;
    grid-template-columns: 55% 45%;
}

/* ── Left column */
.about__mission-left {
    padding: 48px 32px;
    border-right: 1px solid var(--a-color-beige-200);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about__mission-bar {
    display: flex;
    align-items: center;
    gap: var(--a-space-xl);
}

.about__mission-bar .about__label {
    margin-bottom: 0;
    flex-shrink: 0;
}

.about__mission-bar-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--a-color-green-400), transparent);
    opacity: 0.4;
}

.about__mission-bar-index {
    font-family: var(--a-font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    color: var(--a-color-beige-400);
    flex-shrink: 0;
}

.about__mission-title {
    font-family: var(--a-font-mono);
    font-size: clamp(2.6rem, 4vw, 5rem);
    font-weight: var(--a-font-weight-bold);
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--a-color-beige-800);
    margin: 0;
}

.about__mission-title em {
    font-style: normal;
    color: var(--a-color-green-500);
    position: relative;
}

.about__mission-title em::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--a-color-green-400);
    border-radius: 2px;
    opacity: 0.35;
}

.about__mission-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.about__mission-year {
    font-family: var(--a-font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--a-color-beige-400);
}

.about__mission-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--a-color-green-400);
    opacity: 0.55;
}

.about__mission-tagline {
    font-family: var(--a-font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--a-color-beige-400);
    text-transform: uppercase;
}

/* ── Right column */
.about__mission-right {
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 48px;
}

.about__mission-quote {
    display: flex;
    flex-direction: column;
}

.about__mission-quote-mark {
    font-family: var(--a-font-primary);
    font-size: 5rem;
    line-height: 0.75;
    color: var(--a-color-green-400);
    opacity: 0.2;
    display: block;
    margin-bottom: 20px;
    font-weight: var(--a-font-weight-bold);
    user-select: none;
}

.about__mission-quote-text {
    font-size: clamp(1rem, 1.35vw, 1.15rem);
    line-height: 1.85;
    color: var(--a-color-beige-600);
    margin: 0 0 24px;
    font-style: italic;
}

.about__mission-quote-attr {
    font-family: var(--a-font-mono);
    font-size: 0.67rem;
    letter-spacing: 0.12em;
    color: var(--a-color-beige-400);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about__mission-quote-attr::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--a-color-green-400);
    opacity: 0.45;
    flex-shrink: 0;
}

/* ── Global vision globe component ──────────────────────────── */
.about__mission-globe {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--a-color-beige-200);
}

.about__mission-globe-label {
    font-family: var(--a-font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--a-color-green-500);
    margin-bottom: 14px;
}

.about__mission-globe-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-bottom: 16px;
}

.about__mission-globe-city {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--a-font-mono);
    font-size: 0.72rem;
    color: var(--a-color-beige-400);
    letter-spacing: 0.05em;
    transition: color 0.25s ease;
}

.about__mission-globe-city--active {
    color: var(--a-color-beige-800);
    font-weight: 600;
}

/* Future cities — labels in CSS content only, not in DOM */
.about__mission-globe-city--future {
    color: var(--a-color-beige-400);
    filter: blur(4.5px);
    user-select: none;
    pointer-events: none;
}

.about__mission-globe-city--c1::after {
    content: 'Berlin';
}

.about__mission-globe-city--c2::after {
    content: 'Dubai';
}

.about__mission-globe-city--c3::after {
    content: 'London';
}

.about__mission-globe-city--c4::after {
    content: 'New York';
}

.about__mission-globe-city--c5::after {
    content: 'Amsterdam';
}

.about__mission-globe-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--a-color-beige-300);
    flex-shrink: 0;
}

.about__mission-globe-city--active .about__mission-globe-dot {
    background: var(--a-color-green-400);
    /* accent glow — one-time value, not in design tokens */
    box-shadow: 0 0 0 3px rgba(64, 199, 131, 0.2);
}

.about__mission-globe-sub {
    font-size: 0.85rem;
    color: var(--a-color-beige-500);
    margin: 0;
    font-style: italic;
}

/* ── Pillars strip */
.about__mission-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--a-color-beige-50);
    border-top: 1px solid var(--a-color-beige-200);
}

.about__mission-pillar {
    padding: 28px 32px;
    border-right: 1px solid var(--a-color-beige-200);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: background 0.3s ease;
    cursor: default;
}

.about__mission-pillar:last-child {
    border-right: none;
}

.about__mission-pillar:hover {
    background: var(--a-color-beige-50);
}

.about__mission-pillar-num {
    font-family: var(--a-font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    color: var(--a-color-green-500);
    opacity: 0.7;
    padding-top: 4px;
    flex-shrink: 0;
}

.about__mission-pillar-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.about__mission-pillar-text {
    font-family: var(--a-font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: var(--a-color-beige-700);
    text-transform: uppercase;
}

.about__mission-pillar-sub {
    font-size: 0.8rem;
    color: var(--a-color-beige-400);
    line-height: 1.45;
}

/* ============================================================
   ── Numbers
   ============================================================ */
.about__numbers {
    padding: 0;
}

.about__numbers .about__section-wrap {
    background: var(--a-color-beige-50);
}

.about__numbers-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.about__number-item {
    position: relative;
    background: var(--a-color-beige-50);
    padding: 48px var(--a-space-xl);
    border-right: 1px solid var(--a-color-beige-200);
    overflow: hidden;
    transition: background 0.35s ease;
}

.about__number-item:last-child {
    border-right: none;
}

.about__number-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--footer-accent, var(--a-color-green-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1), background 1.5s ease;
}

.about__number-item.is-visible::after {
    transform: scaleX(1);
    background: var(--footer-accent, var(--a-color-green-400));
    transition: background-color 1.5s ease, background 1.5s ease;
}

.about__number-item:hover {
    background: var(--a-color-beige-100);
}

.about__number-value {
    display: block;
    font-family: var(--a-font-mono);
    font-size: clamp(2.6rem, 4.5vw, 4.8rem);
    font-weight: var(--a-font-weight-bold);
    color: var(--a-color-beige-800);
    line-height: 1;
    margin-bottom: 4px;
}

.about__number-value--static {
    color: var(--a-color-green-500);
}

.about__number-suffix {
    display: inline-block;
    font-family: var(--a-font-mono);
    font-size: clamp(1.5rem, 3vw, 2.8rem);
    font-weight: var(--a-font-weight-bold);
    color: var(--a-color-green-500);
    line-height: 1;
    vertical-align: top;
    margin-top: 4px;
    margin-left: -2px;
}

.about__number-label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--a-color-beige-600);
    margin-top: var(--a-space-sm);
    font-family: var(--a-font-mono);
}

.about__number-desc {
    display: block;
    font-size: 0.82rem;
    color: var(--a-color-beige-400);
    line-height: 1.5;
    margin-top: var(--a-space-xs);
}

/* ============================================================
   ── Stack — animated CSS grid
   ============================================================ */
.about__stack {
    padding: 0;
}

.about__stack .about__section-wrap {
    background: #111110;
    /* near-black — brand accent surface */
    overflow: hidden;
}

.about__stack-header {
    background: #111110;
    /* near-black — matches section-wrap */
    padding: 48px 32px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: var(--a-space-xl);
}

.about__stack-header-left {
    display: flex;
    flex-direction: column;
}

.about__stack-header-left .about__label {
    margin-bottom: 12px;
    color: var(--a-color-beige-200) !important;
    /* override shared label on dark bg */
}

.about__stack-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: var(--a-font-weight-bold);
    color: var(--a-color-beige-200) !important;
    /* dark bg contrast override */
    margin: 0 0 10px;
    line-height: 1.1;
}

.about__stack-sub {
    font-size: 0.9rem;
    color: var(--a-color-beige-200) !important;
    /* dark bg contrast override */
    margin: 0;
    line-height: 1.5;
    opacity: 0.55;
}

.about__stack-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    padding-bottom: 4px;
}

.about__stack-count {
    font-family: var(--a-font-mono);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: var(--a-font-weight-bold);
    color: var(--a-color-beige-200) !important;
    /* dark bg contrast override */
    line-height: 1;
}

.about__stack-count span {
    color: var(--a-color-green-400);
    font-size: 0.6em;
    vertical-align: super;
}

.about__stack-count-label {
    font-family: var(--a-font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    color: var(--a-color-beige-200) !important;
    /* dark bg contrast override */
    text-transform: uppercase;
    opacity: 0.45;
}

/* Dark grid layout — 8 columns */
.about__stack-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about__stack-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    /* border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); */
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: default;
    overflow: hidden;
    aspect-ratio: 1;
    transition: background 0.5s ease;
    background: transparent;
    border-radius: var(--a-radius-xl);
}

.about__stack-item:nth-child(8n) {
    border-right: none;
}

/* Border glow — brand color inset box-shadow grows on hover */
.about__stack-item-bg {
    /* Used as a radial brand glow layer behind the logo */
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--brand) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

.about__stack-item:hover .about__stack-item-bg {
    opacity: 0.12;
}

.about__stack-item:hover {
    background: color-mix(in srgb, var(--brand) 10%, #111110);
    /* inset glow ring on all 4 borders */
    box-shadow:
        inset 1px 0 0 0 color-mix(in srgb, var(--brand) 60%, transparent),
        inset -1px 0 0 0 color-mix(in srgb, var(--brand) 60%, transparent),
        inset 0 1px 0 0 color-mix(in srgb, var(--brand) 60%, transparent),
        inset 0 -1px 0 0 color-mix(in srgb, var(--brand) 60%, transparent),
        0 0 24px 0 color-mix(in srgb, var(--brand) 30%, transparent);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.about__stack-item-logo {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    transition: filter 0.35s ease, transform 0.35s ease;
    filter: grayscale(100%) brightness(0.55);
}

.about__stack-item:hover .about__stack-item-logo {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.15);
}

.about__stack-item-logo svg {
    width: 40px;
    height: 40px;
}

.about__stack-item-label {
    font-family: var(--a-font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.25);
    position: relative;
    z-index: 1;
    transition: color 0.35s ease;
}

.about__stack-item:hover .about__stack-item-label {
    color: rgba(255, 255, 255, 0.92);
}

/* ============================================================
   ── Testimonials — 2 × 3 grid cards
   ============================================================ */
.about__testimonials {
    padding: 0;
}

.about__testimonials .about__section-wrap {
    background: var(--a-color-beige-50);
    padding: 48px 32px;
}

.about__testimonials-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 56px;
}

.about__testimonials-header .about__label {
    color: var(--a-color-green-500);
    margin-bottom: 12px;
}

.about__testimonials-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: var(--a-font-weight-bold);
    color: var(--a-color-beige-900);
    margin: 0;
    line-height: 1.1;
}

.about__testimonials-meta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--a-font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--a-color-beige-600);
    background: var(--a-color-beige-100);
    border: 1px solid var(--a-color-beige-200);
    border-radius: 100px;
    padding: 8px 16px;
}

/* Green dot indicator before count */
.about__testimonials-meta::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--a-color-green-400);
    flex-shrink: 0;
}

/* 3-col grid — cards revealed by GSAP stagger on scroll */
.about__testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ── Animated border custom properties ── */
@property --tb-angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

@property --tb-angle2 {
    syntax: '<angle>';
    inherits: false;
    initial-value: 180deg;
}

@keyframes tbSpin1 {
    to {
        --tb-angle: 360deg;
    }
}

@keyframes tbSpin2 {
    to {
        --tb-angle2: 540deg;
    }
}

/* Card base */
.about__testimonial {
    border-radius: var(--a-radius-xl);
    padding: 32px 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
    background: #fff;
    border: 1.5px solid rgba(0, 0, 0, 0.07);
    clip-path: inset(100% 0% 0% 0% round 32px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    cursor: default;
    position: relative;
    --tb-angle: 0deg;
    --tb-angle2: 180deg;
    --tb-color-a: rgba(105, 195, 232, 1);
    --tb-color-b: rgba(64, 199, 131, 0.7);
}

/*
  Two-layer spinning border:
  ::before  = primary beam (fast, sharp comet tail)
  ::after   = secondary beam (slower, wider glow)
  Both masked to border-strip only — interior stays pure white.
*/

/* shared mask mixin */
.about__testimonial::before,
.about__testimonial::after {
    content: '';
    position: absolute;
    inset: -1.5px;
    border-radius: calc(var(--a-radius-xl) + 1.5px);
    padding: 1.5px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

/* Primary beam — sharp comet, fast */
.about__testimonial::before {
    background: conic-gradient(from var(--tb-angle),
            transparent 0%,
            transparent 60%,
            color-mix(in srgb, var(--tb-color-a) 30%, transparent) 72%,
            var(--tb-color-a) 82%,
            color-mix(in srgb, var(--tb-color-a) 60%, transparent) 87%,
            transparent 92%,
            transparent 100%);
    z-index: 1;
}

/* Secondary beam — wide glow, counter-spin, slightly slower */
.about__testimonial::after {
    background: conic-gradient(from var(--tb-angle2),
            transparent 0%,
            transparent 68%,
            color-mix(in srgb, var(--tb-color-b) 20%, transparent) 76%,
            color-mix(in srgb, var(--tb-color-b) 55%, transparent) 85%,
            transparent 95%,
            transparent 100%);
    z-index: 0;
}

/* On hover — show both beams and animate */
.about__testimonial:hover {
    border-color: transparent;
    transform: translateY(-2px);
}

.about__testimonial:hover::before {
    opacity: 1;
    animation: tbSpin1 3.6s linear infinite;
}

.about__testimonial:hover::after {
    opacity: 1;
    animation: tbSpin2 5.5s linear infinite reverse;
}

/* Per-card color pairs */
.about__testimonial:nth-child(1) {
    --tb-color-a: rgba(105, 195, 232, 1);
    --tb-color-b: rgba(64, 199, 131, 0.65);
}

.about__testimonial:nth-child(2) {
    --tb-color-a: rgba(64, 199, 131, 1);
    --tb-color-b: rgba(105, 195, 232, 0.5);
}

.about__testimonial:nth-child(3) {
    --tb-color-a: rgba(251, 157, 109, 1);
    --tb-color-b: rgba(244, 219, 107, 0.6);
}

.about__testimonial:nth-child(4) {
    --tb-color-a: rgba(244, 219, 107, 1);
    --tb-color-b: rgba(251, 157, 109, 0.6);
}

.about__testimonial:nth-child(5) {
    --tb-color-a: rgba(119, 221, 167, 1);
    --tb-color-b: rgba(64, 199, 131, 0.5);
}

.about__testimonial:nth-child(6) {
    --tb-color-a: rgba(196, 181, 253, 1);
    --tb-color-b: rgba(105, 195, 232, 0.5);
}

/* Decorative quote mark via ::before on the quote paragraph */
.about__testimonial-quote::before {
    content: '\201C';
    display: block;
    font-size: 5rem;
    font-weight: 800;
    line-height: 0.8;
    color: rgba(0, 0, 0, 0.045);
    font-family: Georgia, serif;
    pointer-events: none;
    user-select: none;
    margin-bottom: 8px;
}

.about__testimonial-quote {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    margin: 0 0 28px;
    font-style: normal;
    font-weight: 400;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.about__testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.about__testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.about__testimonial-name {
    display: block;
    font-weight: 700;
    font-size: 0.92rem;
    color: rgba(0, 0, 0, 0.82);
    line-height: 1.2;
}

.about__testimonial-company {
    display: block;
    font-family: var(--a-font-mono);
    font-size: 0.67rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.42);
}

/* ============================================================
   ── Team
   ============================================================ */
.about__team {
    padding: 0;
}

.about__team .about__section-wrap {
    background: #F5F5F4;
    /* warm near-white — photo card surface */
}

.about__team-header {
    padding: 48px 32px;
}

.about__team-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: var(--a-font-weight-bold);
    color: var(--a-color-beige-800);
    margin: 0 0 var(--a-space-md);
}

.about__team-sub {
    font-size: 1rem;
    color: var(--a-color-beige-500);
    margin: 0;
}

.about__team-grid {
    padding: 48px 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: start;
}

.about__member {
    opacity: 0;
    transform: translateY(24px);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about__member-photo-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--a-radius-xl);
    aspect-ratio: 3 / 4;
    background: var(--a-color-beige-200);
}

.about__member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about__member:hover .about__member-photo {
    transform: scale(1.04);
}

/* ── Member info box — mirrors we-are__member-header exactly ── */
.about__member-footer {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background-color: var(--a-color-beige-50);
    padding: 10px 12px;
    border-radius: var(--a-radius-xl);
}

.about__member-name {
    font-size: 12px;
    font-family: var(--a-font-mono);
    font-weight: 700;
    color: var(--a-color-black-800);
    line-height: 1.3;
}

.about__member-role {
    font-size: 10px;
    font-weight: 400;
    color: var(--a-color-beige-800);
    line-height: 1.3;
}

/* ── Reveal animation ─────────────────────────────────────── */
.js-reveal {
    opacity: 0;
    transform: translateY(36px);
}

.js-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--delay, 0s);
}

/* ── Responsive ───────────────────────────────────────────── */

/* Base mobile — stack everything, compact insets */
@media (max-width: 480px) {
    .about__section-wrap {
        margin: 0 24px;
    }

    .about__mission,
    .about__numbers,
    .about__stack,
    .about__testimonials,
    .about__team {
        margin-top: 24px;
    }

    .about__team {
        margin-bottom: 24px;
    }

    .about__hero-grid {
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: repeat(10, 1fr);
    }

    .about__mission-inner {
        grid-template-columns: 1fr;
    }

    .about__mission-left {
        padding: 32px 16px 28px;
        border-right: none;
        border-bottom: 1px solid var(--a-color-beige-200);
    }

    .about__mission-right {
        padding: 28px 16px 32px;
    }

    .about__mission-pillars {
        grid-template-columns: 1fr;
    }

    .about__mission-pillar {
        padding: 16px 20px;
        border-right: none;
        border-bottom: 1px solid var(--a-color-beige-200);
    }

    .about__mission-pillar:last-child {
        border-bottom: none;
    }

    .about__numbers-inner {
        grid-template-columns: 1fr 1fr;
    }

    .about__number-item {
        padding: 32px 16px;
        border-bottom: 1px solid var(--a-color-beige-200);
    }

    .about__stack-header {
        grid-template-columns: 1fr;
        padding: 32px 16px 24px;
    }

    .about__stack-header-right {
        display: none;
    }

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

    .about__stack-item:nth-child(8n) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .about__stack-item:nth-child(3n) {
        border-right: none;
    }

    .about__testimonials .about__section-wrap {
        padding: 36px 16px 48px;
    }

    .about__testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 40px;
    }

    .about__testimonials-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about__testimonial {
        padding: 24px 24px 20px;
        min-height: auto;
    }

    .about__team-header {
        padding: 36px 16px 28px;
    }

    .about__team-grid {
        padding: 0 16px 36px;
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* 481px — large phone */
@media (min-width: 481px) {
    .about__section-wrap {
        margin: 0 16px;
    }

    .about__mission-inner {
        grid-template-columns: 1fr;
    }

    .about__mission-left {
        padding: 36px 24px 32px;
        border-right: none;
        border-bottom: 1px solid var(--a-color-beige-200);
    }

    .about__mission-right {
        padding: 32px 24px 36px;
    }

    .about__mission-pillars {
        grid-template-columns: 1fr;
    }

    .about__mission-pillar {
        padding: 18px 24px;
        border-right: none;
        border-bottom: 1px solid var(--a-color-beige-200);
    }

    .about__mission-pillar:last-child {
        border-bottom: none;
    }

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

    .about__number-item {
        border-bottom: 1px solid var(--a-color-beige-200);
    }

    .about__stack-header {
        grid-template-columns: 1fr;
        padding: 36px 24px 28px;
    }

    .about__stack-header-right {
        display: none;
    }

    .about__stack-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .about__stack-item:nth-child(8n) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .about__stack-item:nth-child(4n) {
        border-right: none;
    }

    .about__testimonials .about__section-wrap {
        padding: 40px 24px 56px;
    }

    .about__testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 40px;
    }

    .about__testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .about__testimonial {
        padding: 28px 28px 24px;
        min-height: 200px;
    }

    .about__team-header {
        padding: 40px 24px 32px;
    }

    .about__team-grid {
        padding: 0 24px 40px;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* 769px — tablet */
@media (min-width: 769px) {
    .about__section-wrap {
        margin: 0 20px;
    }

    .about__mission-left {
        padding: 40px 32px 36px;
    }

    .about__mission-right {
        padding: 36px 32px 40px;
    }

    .about__mission-pillar {
        padding: 20px 32px;
    }

    .about__stack-header {
        padding: 40px 32px 32px;
    }

    .about__testimonials .about__section-wrap {
        padding: 48px 32px 64px;
    }

    .about__testimonials-grid {
        gap: 16px;
    }

    .about__team-header {
        padding: 48px 32px 36px;
    }

    .about__team-grid {
        padding: 0 32px 48px;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
}

/* 992px — small desktop: full layout restored */
@media (min-width: 992px) {
    .about__section-wrap {
        margin: 0 24px;
    }

    .about__mission-inner {
        grid-template-columns: 55% 45%;
    }

    .about__mission-left {
        padding: 48px 32px;
        border-right: 1px solid var(--a-color-beige-200);
        border-bottom: none;
    }

    .about__mission-right {
        padding: 48px 32px;
    }

    .about__mission-pillars {
        grid-template-columns: repeat(3, 1fr);
    }

    .about__mission-pillar {
        padding: 28px 32px;
        border-right: 1px solid var(--a-color-beige-200);
        border-bottom: none;
    }

    .about__mission-pillar:last-child {
        border-right: none;
    }

    .about__numbers-inner {
        grid-template-columns: repeat(4, 1fr);
    }

    .about__number-item {
        border-bottom: none;
    }

    .about__stack-header {
        grid-template-columns: 1fr auto;
        padding: 48px 32px;
    }

    .about__stack-header-right {
        display: flex;
    }

    .about__stack-grid {
        grid-template-columns: repeat(8, 1fr);
    }

    .about__stack-item:nth-child(4n) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .about__stack-item:nth-child(8n) {
        border-right: none;
    }

    .about__testimonials-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 40px;
        margin-bottom: 56px;
    }

    .about__testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about__testimonial {
        padding: 32px 32px 28px;
        min-height: 260px;
    }

    .about__team-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

/* 1281px — HD desktop */
@media (min-width: 1281px) {
    .about__section-wrap {
        margin: 0 32px;
    }

    .about__mission,
    .about__numbers,
    .about__stack,
    .about__testimonials,
    .about__team {
        margin-top: 32px;
    }

    .about__team {
        margin-bottom: 32px;
    }
}

/* 1441px — large desktop */
@media (min-width: 1441px) {
    .about__section-wrap {
        margin: 0 24px;
    }

    .about__mission,
    .about__numbers,
    .about__stack,
    .about__testimonials,
    .about__team {
        margin-top: 40px;
    }

    .about__team {
        margin-bottom: 40px;
    }
}

/* 1921px — Full HD+ */
@media (min-width: 1921px) {
    .about__section-wrap {
        margin: 0 64px;
    }

    .about__mission,
    .about__numbers,
    .about__stack,
    .about__testimonials,
    .about__team {
        margin-top: 48px;
    }

    .about__team {
        margin-bottom: 48px;
    }
}

/* 2561px — 2K */
@media (min-width: 2561px) {
    .about__section-wrap {
        margin: 0 80px;
    }
}

/* 3841px — 4K */
@media (min-width: 3841px) {
    .about__section-wrap {
        margin: 0 120px;
    }
}