/* ============================================================
   ABOUT PAGE — LARQ-style redesign
   ============================================================ */

/* ── Subtle dot pattern — parallax background ── */
.abt {
    background:
        radial-gradient(circle, rgba(27, 25, 22, 0.12) 1px, transparent 1px),
        #ffffff;
    background-size: 20px 20px;
    background-attachment: fixed;
}

/* ── HERO CARD — large banner with blurred bg ── */
.abt__hero-wrap {
    padding: calc(var(--nav-h, 68px) + 1rem) 1rem 0;
}

.abt__hero-card {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    min-height: calc(100vh - var(--nav-h, 68px) - var(--banner-h, 36px) - 2rem);
    display: flex;
    align-items: flex-end;
}

.abt__hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    filter: blur(2px);
    transform: scale(1.04);
}

.abt__hero-bg video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.abt__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.abt__hero-content {
    position: relative;
    z-index: 1;
    padding: 3rem 3.5rem;
    max-width: 680px;
}

.abt__hero-heading {
    font-family: var(--font-logo, 'Arial Black', sans-serif);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 1rem;
}

.abt__hero-heading em {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-style: italic;
    font-weight: 400;
    color: #ffffff;
}

/* Typewriter caret blink */
.typewriter {
    display: inline;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: rgba(255, 255, 255, 0.7); }
}

.abt__hero-sub {
    font-size: clamp(0.88rem, 1.4vw, 1.05rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    max-width: 520px;
}

/* Origin badge — bottom right of hero card */
.abt__hero-origin {
    position: absolute;
    bottom: 1.25rem;
    right: 1.5rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.15rem;
}
.abt__hero-origin span {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .abt__hero-origin {
        bottom: auto;
        top: 1rem;
        right: 1rem;
    }

    /* Disable parallax on mobile (iOS compat) */
    .abt {
        background-attachment: scroll;
    }
}


/* Mobile: reorder team cards — Sam first, Zach second, Recruitment third */
@media (max-width: 768px) {
    .abt__showcase-card[data-team="0"] { order: 2; }
    .abt__showcase-card[data-team="1"] { order: 1; }
    .abt__showcase-card[data-team="2"] { order: 3; }
}

/* ── TEAM SECTION ── */
.abt__team {
    padding: 6rem 0;
}

.abt__team-inner {
    max-width: 94%;
    margin: 0 auto;
    padding: 0 2rem;
}

.abt__team-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    margin-bottom: 3.5rem;
}

.abt__team-heading {
    font-family: var(--font-logo, 'Arial Black', sans-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--clr-text, #1B1916);
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin: 0;
}

.abt__team-heading em {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-style: italic;
    font-weight: 400;
    color: var(--clr-red, #D42B2B);
}

/* LARQ-style 3-card carousel — transform-based smooth animation */
.abt__team-showcase {
    position: relative;
    /* Tall enough for center card (photo + bio); short height made cards overlap the pill below */
    height: 700px;
    overflow: visible;
}

.abt__showcase-card {
    position: absolute;
    top: 0;
    width: 32%;
    background: #ffffff;
    border: 1px solid rgba(27, 25, 22, 0.06);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    transition: left 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                width 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.6s ease,
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.6s ease;
    opacity: 0.85;
    transform: scale(0.9);
}

.abt__showcase-card:hover {
    opacity: 0.95;
}

/* Positions set by JS via inline styles: left */
.abt__showcase-card.is-left { left: 0; }
.abt__showcase-card.is-center {
    left: 50%;
    transform: translateX(-50%) scale(1);
    width: 36%;
    opacity: 1;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.1);
    border-color: rgba(27, 25, 22, 0.12);
    cursor: default;
    z-index: 2;
}
.abt__showcase-card.is-right { left: 68%; }

.abt__showcase-photo {
    width: 100%;
    aspect-ratio: 4 / 3.5;
    overflow: hidden;
}

.abt__showcase-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    filter: grayscale(0.15);
    transition: filter 0.4s ease, transform 0.5s ease;
}

.abt__showcase-card.is-center .abt__showcase-photo img {
    filter: grayscale(0);
}

.abt__showcase-card:hover .abt__showcase-photo img {
    transform: scale(1.03);
}

