/* ═══════════════════════════════════════
   ABOUT PAGE — Editorial Manifesto
   ═══════════════════════════════════════ */

.ab-page {
    overflow-x: hidden;
    background: var(--bg, #f1efe6);
    color: var(--text, #0c1730);
}

/* --- Hero --- */
.ab-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 0 clamp(24px, 5vw, 80px) clamp(60px, 8vh, 120px);
    overflow: hidden;
}
.ab-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.ab-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35) saturate(0.8);
}
.ab-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(12, 23, 48, 0.95) 0%,
        rgba(12, 23, 48, 0.5) 40%,
        rgba(12, 23, 48, 0.2) 70%,
        transparent 100%
    );
    z-index: 1;
}
.ab-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}
.ab-hero-kicker {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(11px, 1.2vw, 13px);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-warm, #e56a1e);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
}
.ab-hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(48px, 8vw, 110px);
    font-weight: 700;
    line-height: 0.95;
    color: #fff;
    letter-spacing: -0.03em;
    margin: 0;
    opacity: 0;
    transform: translateY(40px);
}
.ab-hero h1 span {
    display: block;
    color: var(--accent-warm, #e56a1e);
}
.ab-hero-line {
    width: 60px;
    height: 2px;
    background: var(--accent-warm, #e56a1e);
    margin-top: 32px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
}

/* --- Section base --- */
.ab-section {
    padding: clamp(60px, 10vh, 140px) clamp(24px, 5vw, 80px);
}
.ab-section-narrow {
    max-width: 720px;
    margin: 0 auto;
}
.ab-section-wide {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Origin story --- */
.ab-origin {
    background: var(--bg, #f1efe6);
}
.ab-origin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.ab-origin-text h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
}
.ab-origin-text h2 em {
    font-style: normal;
    color: var(--accent-warm, #e56a1e);
}
.ab-origin-text p {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.75;
    color: var(--text, #0c1730);
    opacity: 0.8;
    margin: 0 0 18px;
}
.ab-origin-image {
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 4/5;
    position: relative;
}
.ab-origin-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ab-origin-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    border: 1px solid rgba(12, 23, 48, 0.08);
    pointer-events: none;
}

/* --- Pain points --- */
.ab-pain {
    background: var(--accent-dark, #0c1730);
    color: #fff;
}
.ab-pain-intro {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.75;
    opacity: 0.7;
    max-width: 620px;
    margin: 0 0 48px;
}
.ab-pain-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.ab-pain-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: clamp(28px, 3vw, 40px);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.ab-pain-card:hover {
    border-color: rgba(229, 106, 30, 0.3);
}
.ab-pain-card .card-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-warm, #e56a1e);
    margin-bottom: 16px;
}
.ab-pain-card p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(17px, 1.8vw, 22px);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* --- Image break --- */
.ab-img-break {
    width: 100%;
    height: clamp(300px, 40vh, 500px);
    overflow: hidden;
    position: relative;
}
.ab-img-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ab-img-break-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        var(--accent-dark, #0c1730) 0%,
        transparent 30%,
        transparent 70%,
        var(--bg, #f1efe6) 100%
    );
}

/* --- Mission statement --- */
.ab-mission {
    background: var(--bg, #f1efe6);
    text-align: center;
}
.ab-mission h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(26px, 3.5vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 800px;
    margin: 0 auto 24px;
}
.ab-mission h2 em {
    font-style: normal;
    color: var(--accent, #0045ba);
}
.ab-mission p {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.75;
    opacity: 0.75;
    max-width: 620px;
    margin: 0 auto;
}

/* --- Systems grid --- */
.ab-systems {
    background: var(--bg, #f1efe6);
}
.ab-systems-header {
    margin-bottom: clamp(40px, 5vh, 64px);
}
.ab-systems-header .kicker {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(11px, 1.1vw, 13px);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-warm, #e56a1e);
    margin-bottom: 12px;
}
.ab-systems-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
}
.ab-systems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.ab-system-card {
    background: #fff;
    border-radius: 22px;
    padding: clamp(28px, 3vw, 44px);
    border: 1px solid rgba(12, 23, 48, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ab-system-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(12, 23, 48, 0.08);
}
.ab-system-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
}
.ab-system-icon.google { background: rgba(0, 69, 186, 0.08); color: var(--accent, #0045ba); }
.ab-system-icon.web { background: rgba(229, 106, 30, 0.08); color: var(--accent-warm, #e56a1e); }
.ab-system-icon.youtube { background: rgba(220, 38, 38, 0.08); color: #dc2626; }
.ab-system-icon.content { background: rgba(12, 23, 48, 0.06); color: var(--text, #0c1730); }
.ab-system-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(18px, 1.8vw, 22px);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0 0 10px;
}
.ab-system-card p {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(14px, 1.1vw, 15px);
    line-height: 1.65;
    opacity: 0.7;
    margin: 0;
}

/* --- Bold typographic break --- */
.ab-manifesto {
    background: var(--bg, #f1efe6);
    text-align: center;
    padding: clamp(80px, 12vh, 160px) clamp(24px, 5vw, 80px);
    position: relative;
}
.ab-manifesto-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text, #0c1730);
}
.ab-manifesto-text .sep {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-warm, #e56a1e);
    margin: 0 clamp(12px, 2vw, 24px);
    vertical-align: middle;
    position: relative;
    top: -0.05em;
}

/* --- Transparency --- */
.ab-transparency {
    background: var(--bg, #f1efe6);
}
.ab-transparency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.ab-transparency-text h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
}
.ab-transparency-text p {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.75;
    opacity: 0.8;
    margin: 0 0 18px;
}
.ab-transparency-text .highlight {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(16px, 1.5vw, 19px);
    color: var(--accent, #0045ba);
    opacity: 1;
    line-height: 1.5;
    border-left: 3px solid var(--accent, #0045ba);
    padding-left: 20px;
    margin: 28px 0;
}
.ab-transparency-image {
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 3/4;
}
.ab-transparency-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Technology (dark) --- */
.ab-tech {
    background: var(--accent-dark, #0c1730);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.ab-tech::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 69, 186, 0.12), transparent 70%);
    pointer-events: none;
}
.ab-tech-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
    position: relative;
    z-index: 1;
}
.ab-tech-text h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
}
.ab-tech-text p {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.75;
    opacity: 0.7;
    margin: 0 0 18px;
}
.ab-tech-text .emphasis {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    opacity: 1;
    color: var(--accent-warm, #e56a1e);
}
.ab-tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}
.ab-tech-pill {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.8);
    transition: border-color 0.3s, background 0.3s;
}
.ab-tech-pill:hover {
    border-color: var(--accent-warm, #e56a1e);
    background: rgba(229, 106, 30, 0.08);
}
.ab-tech-image {
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 1/1;
}
.ab-tech-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Closing --- */
.ab-closing {
    background: var(--bg, #f1efe6);
    text-align: center;
}
.ab-closing h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    max-width: 680px;
    margin: 0 auto 16px;
}
.ab-closing p {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.75;
    opacity: 0.7;
    max-width: 560px;
    margin: 0 auto 12px;
}
.ab-closing .final {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-top: 40px;
    opacity: 1;
}
.ab-closing .final span {
    color: var(--accent-warm, #e56a1e);
}

/* --- CTA --- */
.ab-cta {
    background: var(--accent-dark, #0c1730);
    text-align: center;
    padding: clamp(80px, 10vh, 120px) clamp(24px, 5vw, 80px);
}
.ab-cta h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 4.5vw, 60px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0 0 16px;
}
.ab-cta p {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 480px;
    margin: 0 auto 36px;
}
.ab-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 999px;
    background: var(--accent, #0045ba);
    color: #fff;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 20px rgba(0,69,186,0.25);
}
.ab-cta-btn:hover {
    background: var(--accent-warm, #e56a1e);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(229,106,30,0.3);
}

/* --- Scroll reveal --- */
.ab-reveal {
    opacity: 0;
    transform: translateY(32px);
}
.ab-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Image break 2 (atmospheric divider) --- */
.ab-img-divider {
    width: 100%;
    height: clamp(200px, 30vh, 360px);
    overflow: hidden;
    position: relative;
}
.ab-img-divider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ab-img-divider-overlay {
    position: absolute;
    inset: 0;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .ab-origin-grid,
    .ab-transparency-grid,
    .ab-tech-content {
        grid-template-columns: 1fr;
    }
    .ab-origin-image {
        aspect-ratio: 16/9;
        order: -1;
    }
    .ab-transparency-image {
        aspect-ratio: 16/9;
    }
    .ab-tech-image {
        aspect-ratio: 16/9;
    }
    .ab-pain-cards {
        grid-template-columns: 1fr;
    }
    .ab-systems-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .ab-hero {
        min-height: 85vh;
    }
    .ab-manifesto-text .sep {
        width: 6px;
        height: 6px;
        margin: 0 10px;
    }
}
