/* ════════════════════════════════════════════════════════════
   ABOUT — palette + tokens
   ════════════════════════════════════════════════════════════ */
.ab-page {
    --ab-pink: #e8347a;
    --ab-pink-deep: #b91c5c;
    --ab-peach: #cda07f;
    --ab-cream: #f5f4f0;
    --ab-ink: #1a1a1a;
    --ab-mute: rgba(42, 42, 42, 0.7);
    position: relative; /* anchor for the page-spanning .ab-vline guides */
    background: var(--ab-cream);
    color: var(--ab-ink);
    overflow-x: hidden;
}

.ab-shell {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
@media (min-width: 768px)  { .ab-shell { padding: 0 48px; } }
@media (min-width: 1024px) { .ab-shell { padding: 0 64px; } }

/* Vertical decorative lines */
.ab-vline {
    position: absolute;
    top: 0; bottom: 0;
    width: 1px;
    background: rgba(205, 160, 127, 0.5);
    z-index: 1;
}
.ab-vline-l { left: 16px; }
.ab-vline-r { right: 16px; }

/* Reusable eyebrow */
.ab-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(232, 52, 122, 0.1);
    border: 1px solid rgba(232, 52, 122, 0.28);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--ab-pink-deep);
    width: fit-content;
}
.ab-eyebrow-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--ab-pink);
    box-shadow: 0 0 0 0 rgba(232, 52, 122, 0.7);
    animation: abPing 1.8s ease-out infinite;
}
.ab-eyebrow-light {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
}
.ab-eyebrow-light .ab-eyebrow-dot { background: #fff; }
@keyframes abPing {
    0%   { box-shadow: 0 0 0 0 rgba(232, 52, 122, 0.55); }
    70%  { box-shadow: 0 0 0 10px rgba(232, 52, 122, 0); }
    100% { box-shadow: 0 0 0 0 rgba(232, 52, 122, 0); }
}

/* H2 / italic gradient */
.ab-h2 {
    font-size: clamp(36px, 4.6vw, 56px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 0;
    color: var(--ab-ink);
}
.ab-h2 em {
    font-style: italic;
    font-weight: 400;
    font-family: "PlayfairDisplay", "Times New Roman", serif;
    background: linear-gradient(135deg, var(--ab-pink) 0%, #f472b6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ab-section-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 56px;
    max-width: 720px;
}
.ab-section-head-center {
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ════════════════════════════════════════════════════════════
   1. HERO — copy-led, single column, mini avatar
   ════════════════════════════════════════════════════════════ */
.ab-hero {
    position: relative;
    padding: 96px 0 72px;
    overflow: hidden;
}
@media (min-width: 1024px) { .ab-hero { padding: 128px 0 96px; } }

.ab-bg {
    position: absolute; inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.ab-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}
.ab-blob-1 {
    width: 420px; height: 420px;
    top: -100px; left: -120px;
    background: radial-gradient(circle, rgba(232, 52, 122, 0.28), transparent 70%);
    animation: abDrift1 18s ease-in-out infinite;
}
.ab-blob-2 {
    width: 460px; height: 460px;
    bottom: -140px; right: -120px;
    background: radial-gradient(circle, rgba(205, 160, 127, 0.45), transparent 70%);
    animation: abDrift2 22s ease-in-out infinite;
}
@keyframes abDrift1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(60px, 40px) scale(1.08); }
}
@keyframes abDrift2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(-50px, -60px) scale(1.06); }
}

.ab-hero-shell { position: relative; z-index: 2; }
.ab-hero-card {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 880px;
}

/* Tiny circular avatar inline with eyebrow — replaces the 460×575 hero photo */
.ab-hero-mini {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
}
.ab-avatar-mini {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    flex: none;
    box-shadow:
        0 0 0 3px #fff,
        0 0 0 4px rgba(205, 160, 127, 0.4),
        0 8px 22px -10px rgba(232, 52, 122, 0.4);
}
.ab-avatar-mini img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 25%;
    display: block;
}
.ab-avatar-mini-dot {
    position: absolute;
    bottom: 1px; right: 1px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid #fff;
}