.abt__showcase-name {
    font-family: var(--font-logo, 'Arial Black', sans-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-text, #1B1916);
    letter-spacing: -0.02em;
    margin: 0;
    padding: 1.25rem 1.5rem 0.15rem;
}

.abt__showcase-role {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--clr-red, #D42B2B);
    margin: 0;
    padding: 0 1.5rem 0.75rem;
}

/* Bio — only visible on center card */
.abt__showcase-bio {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(27, 25, 22, 0.5);
    margin: 0;
    padding: 0 1.75rem 1.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
}

.abt__showcase-card.is-center .abt__showcase-bio {
    max-height: 120px;
    opacity: 1;
    padding-bottom: 1.5rem;
}

/* CTA card — Join the Team — match height of photo cards */
.abt__showcase-card--cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.25rem 1.75rem;
    text-align: center;
    gap: 0.5rem;
    min-height: 100%;
    background:
        radial-gradient(ellipse 80% 70% at 75% 40%, rgba(212, 43, 43, 0.1) 0%, transparent 60%),
        linear-gradient(160deg,
            #faf8f6 0%,
            #f5ebe4 20%,
            #f0d8cc 40%,
            #e8c4b4 60%,
            #ddb0a0 80%,
            #d49a8a 100%
        );
}

.abt__showcase-cta-icon {
    font-size: 1.5rem;
    color: var(--clr-red, #D42B2B);
    margin-bottom: 0.5rem;
}

.abt__showcase-card--cta .abt__showcase-name {
    padding: 0;
    font-size: 1.15rem;
}

.abt__showcase-cta-sub {
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(27, 25, 22, 0.5);
    margin: 0 0 0.75rem;
}

.abt__showcase-cta-roles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.abt__showcase-cta-roles span {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(27, 25, 22, 0.5);
    border: 1px solid rgba(27, 25, 22, 0.1);
    border-radius: 999px;
    padding: 0.2rem 0.65rem;
}

.abt__showcase-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #ffffff;
    background: var(--clr-text, #1B1916);
    border: none;
    border-radius: 999px;
    padding: 0.65rem 1.4rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.abt__showcase-cta-btn:hover {
    background: #3a3630;
    transform: translateY(-1px);
}

/* Pill dot selector — matches global index pill */
.abt__team-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 1.5rem;
    position: relative;
    z-index: 5;
}
.abt__team-selector .why-selector__pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 100px;
    padding: 9px 16px;
}
.abt__team-selector .why-selector__dot {
    height: 6px;
    width: 6px;
    border-radius: 100px;
    background: rgba(0, 0, 0, 0.22);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    border: none;
    padding: 0;
    transition: width 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.abt__team-selector .why-selector__dot.is-active {
    width: 36px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.12);
}
.abt__team-selector .why-selector__dot.is-active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    background: var(--clr-text, #1B1916);
    border-radius: 4px;
}


/* ── ORIGIN — Large image tiles ── */
.abt__origin {
    padding: 4rem 0 5rem;
}