.ab-hero-title {
    font-size: clamp(44px, 7.5vw, 96px);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -0.035em;
    margin: 0;
    display: flex;
    flex-direction: column;
    color: var(--ab-ink);
}
.ab-hero-title .ab-line { display: block; }
.ab-hero-name {
    position: relative;
    line-height: 0.9;
    padding-bottom: 6px;
    display: inline-block;
    width: fit-content;
}
.ab-hero-name em {
    font-style: italic;
    font-weight: 400;
    font-family: "PlayfairDisplay", "Times New Roman", serif;
    background: linear-gradient(110deg,
        var(--ab-pink) 0%,
        var(--ab-peach) 35%,
        #f5cda5 50%,
        var(--ab-peach) 65%,
        var(--ab-pink) 100%);
    background-size: 220% 100%;
    background-position: 0% 50%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    animation: abShine 8s ease-in-out infinite;
}
@keyframes abShine {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

/* Hand-drawn flourish under "Enzo." — animates in via stroke-dashoffset */
.ab-hero-flourish {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: clamp(160px, 30vw, 320px);
    height: auto;
    overflow: visible;
    pointer-events: none;
}
.ab-hero-flourish path {
    stroke-dasharray: 360;
    stroke-dashoffset: 360;
    transition: stroke-dashoffset 1.8s cubic-bezier(.2,.7,.2,1) 0.7s;
}
.ab-page.fx-ready .ab-hero-flourish path { stroke-dashoffset: 0; }

/* Editorial "01 · Founder · Atlanta" chapter marker (replaces avatar pill) */
.ab-hero-marker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ab-pink-deep);
}
.ab-hero-marker-num {
    font-family: "PlayfairDisplay", "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 0;
    background: linear-gradient(135deg, var(--ab-pink) 0%, #f472b6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ab-hero-marker-line {
    width: 40px; height: 1px;
    background: linear-gradient(90deg, var(--ab-pink), transparent);
}
.ab-hero-tag {
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 400;
    color: var(--ab-mute);
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-top: 12px;
    font-family: inherit;
}

.ab-hero-sub {
    font-size: clamp(15px, 1.4vw, 17px);
    line-height: 1.6;
    color: var(--ab-mute);
    max-width: 560px;
    margin: 0;
    font-weight: 300;
}
.ab-hero-meta {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-top: 4px;
}
.ab-meta-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(205, 160, 127, 0.32);
    font-size: 12px;
    color: var(--ab-mute);
}
.ab-meta-pill svg { width: 13px; height: 13px; color: var(--ab-peach); }
.ab-meta-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    animation: abDot 1.8s ease-out infinite;
}
@keyframes abDot {
    0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
    70%  { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ════════════════════════════════════════════════════════════
   2. LETTER
   ════════════════════════════════════════════════════════════ */
.ab-letter-sec {
    position: relative;
    padding: 80px 0 100px;
}
.ab-letter {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    background: #fff;
    border: 1px solid rgba(205, 160, 127, 0.28);
    border-radius: 32px;
    padding: 40px 28px;
    box-shadow: 0 36px 80px -36px rgba(42, 42, 42, 0.22);
}
@media (min-width: 768px) {
    .ab-letter {
        grid-template-columns: 220px 1fr;
        gap: 56px;
        padding: 64px 64px;
    }
}
.ab-letter-side {
    display: flex; flex-direction: column;
    align-items: center; text-align: center; gap: 8px;
}
@media (min-width: 768px) {
    .ab-letter-side { align-items: flex-start; text-align: left; position: sticky; top: 100px; height: fit-content; }
}
.ab-letter-photo {
    width: 168px; height: 168px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--ab-cream);
    box-shadow: 0 22px 44px -16px rgba(232, 52, 122, 0.32);
    margin-bottom: 8px;
}
.ab-letter-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ab-letter-name { font-size: 16px; font-weight: 700; }
.ab-letter-role { font-size: 13px; color: var(--ab-mute); }

.ab-letter-body { position: relative; }
.ab-quote-mark {
    position: absolute;
    top: -32px; left: -10px;
    font-family: "PlayfairDisplay", "Times New Roman", serif;
    font-size: 110px;
    line-height: 1;
    color: rgba(232, 52, 122, 0.18);
    pointer-events: none;
    user-select: none;
}
.ab-letter-body p {
    margin: 0 0 18px;
    font-size: 18px; line-height: 1.65;
    color: rgba(42, 42, 42, 0.88);
    font-weight: 400;
}
@media (min-width: 768px) { .ab-letter-body p { font-size: 19px; } }
.ab-letter-body p strong { color: var(--ab-ink); font-weight: 600; }
.ab-letter-body p em { font-style: italic; color: var(--ab-pink-deep); }
.ab-lead {
    font-size: 22px !important;
    line-height: 1.5 !important;
    color: var(--ab-ink) !important;
    letter-spacing: -0.005em;
}
@media (min-width: 768px) { .ab-lead { font-size: 26px !important; } }

.ab-signature {
    margin-top: 28px; padding-top: 20px;
    border-top: 1px dashed rgba(205, 160, 127, 0.45);
    display: flex; flex-direction: column; gap: 4px;
}
.ab-signature-script {
    font-family: "PlayfairDisplay", "Times New Roman", serif;
    font-style: italic;
    font-size: 36px;
    line-height: 1;
    background: linear-gradient(135deg, var(--ab-pink) 0%, #f472b6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ab-signature-meta { font-size: 11.5px; color: rgba(42, 42, 42, 0.5); }
.ab-signature-tick { color: #15803d; font-weight: 600; }

.ab-promise {
    margin-top: 24px;
    padding: 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(232, 52, 122, 0.06) 0%, rgba(205, 160, 127, 0.10) 100%);
    border: 1px solid rgba(232, 52, 122, 0.22);
}
.ab-promise-tag {
    display: inline-block;
    margin-bottom: 6px;
    padding: 3px 10px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(232, 52, 122, 0.3);
    color: var(--ab-pink-deep);
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
}
.ab-promise p {
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
    color: var(--ab-ink) !important;
}
.ab-promise p strong { color: var(--ab-pink-deep); font-weight: 700; }

/* ════════════════════════════════════════════════════════════
   3. AGENTS
   ════════════════════════════════════════════════════════════ */
.ab-agents-sec {
    position: relative;
    padding: 100px 0 120px;
    background: #fff;
    border-top: 1px solid rgba(205, 160, 127, 0.28);
    border-bottom: 1px solid rgba(205, 160, 127, 0.28);
}

.ab-bignum-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 0 0 64px;
}
.ab-bignum {
    display: inline-flex;
    align-items: flex-start;
    line-height: 0.85;
    font-family: "PlayfairDisplay", "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(112px, 17vw, 220px);
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--ab-pink) 0%, #f472b6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ab-bignum-plus {
    font-size: 0.5em;
    margin-left: 4px;
    margin-top: 0.1em;
    opacity: 0.7;
}
.ab-bignum-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ab-mute);
}