.abt__origin-inner {
    max-width: 94%;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.abt__origin-tile {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.abt__origin-tile-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.abt__origin-tile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.abt__origin-tile:hover .abt__origin-tile-img img {
    transform: scale(1.04);
}

.abt__origin-tile-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--clr-text, #1B1916);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
}

.abt__origin-tile-title {
    font-family: var(--font-logo, 'Arial Black', sans-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-text, #1B1916);
    letter-spacing: -0.01em;
    margin: 0;
    line-height: 1.3;
}


/* ── STORY ── */
.abt__story {
    padding: 6rem 0;
}

.abt__story-inner {
    max-width: 94%;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: start;
}

.abt__story-heading {
    font-family: var(--font-logo, 'Arial Black', sans-serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.08;
    color: var(--clr-text, #1B1916);
    margin: 0;
}

.abt__story-heading em {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-style: italic;
    font-weight: 400;
    color: var(--clr-red, #D42B2B);
}

.abt__story-lead {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--clr-text, #1B1916);
    margin: 0 0 1.25rem;
}

.abt__story-body {
    font-size: 0.95rem;
    line-height: 1.85;
    color: rgba(27, 25, 22, 0.55);
    margin: 0;
}


/* ── CAREERS ── */
.abt__careers {
    padding: 6rem 0;
    background: var(--clr-bg-dark, #1d1d1f);
}

.abt__careers-inner {
    max-width: 94%;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.abt__careers-heading {
    font-family: var(--font-logo, 'Arial Black', sans-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.06;
    color: #ffffff;
    margin: 0 0 1.25rem;
}

.abt__careers-heading em {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-style: italic;
    font-weight: 400;
    color: var(--clr-red, #D42B2B);
}

.abt__careers-sub {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.45);
    max-width: 400px;
    margin: 0 0 2rem;
}

.abt__careers-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.25rem;
}

.abt__careers-role {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 0.3rem 0.85rem;
}

.abt__careers-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--clr-bg-dark, #1d1d1f);
    background: #ffffff;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    transition: background 0.2s ease, transform 0.15s ease;
}

.abt__careers-cta:hover {
    background: #f0ebe4;
    transform: translateY(-2px);
}

.abt__careers-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.abt__careers-visual img {
    max-height: 480px;
    width: auto;
    opacity: 0.85;
}


/* ── CAREERS MODAL ── */
.careers-overlay {
    position: fixed; inset: 0; z-index: 9997;
    background: rgba(0, 0, 0, 0.38); backdrop-filter: blur(12px);
    display: none; align-items: center; justify-content: center;
    padding: 1.5rem; opacity: 0;
    transition: opacity 0.3s ease; pointer-events: none;
}
.careers-overlay[aria-hidden="false"] { display: flex; pointer-events: auto; }
.careers-overlay.is-visible { opacity: 1; }

.careers-modal {
    position: relative; background: #ffffff;
    border-radius: 20px; padding: 2.5rem;
    max-width: 680px; width: 100%;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
    transform: translateY(14px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh; overflow-y: auto;
}
.careers-overlay.is-visible .careers-modal { transform: translateY(0) scale(1); }

.careers-modal__close {
    position: absolute; top: 1.25rem; right: 1.25rem;
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid rgba(27, 25, 22, 0.08);
    background: transparent; font-size: 1.1rem; cursor: pointer;
    color: rgba(27, 25, 22, 0.4);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s;
}
.careers-modal__close:hover { background: #f2ede5; }

.careers-modal__label {
    display: inline-block; font-size: 0.6875rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--clr-red, #D42B2B); margin-bottom: 0.75rem;
}
.careers-modal__title {
    font-family: var(--font-logo); font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700; letter-spacing: -0.03em; line-height: 1.1;
    color: var(--clr-text, #1B1916); margin: 0 0 0.5rem;
}
.careers-modal__title em {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-style: italic; font-weight: 400; color: var(--clr-red, #D42B2B);
}
.careers-modal__sub {
    font-size: 0.88rem; line-height: 1.6;
    color: rgba(27, 25, 22, 0.55); margin: 0 0 1.75rem;
}

/* Row-style career listings */
.careers-modal__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.careers-modal__row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(27, 25, 22, 0.06);
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease;
    border-radius: 8px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.careers-modal__row:last-child { border-bottom: none; }

.careers-modal__row:hover {
    background: rgba(27, 25, 22, 0.03);
}

.careers-modal__row-ico {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(212, 43, 43, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--clr-red, #D42B2B);
    flex-shrink: 0;
}

.careers-modal__row-info {
    flex: 1;
    min-width: 0;
}

.careers-modal__row-info h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--clr-text, #1B1916);
    margin: 0;
    line-height: 1.3;
}

.careers-modal__row-info p {
    font-size: 0.78rem;
    color: rgba(27, 25, 22, 0.45);
    margin: 0.15rem 0 0;
    line-height: 1.4;
}

.careers-modal__row-apply {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--clr-red, #D42B2B);
    white-space: nowrap;
    flex-shrink: 0;
}


/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .abt__hero-wrap { padding: calc(var(--nav-h, 68px) + 0.75rem) 0.75rem 0; }
    .abt__hero-card { min-height: calc(100vh - var(--nav-h, 68px) - var(--banner-h, 36px) - 1.5rem); border-radius: 16px; }
    .abt__hero-content { padding: 2rem; }

    .abt__team-showcase { height: auto; position: static; display: flex; flex-direction: column; gap: 1.5rem; max-width: 400px; margin: 0 auto; }
    .abt__team-showcase .abt__showcase-card { position: static; width: 100%; opacity: 1; transform: none; left: auto; }
    .abt__team { padding: 4rem 0; }

    .abt__origin-inner { grid-template-columns: 1fr; max-width: 420px; }

    .abt__story-inner { grid-template-columns: 1fr; gap: 2rem; }

    .abt__careers-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .abt__careers-visual { display: none; }
}

@media (max-width: 520px) {
    .abt__hero-card { border-radius: 14px; }
    .abt__hero-content { padding: 1.5rem; }
    .careers-modal__grid { grid-template-columns: 1fr; }
    .careers-modal { padding: 2rem 1.5rem; }
}

/* Mobile hero: tight under nav; shorter card so flex-end copy sits above the fold (headline fully visible) */
@media (max-width: 768px) {
    /* Main starts below the in-flow banner — don't add full nav height again or the gap above the card
       dwarfs the ~3% side margins (max-width: 94% on .abt__hero-card). Match that gutter with 3vw. */
    .abt__hero-wrap {
        padding: calc(var(--nav-h, 68px) + 0.5rem) 0.5rem 0;
    }
    .abt__hero-card {
        min-height: calc(100vh - var(--nav-h, 68px) - var(--banner-h, 36px) - 1rem);
        max-height: none;
        border-radius: 14px;
    }
    .abt__hero-content {
        padding: 1.25rem 1.35rem 1.1rem;
    }
    .abt__hero-heading {
        margin-bottom: 0.6rem;
        font-size: clamp(1.65rem, 7.5vw, 2.35rem);
    }
    .abt__hero-sub {
        font-size: clamp(0.82rem, 3.5vw, 0.95rem);
        line-height: 1.55;
    }

    /* Mobile: So we started building. should be a single column */
    .abt-story-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        align-items: start;
    }
}


/* ============================================================
   INLINE-STYLE EXTRACTION — Phase 5
   ============================================================ */

/* ── Dark story tile ── */
.abt-story {
    max-width: var(--container-max, 85%);
    margin: 0 auto;
    padding: 0 2.5rem;
}

.abt-story-grid {
    background: #0c0c0c;
    color: #fff;
    border-radius: 24px;
    padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    overflow: hidden;
}

.abt-story__eyebrow {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clr-red, #D42B2B);
    display: block;
    margin-bottom: 0.75rem;
}

.abt-story__heading {
    font-family: var(--font-logo);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1.05;
    margin: 0;
}

.abt-story__heading em {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    color: var(--clr-red, #D42B2B);
}

.abt-story__text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0 0 1rem;
}

.abt-story__text--muted {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .abt-story {
        max-width: 100%;
        padding: 0 1rem;
    }
    .abt-story-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        border-radius: 18px;
    }
}

/* ── Prototype / From Idea section ── */
.abt-proto {
    padding: 5rem 0;
    background: #fafafa;
}

.abt-proto__img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    max-height: 400px;
}

.abt-proto__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 1;
}

.abt-proto__eyebrow {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clr-red, #D42B2B);
}

.abt-proto__heading {
    font-family: var(--font-logo);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--clr-text, #1B1916);
    margin: 0.75rem 0 1.25rem;
    line-height: 1.1;
}

.abt-proto__text {
    font-size: 0.95rem;
    color: rgba(27, 25, 22, 0.55);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.abt-proto__text--fine {
    font-size: 0.85rem;
    color: rgba(27, 25, 22, 0.4);
    line-height: 1.6;
}

.abt-proto-grid {
    max-width: var(--container-max, 85%);
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .abt-proto-grid {
        grid-template-columns: 1fr;
        padding: 0 1.25rem;
    }
}

/* ── Image galleries ── */
.abt-gallery {
    max-width: var(--container-max, 85%);
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.25rem;
}

.abt-gallery--wide {
    max-width: var(--container-max, 85%);
    margin: 1.25rem auto 0;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.25rem;
}

.abt-gallery__item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.abt-gallery__item--link {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    position: relative;
    text-decoration: none;
    cursor: pointer;
}

.abt-gallery__img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    opacity: 1;
}

.abt-gallery__img--cover {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 1;
}

.abt-gallery__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.abt-gallery__overlay-title {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

.abt-gallery__overlay-sub {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    margin-top: 3px;
}

/* ── CTA section ── */
.abt-cta {
    padding: 3rem 0 4rem;
}

.abt-cta__inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2.5rem;
}

.abt-cta__heading {
    font-family: var(--font-logo);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--clr-text, #1B1916);
    margin-bottom: 0.5rem;
}

.abt-cta__text {
    font-size: 0.9rem;
    color: rgba(27, 25, 22, 0.5);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.abt-cta__actions {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.abt-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.75rem 1.75rem;
    background: #1d1d1f;
    color: #fff;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.abt-cta__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.75rem 1.75rem;
    background: transparent;
    color: var(--clr-text);
    border: 1.5px solid rgba(27, 25, 22, 0.15);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s;
}

/* ── Iteration gallery section wrapper ── */
.abt-iter {
    padding: 0 0 4rem;
}

@media (max-width: 768px) {
    .abt-gallery,
    .abt-gallery--wide {
        grid-template-columns: 1fr;
        padding: 0 1.25rem;
    }
}

/* ── Stay in the loop button ── */
.abt-loop-btn {
    margin: 0 1.75rem 1rem;
    padding: 0.45rem 1.1rem;
    background: var(--clr-red, #D42B2B);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
}

/* ── Solder station image center ── */
.abt__team-img--center {
    object-position: center;
}

/* ── Waitlist accent dot ── */
.wl-accent {
    color: var(--clr-red, #D42B2B);
}