.ab-agent-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
@media (min-width: 600px)  { .ab-agent-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .ab-agent-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .ab-agent-grid { grid-template-columns: repeat(4, 1fr); } }

.ab-agent-card {
    position: relative;
    padding: 22px 22px 24px;
    background: var(--ab-cream);
    border: 1px solid rgba(205, 160, 127, 0.28);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.3s cubic-bezier(.2,.7,.2,1), border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    overflow: hidden;
}
.ab-agent-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 52, 122, 0.08) 0%, rgba(205, 160, 127, 0.10) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.ab-agent-card:hover {
    transform: translateY(-2px);
    border-color: rgba(232, 52, 122, 0.4);
    box-shadow: 0 14px 32px -18px rgba(232, 52, 122, 0.28);
}
.ab-agent-card:hover::before { opacity: 1; }
.ab-agent-icon {
    position: relative;
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(232, 52, 122, 0.18);
    color: var(--ab-pink-deep);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.ab-agent-icon svg { width: 18px; height: 18px; }
.ab-agent-card:hover .ab-agent-icon {
    transform: rotate(-6deg) scale(1.05);
    background: linear-gradient(135deg, var(--ab-pink) 0%, #f472b6 100%);
    color: #fff;
    border-color: transparent;
}
.ab-agent-name { position: relative; font-size: 14.5px; font-weight: 700; color: var(--ab-ink); letter-spacing: -0.01em; }
.ab-agent-desc { position: relative; font-size: 13px; line-height: 1.45; color: var(--ab-mute); }

/* ════════════════════════════════════════════════════════════
   4. MISSION / PULL QUOTE
   ════════════════════════════════════════════════════════════ */
.ab-mission {
    position: relative;
    padding: 120px 0 130px;
    overflow: hidden;
    color: #fff;
}
.ab-mission-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 18% 0%, rgba(232, 52, 122, 0.55), transparent 60%),
        radial-gradient(ellipse 60% 60% at 82% 100%, rgba(205, 160, 127, 0.55), transparent 65%),
        linear-gradient(135deg, #1a1010 0%, #2a1a20 100%);
    pointer-events: none;
}
.ab-pull {
    position: relative;
    margin: 24px 0 0;
    max-width: 980px;
}
.ab-pull-mark {
    position: absolute;
    top: -68px; left: -16px;
    font-family: "PlayfairDisplay", "Times New Roman", serif;
    font-size: 200px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    user-select: none;
}
.ab-pull p {
    margin: 0 0 18px;
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: #fff;
}
.ab-pull p em {
    font-style: italic;
    font-weight: 400;
    font-family: "PlayfairDisplay", "Times New Roman", serif;
    background: linear-gradient(135deg, #fff 0%, var(--ab-peach) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ab-pull-tail {
    font-size: clamp(15px, 1.7vw, 19px) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.5 !important;
    font-weight: 300 !important;
    margin-top: 18px !important;
    letter-spacing: 0 !important;
}
.ab-pull-tail strong { color: #fff; font-weight: 600; }

/* ════════════════════════════════════════════════════════════
   5. STATS
   ════════════════════════════════════════════════════════════ */
.ab-stats-sec { padding: 110px 0 120px; }
.ab-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (min-width: 768px)  { .ab-stats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .ab-stats-grid { grid-template-columns: repeat(6, 1fr); } }
.ab-stat {
    background: #fff;
    border: 1px solid rgba(205, 160, 127, 0.28);
    border-radius: 18px;
    padding: 28px 22px;
    display: flex; flex-direction: column; gap: 8px;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.ab-stat:hover { transform: translateY(-3px); border-color: rgba(232, 52, 122, 0.35); }
.ab-stat-num {
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--ab-ink);
    font-variant-numeric: tabular-nums;
}
.ab-stat-label {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ab-mute);
    margin-top: 4px;
}

/* ════════════════════════════════════════════════════════════
   6. CTA
   ════════════════════════════════════════════════════════════ */
.ab-cta-sec {
    padding: 60px 0 140px;
}
.ab-cta-card {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    padding: 60px 32px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2020 100%);
    color: #fff;
    text-align: center;
    box-shadow: 0 40px 90px -36px rgba(232, 52, 122, 0.45);
}
@media (min-width: 768px) { .ab-cta-card { padding: 80px 64px; } }
.ab-cta-glow {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 40% 60% at 100% 0%, rgba(232, 52, 122, 0.4), transparent 60%),
        radial-gradient(ellipse 50% 60% at 0% 100%, rgba(205, 160, 127, 0.32), transparent 70%);
}
.ab-cta-eyebrow {
    position: relative;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 18px;
}
.ab-cta-h {
    position: relative;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 0 0 16px;
    color: #fff;
}
.ab-cta-h em {
    font-style: italic;
    font-weight: 400;
    font-family: "PlayfairDisplay", "Times New Roman", serif;
    background: linear-gradient(135deg, var(--ab-pink) 0%, #f472b6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ab-cta-sub {
    position: relative;
    max-width: 580px;
    margin: 0 auto 28px;
    font-size: 15.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 300;
}
.ab-cta-btn {
    position: relative;
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 28px;
    border-radius: 999px;
    background: #fff;
    color: var(--ab-ink);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.005em;
    text-decoration: none;
    transition: all 0.22s ease;
}
.ab-cta-btn svg { width: 16px; height: 16px; transition: transform 0.22s; }
.ab-cta-btn:hover {
    background: linear-gradient(135deg, var(--ab-pink) 0%, #f472b6 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 22px 44px -14px rgba(232, 52, 122, 0.55);
}
.ab-cta-btn:hover svg { transform: translateX(4px); }
.ab-cta-foot {
    position: relative;
    display: block;
    margin-top: 20px;
    font-family: "PlayfairDisplay", "Times New Roman", serif;
    font-style: italic;
    font-size: 22px;
    background: linear-gradient(135deg, var(--ab-pink) 0%, #f472b6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ════════════════════════════════════════════════════════════
   FX — initial states (revealed via GSAP) — scoped to .ab-page
   so they can't hide footer or other site-wide elements.
   ════════════════════════════════════════════════════════════ */
.ab-page [data-fx="up"]   { opacity: 0; transform: translateY(36px); }
.ab-page [data-fx="zoom"] { opacity: 0; transform: scale(0.94); }
.ab-page.fx-ready [data-fx] { will-change: transform, opacity; }
@media (prefers-reduced-motion: reduce) {
    .ab-page [data-fx] { opacity: 1 !important; transform: none !important; }
}

/* Defensive: the footer always renders — never let about styles eat it. */
.enzo-footer { display: block !important; visibility: visible !important; opacity: 1 !important; }

/* Mobile tweaks */
@media (max-width: 640px) {
    .ab-hero { padding: 90px 0 80px; }
    .ab-letter-sec, .ab-agents-sec, .ab-stats-sec { padding-top: 70px; padding-bottom: 80px; }
    .ab-mission { padding: 90px 0 100px; }
    .ab-cta-sec { padding: 40px 0 90px; }
    .ab-letter { padding: 36px 22px; }
    .ab-cta-card { padding: 48px 24px; }
}
