/*!
 * abn-design-v2.css
 * Design refresh stylesheet for the ABN site rebuild.
 *
 * Loaded only by pages under /_preview/ during the design pass.
 * Promotion (Wave 5) will move preview pages to the project root and
 * keep this file in place, so live pages start using it then.
 *
 * Layered AFTER abn-design.css so v2 rules win without touching v1.
 */

/* ====================================================================
 * Tokens
 * ==================================================================== */
:root {
    --abn-blue: #25408f;
    --abn-blue-deep: #1b3070;
    --abn-ink: #0a1020;
    --abn-text: #1a1f33;
    --abn-mute: #5a6276;
    --abn-line: #e6e8ee;
    --abn-line-strong: #cfd4e0;
    --abn-bg-soft: #f7f8fb;
    --abn-bg-soft-2: #eef1f7;

    --abn-section-y: 96px;
    --abn-block-y: 48px;

    --abn-radius: 12px;
    --abn-radius-lg: 16px;

    --abn-shadow-card-hover: 0 10px 28px rgba(10, 16, 32, 0.08);
}

@media (max-width: 768px) {
    :root {
        --abn-section-y: 64px;
        --abn-block-y: 32px;
    }
}

/* ====================================================================
 * Decoration nullifiers (kill template wavy shapes / blob backgrounds)
 * Scoped so they only neutralise on sections still using template chrome.
 * ==================================================================== */
.banner-area.inc-shape::before,
.banner-area.inc-shape::after,
.banner-area > .shape,
.banner-area .shape,
.about-area.inc-shape::before,
.about-area.inc-shape::after {
    display: none !important;
}

/* ====================================================================
 * Hero: dark navy with bento proof-tile grid on the right
 * ==================================================================== */
.abn-v2-hero {
    background: #0a1020;
    color: #ffffff;
    padding: 112px 0 96px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 900px) {
    .abn-v2-hero { padding: 80px 0 64px; }
}

.abn-v2-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .abn-v2-hero__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.abn-v2-hero__copy {
    /* left column container */
}

.abn-v2-hero__eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #7ea0ff;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.abn-v2-hero__headline {
    font-size: clamp(2.25rem, 5.2vw, 4rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.022em;
    color: #ffffff;
    margin: 0 0 1.5rem;
    max-width: 16ch;
}

.abn-v2-hero__sub {
    font-size: 1.125rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    max-width: 50ch;
    margin: 0 0 2.25rem;
}

.abn-v2-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.7rem;
    background: #ffffff;
    color: #0a1020;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
    border: none;
}

.abn-v2-hero__cta:hover,
.abn-v2-hero__cta:focus {
    background: var(--abn-blue);
    color: #ffffff;
    transform: translateY(-1px);
    text-decoration: none;
}

.abn-v2-hero__cta i {
    font-size: 0.85em;
}

/* Spotlight glow behind the photo (anchored to right side of hero) */
.abn-v2-hero__spotlight {
    position: absolute;
    top: 50%;
    right: -8%;
    transform: translateY(-50%);
    width: 70%;
    height: 110%;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 65% at 60% 50%,
            rgba(126, 160, 255, 0.18) 0%,
            rgba(37, 64, 143, 0.10) 35%,
            transparent 75%);
    z-index: 0;
}

/* Portrait (right column) */
.abn-v2-hero__photo {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 480px;
    z-index: 1;
}

.abn-v2-hero__photo img {
    display: block;
    width: 100%;
    max-width: 460px;
    height: auto;
    max-height: 76vh;
    object-fit: contain;
    object-position: bottom center;
    position: relative;
    z-index: 2;
    /* Fade the bottom of the figure (legs) into the dark navy so she
       merges with the background instead of looking cut off. */
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 78%, transparent 99%);
            mask-image: linear-gradient(to bottom, #000 0%, #000 78%, transparent 99%);
    -webkit-mask-size: 100% 100%;
            mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
}

.abn-v2-hero__photo-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60%;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 40% at 50% 100%,
            rgba(126, 160, 255, 0.22) 0%,
            rgba(37, 64, 143, 0.10) 40%,
            transparent 70%);
    z-index: 1;
    filter: blur(8px);
}

@media (max-width: 900px) {
    .abn-v2-hero__photo {
        min-height: 380px;
        margin-top: 16px;
    }
    .abn-v2-hero__photo img {
        max-width: 320px;
        max-height: 56vh;
    }
    .abn-v2-hero__spotlight {
        top: 70%;
        right: 50%;
        transform: translate(50%, -50%);
        width: 100%;
        height: 60%;
    }
}

/* ====================================================================
 * Horizontal stat band: proof immediately below the hero
 * ==================================================================== */
.abn-v2-stat-band {
    background: #0d152e;
    border-top: 1px solid rgba(126, 160, 255, 0.10);
    border-bottom: 1px solid rgba(126, 160, 255, 0.10);
    padding: 36px 0;
    color: #ffffff;
}

.abn-v2-stat-band__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

@media (max-width: 900px) {
    .abn-v2-stat-band__inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 28px 24px;
    }
    .abn-v2-stat-band__sep { display: none; }
}

.abn-v2-stat-band__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 0 1 auto;
    text-align: left;
}

@media (max-width: 900px) {
    .abn-v2-stat-band__item {
        flex: 0 1 calc(50% - 14px);
        text-align: center;
        align-items: center;
    }
}

.abn-v2-stat-band__value {
    font-size: clamp(1.3rem, 2vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.018em;
    color: #ffffff;
    line-height: 1;
}

.abn-v2-stat-band__value .abn-v2-stat-band__unit {
    font-size: 0.6em;
    font-weight: 700;
    color: #7ea0ff;
    margin-left: 0.1em;
    letter-spacing: 0;
}

.abn-v2-stat-band__label {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.abn-v2-stat-band__sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(126, 160, 255, 0.5);
    flex-shrink: 0;
}

/* ====================================================================
 * Process: standardized horizontal timeline. 4 equal-size cells
 * connected by a thin brand-blue line through their dot markers.
 * ==================================================================== */
.abn-v2-process {
    background: linear-gradient(180deg, #0a1430 0%, #070d1f 100%);
    color: #ffffff;
    padding: 96px 0;
}

.abn-v2-process__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.abn-v2-process__head {
    text-align: center;
    margin-bottom: 64px;
}

.abn-v2-process__eyebrow {
    display: inline-block;
    font-family: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7ea0ff;
    font-weight: 600;
    margin-bottom: 16px;
}

.abn-v2-process__title {
    font-size: clamp(1.85rem, 3.6vw, 2.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.018em;
    color: #ffffff;
    margin: 0;
}

.abn-v2-process__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: stretch;
}

@media (max-width: 900px) {
    .abn-v2-process__grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 28px;
    }
}

@media (max-width: 560px) {
    .abn-v2-process__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.abn-v2-process__step {
    position: relative;
    padding: 8px 0 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Connector line through dot markers (desktop only) */
.abn-v2-process__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 14px;
    left: 12px;
    right: -32px;
    height: 1px;
    background: linear-gradient(to right,
        rgba(126, 160, 255, 0.45) 0%,
        rgba(126, 160, 255, 0.15) 100%);
    z-index: 0;
}

@media (max-width: 900px) {
    .abn-v2-process__step:not(:last-child)::after {
        display: none;
    }
}

.abn-v2-process__marker {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.abn-v2-process__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #5a78de;
    border: 2px solid #070d1f;
    box-shadow: 0 0 12px rgba(90, 120, 222, 0.6);
    flex-shrink: 0;
}

.abn-v2-process__num {
    font-family: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
}

.abn-v2-process__name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
    line-height: 1.25;
}

.abn-v2-process__copy {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
}

/* ====================================================================
 * Trust marquee (auto-scrolling client names, full color, hover-pause)
 * Edge gradient fades smooth the loop seam.
 * ==================================================================== */
.abn-v2-trust {
    padding: 44px 0 52px;
    background: #ffffff;
    border-bottom: 1px solid var(--abn-line);
    overflow: hidden;
    position: relative;
}

.abn-v2-trust__label {
    text-align: center;
    font-size: 0.74rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--abn-mute);
    font-weight: 600;
    margin: 0 0 1.5rem;
}

.abn-v2-trust__track {
    display: flex;
    width: max-content;
    animation: abn-v2-marquee 55s linear infinite;
}

.abn-v2-trust:hover .abn-v2-trust__track,
.abn-v2-trust:focus-within .abn-v2-trust__track {
    animation-play-state: paused;
}

.abn-v2-trust__group {
    display: flex;
    align-items: center;
    gap: 56px;
    padding-right: 56px;
    flex-shrink: 0;
}

.abn-v2-trust__item {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--abn-ink);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1;
}

.abn-v2-trust__sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--abn-line-strong);
    flex-shrink: 0;
}

@keyframes abn-v2-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.abn-v2-trust::before,
.abn-v2-trust::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.abn-v2-trust::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
}

.abn-v2-trust::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
}

@media (prefers-reduced-motion: reduce) {
    .abn-v2-trust__track { animation: none; }
}

/* ====================================================================
 * About block (intro top, photo + 2x2 stat grid middle, cert bar bottom)
 * ==================================================================== */
.abn-v2-about {
    padding: var(--abn-section-y) 0;
    background: #ffffff;
}

.abn-v2-about__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.abn-v2-about__intro {
    max-width: 760px;
    margin: 0 auto var(--abn-block-y);
    text-align: center;
}

.abn-v2-about__eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--abn-blue);
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.abn-v2-about__title {
    font-size: clamp(1.85rem, 3.6vw, 2.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.018em;
    color: var(--abn-ink);
    margin: 0 0 1.25rem;
}

.abn-v2-about__lede {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--abn-text);
    margin: 0;
}

.abn-v2-about__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
    margin-bottom: var(--abn-block-y);
}

@media (max-width: 768px) {
    .abn-v2-about__body {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.abn-v2-about__photo {
    border-radius: var(--abn-radius-lg);
    overflow: hidden;
    background: var(--abn-bg-soft);
    min-height: 380px;
    display: block;
}

.abn-v2-about__photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    object-position: center;
}

/* 2x2 stat grid */
.abn-v2-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    min-height: 380px;
}

@media (max-width: 480px) {
    .abn-v2-stats { grid-template-columns: 1fr; grid-template-rows: repeat(4, auto); min-height: 0; }
}

.abn-v2-stat {
    background: var(--abn-bg-soft);
    border: 1px solid var(--abn-line);
    border-radius: var(--abn-radius);
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.abn-v2-stat:hover {
    border-color: var(--abn-line-strong);
}

.abn-v2-stat__value {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--abn-ink);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.abn-v2-stat__value .abn-v2-stat__unit {
    font-size: 0.55em;
    font-weight: 700;
    color: var(--abn-blue);
    margin-left: 0.15em;
    letter-spacing: 0;
}

.abn-v2-stat__label {
    font-size: 0.88rem;
    color: var(--abn-mute);
    line-height: 1.4;
    margin: 0;
}

/* Horizontal cert bar */
.abn-v2-cert-bar {
    border-top: 1px solid var(--abn-line);
    padding-top: var(--abn-block-y);
    margin-top: var(--abn-block-y);
}

.abn-v2-cert-bar__label {
    text-align: center;
    font-size: 0.74rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--abn-mute);
    font-weight: 600;
    margin: 0 0 1.75rem;
}

.abn-v2-cert-bar__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 56px 64px;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .abn-v2-cert-bar__items { gap: 36px 40px; }
}

.abn-v2-cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 168px;
    flex: 0 1 auto;
}

.abn-v2-cert-item__mark {
    font-size: 1.5rem;
    color: var(--abn-blue);
    margin-bottom: 0.55rem;
    line-height: 1;
}

.abn-v2-cert-item__name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--abn-ink);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 0.2rem;
}

.abn-v2-cert-item__note {
    font-size: 0.78rem;
    color: var(--abn-mute);
    line-height: 1.4;
    margin: 0;
}

/* ====================================================================
 * Click affordance (Fix 2): cursor + lift + corner arrow on every
 * .abn-card-clickable across the site (directors, portfolio, clients).
 * ==================================================================== */
.abn-card-clickable {
    cursor: pointer;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.abn-card-clickable:hover {
    transform: translateY(-2px);
    box-shadow: var(--abn-shadow-card-hover);
}

.abn-card-clickable:focus {
    outline: none;
}

.abn-card-clickable:focus-visible {
    outline: 2px solid var(--abn-blue);
    outline-offset: 3px;
}

.abn-card-clickable::after {
    content: "\2197"; /* ↗ */
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--abn-blue);
    opacity: 0.35;
    transition: opacity 0.2s ease, transform 0.2s ease;
    line-height: 1;
    pointer-events: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

.abn-card-clickable:hover::after {
    opacity: 0.9;
    transform: translate(2px, -2px);
}

/* ====================================================================
 * Homepage founders row: make the existing template team card into a
 * clickable card with the v2 affordance. Keep visual continuity with
 * other v2 cards (soft border, rounded radius, generous padding).
 * ==================================================================== */
.abn-founders-row .single-item .item.abn-card-clickable {
    background: var(--abn-bg-soft);
    border: 1px solid var(--abn-line);
    border-radius: var(--abn-radius-lg);
    padding: 1.5rem 1rem 1.25rem;
}

.abn-founders-row .single-item .item.abn-card-clickable:hover {
    border-color: var(--abn-line-strong);
}

/* ====================================================================
 * Director / portfolio / client lightbox modal polish carries over from
 * abn-design.css (.abn-mfp-content). No overrides needed for Wave 1.
 * ==================================================================== */


/* ====================================================================
 * WAVE 2A · SERVICES (3 super-categories, no icons, dark navy)
 * ==================================================================== */
.abn-v2-services {
    background: #070d1f;
    color: #ffffff;
    padding: clamp(80px, 12vh, 140px) 0;
    position: relative;
}

.abn-v2-services__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.abn-v2-services__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(56px, 8vh, 88px);
}

.abn-v2-services__eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7ea0ff;
    font-weight: 600;
    margin-bottom: 16px;
}

.abn-v2-services__title {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(1.85rem, 3.6vw, 2.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.018em;
    color: #ffffff;
    margin: 0 0 1.25rem;
}

.abn-v2-services__lede {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
}

.abn-v2-services__group {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: clamp(32px, 5vw, 72px);
    padding: clamp(40px, 6vh, 56px) 0;
    border-top: 1px solid rgba(126, 160, 255, 0.15);
    align-items: start;
}

.abn-v2-services__group:last-of-type {
    border-bottom: 1px solid rgba(126, 160, 255, 0.15);
}

@media (max-width: 900px) {
    .abn-v2-services__group {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.abn-v2-services__cat {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.abn-v2-services__cat-num {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: rgba(126, 160, 255, 0.7);
    font-weight: 600;
}

.abn-v2-services__cat-name {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.018em;
    line-height: 1.1;
    margin: 0;
}

.abn-v2-services__cat-note {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
    margin: 6px 0 0;
}

.abn-v2-services__items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

@media (max-width: 1100px) {
    .abn-v2-services__items {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .abn-v2-services__items {
        grid-template-columns: 1fr;
    }
}

.abn-v2-services__item {
    background: #0e1632;
    border: 1px solid rgba(126, 160, 255, 0.10);
    border-radius: 14px;
    padding: 1.6rem 1.5rem;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 170px;
}

.abn-v2-services__item:hover {
    border-color: rgba(126, 160, 255, 0.35);
    background: #131c3f;
    transform: translateY(-2px);
}

.abn-v2-services__item-name {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.012em;
    line-height: 1.25;
    margin: 0;
}

.abn-v2-services__item-copy {
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
}

.abn-v2-services__footer {
    text-align: center;
    margin-top: clamp(40px, 6vh, 56px);
}

.abn-v2-services__cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 15px 28px 15px 30px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    background: transparent;
    text-decoration: none;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.abn-v2-services__cta:hover {
    background: #25408f;
    border-color: #25408f;
    color: #ffffff;
}

.abn-v2-services__cta svg {
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}

.abn-v2-services__cta:hover svg {
    transform: translateX(5px);
}

/* ====================================================================
 * WAVE 2A · QUICK CTA (flat brand-aligned strip, no bokeh)
 * ==================================================================== */
.abn-v2-quick-cta {
    background: #25408f;
    color: #ffffff;
    padding: clamp(48px, 8vh, 72px) 0;
}

.abn-v2-quick-cta__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 36px;
    align-items: center;
}

@media (max-width: 768px) {
    .abn-v2-quick-cta__inner {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
}

.abn-v2-quick-cta__eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    margin-bottom: 10px;
}

.abn-v2-quick-cta__line {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
    max-width: 38ch;
}

.abn-v2-quick-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 28px 16px 30px;
    border-radius: 999px;
    background: #ffffff;
    color: #070d1f;
    text-decoration: none;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    justify-self: end;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .abn-v2-quick-cta__btn { justify-self: center; }
}

.abn-v2-quick-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
    color: #070d1f;
}

.abn-v2-quick-cta__btn svg {
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}

.abn-v2-quick-cta__btn:hover svg {
    transform: translateX(5px);
}

/* ====================================================================
 * WAVE 2A · FOOTER (two-zone composition: brand left, contact right)
 * ==================================================================== */
.abn-v2-footer {
    background: #0a1020;
    color: #ffffff;
    border-top: 1px solid rgba(126, 160, 255, 0.10);
    padding: clamp(80px, 10vh, 120px) 0 36px;
}

.abn-v2-footer__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Two-zone top */
.abn-v2-footer__top {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(48px, 7vw, 96px);
    padding-bottom: clamp(56px, 8vh, 80px);
    border-bottom: 1px solid rgba(126, 160, 255, 0.10);
    margin-bottom: clamp(28px, 4vh, 40px);
}

@media (max-width: 900px) {
    .abn-v2-footer__top {
        grid-template-columns: 1fr;
        gap: 56px;
    }
}

/* Brand zone (left) */
.abn-v2-footer__brand {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: clamp(40px, 6vh, 64px);
}

.abn-v2-footer__slogan {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(1.9rem, 4.4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: #ffffff;
    margin: 0;
    max-width: 14ch;
}

.abn-v2-footer__id {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.abn-v2-footer__logo {
    display: block;
    width: auto;
    max-width: 50%;
}

.abn-v2-footer__tag {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.50);
    line-height: 1.55;
    max-width: 32ch;
}

/* Contact zone (right) */
.abn-v2-footer__contact {
    display: flex;
    flex-direction: column;
    gap: clamp(26px, 3.5vh, 36px);
}

.abn-v2-footer__office,
.abn-v2-footer__direct {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.abn-v2-footer__office-label {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #7ea0ff;
    font-weight: 600;
    margin-bottom: 4px;
}

.abn-v2-footer__office-label em {
    font-style: normal;
    color: rgba(126, 160, 255, 0.55);
    font-weight: 400;
    margin-left: 6px;
    letter-spacing: 0.14em;
}

.abn-v2-footer__office-addr {
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    max-width: 42ch;
}

.abn-v2-footer__office-phone {
    color: rgba(255, 255, 255, 0.74);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    align-self: flex-start;
    border-bottom: 1px solid rgba(126, 160, 255, 0.20);
    padding-bottom: 2px;
}

.abn-v2-footer__office-phone:hover {
    color: #ffffff;
    border-color: #7ea0ff;
}

.abn-v2-footer__direct-list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 22px;
    row-gap: 8px;
}

.abn-v2-footer__direct-list a {
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.abn-v2-footer__direct-list a:hover {
    color: #ffffff;
}

/* Nav strip (between top and legal) */
.abn-v2-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    padding: clamp(20px, 2.8vh, 28px) 0;
    border-bottom: 1px solid rgba(126, 160, 255, 0.10);
    margin-bottom: clamp(20px, 2.8vh, 28px);
}

.abn-v2-footer__nav a {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    transition: color 0.3s ease;
}

.abn-v2-footer__nav a:hover {
    color: #7ea0ff;
}

/* Legal strip */
.abn-v2-footer__legal {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

@media (max-width: 768px) {
    .abn-v2-footer__legal {
        flex-direction: column;
        gap: 8px;
    }
}



/* ====================================================================
 * WAVE 2B · PAGE HEADER (dark navy, used on all inner pages)
 * Optional bg image via inline style="--page-header-bg: url('...');"
 * ==================================================================== */
.abn-v2-page-header {
    background:
        linear-gradient(rgba(7, 13, 31, 0.55), rgba(7, 13, 31, 0.80)),
        var(--page-header-bg, none) center/cover no-repeat,
        #070d1f;
    color: #ffffff;
    padding: clamp(180px, 22vh, 260px) 0 clamp(100px, 12vh, 140px);
    position: relative;
    overflow: hidden;
}

.abn-v2-page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 70% 20%,
            rgba(37, 64, 143, 0.22) 0%,
            transparent 60%);
    pointer-events: none;
}

.abn-v2-page-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.abn-v2-crumbs {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: clamp(24px, 4vh, 36px);
    display: flex;
    gap: 12px;
}

.abn-v2-crumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.abn-v2-crumbs a:hover { color: #7ea0ff; }

.abn-v2-crumbs span[aria-hidden="true"] {
    color: rgba(126, 160, 255, 0.5);
}

.abn-v2-crumbs span[aria-current] {
    color: #7ea0ff;
}

.abn-v2-page-header__title {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(2.2rem, 5.2vw, 4.5rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: #ffffff;
    margin: 0 0 clamp(20px, 3vh, 28px);
    max-width: 18ch;
}

.abn-v2-page-header__sub {
    font-size: clamp(15px, 1.1vw, 18px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.65);
    max-width: 54ch;
    margin: 0;
}

/* ====================================================================
 * WAVE 2B · TECH STACK (bright contrast, 4 layered cards)
 * ==================================================================== */
.abn-v2-stack {
    background: linear-gradient(180deg, #f4f7ff 0%, #e1e8ff 100%);
    color: #070d1f;
    padding: clamp(80px, 12vh, 140px) 0;
}

.abn-v2-stack__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.abn-v2-stack__head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto clamp(48px, 7vh, 72px);
}

.abn-v2-stack__eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #25408f;
    font-weight: 600;
    margin-bottom: 16px;
}

.abn-v2-stack__title {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(1.85rem, 3.6vw, 2.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.018em;
    color: #070d1f;
    margin: 0 0 1.25rem;
}

.abn-v2-stack__lede {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: rgba(7, 13, 31, 0.65);
    margin: 0;
}

.abn-v2-stack__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

@media (max-width: 980px) {
    .abn-v2-stack__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
    .abn-v2-stack__grid { grid-template-columns: 1fr; }
}

.abn-v2-stack__layer {
    background: #ffffff;
    border: 1px solid rgba(37, 64, 143, 0.12);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 12px rgba(7, 13, 31, 0.03);
}

.abn-v2-stack__layer:hover {
    border-color: rgba(37, 64, 143, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(7, 13, 31, 0.06);
}

.abn-v2-stack__layer-num {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: rgba(37, 64, 143, 0.5);
    font-weight: 600;
    margin-bottom: 8px;
}

.abn-v2-stack__layer-name {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #070d1f;
    letter-spacing: -0.018em;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(37, 64, 143, 0.10);
}

.abn-v2-stack__items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.abn-v2-stack__items li {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 13px;
    letter-spacing: 0.03em;
    color: rgba(7, 13, 31, 0.78);
    padding: 8px 12px;
    background: rgba(37, 64, 143, 0.05);
    border-radius: 6px;
    border-left: 2px solid rgba(37, 64, 143, 0.35);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.abn-v2-stack__items li:hover {
    background: rgba(37, 64, 143, 0.10);
    border-left-color: #25408f;
}

/* ====================================================================
 * WAVE 2B · DEPLOYED SYSTEMS (dark navy, 5 clusters)
 * ==================================================================== */
.abn-v2-deployed {
    background: #070d1f;
    color: #ffffff;
    padding: clamp(80px, 12vh, 140px) 0;
}

.abn-v2-deployed__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.abn-v2-deployed__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto clamp(48px, 7vh, 72px);
}

.abn-v2-deployed__eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7ea0ff;
    font-weight: 600;
    margin-bottom: 16px;
}

.abn-v2-deployed__title {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(1.85rem, 3.6vw, 2.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.018em;
    color: #ffffff;
    margin: 0 0 1.25rem;
}

.abn-v2-deployed__lede {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
}

.abn-v2-deployed__cluster {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(28px, 4vw, 56px);
    padding: clamp(32px, 5vh, 48px) 0;
    border-top: 1px solid rgba(126, 160, 255, 0.15);
    align-items: start;
}

.abn-v2-deployed__cluster:last-of-type {
    border-bottom: 1px solid rgba(126, 160, 255, 0.15);
}

@media (max-width: 900px) {
    .abn-v2-deployed__cluster {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.abn-v2-deployed__cat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.abn-v2-deployed__cat-num {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: rgba(126, 160, 255, 0.65);
    font-weight: 600;
}

.abn-v2-deployed__cat-name {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.015em;
    line-height: 1.15;
}

.abn-v2-deployed__cat-count {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 4px;
}

.abn-v2-deployed__cat-count::after {
    content: " systems";
}

.abn-v2-deployed__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
}

@media (max-width: 560px) {
    .abn-v2-deployed__list { grid-template-columns: 1fr; }
}

.abn-v2-deployed__list li {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14.5px;
    padding-left: 20px;
    position: relative;
    line-height: 1.45;
}

.abn-v2-deployed__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 1px;
    background: #7ea0ff;
}


/* ====================================================================
 * WAVE 2C · About cert bar footnote (USAINS R&D partnership)
 * ==================================================================== */
.abn-v2-cert-bar__foot {
    margin: clamp(36px, 5vh, 52px) 0 0;
    padding-top: clamp(20px, 3vh, 28px);
    border-top: 1px dashed var(--abn-line);
    text-align: center;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--abn-mute);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.abn-v2-cert-bar__foot-mark {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--abn-blue);
    box-shadow: 0 0 8px rgba(37, 64, 143, 0.45);
    flex-shrink: 0;
}

/* ====================================================================
 * WAVE 2C · SOLUTIONS (selected work, 6-card 3x2, dark navy)
 * ==================================================================== */
.abn-v2-solutions {
    background: #070d1f;
    color: #ffffff;
    padding: clamp(80px, 12vh, 140px) 0;
}
.abn-v2-solutions__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.abn-v2-solutions__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(56px, 8vh, 88px);
}
.abn-v2-solutions__eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7ea0ff;
    font-weight: 600;
    margin-bottom: 16px;
}
.abn-v2-solutions__title {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(1.85rem, 3.6vw, 2.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.018em;
    color: #ffffff;
    margin: 0 0 1.25rem;
}
.abn-v2-solutions__lede {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
}

.abn-v2-solutions__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
@media (max-width: 980px) {
    .abn-v2-solutions__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .abn-v2-solutions__grid { grid-template-columns: 1fr; }
}

.abn-v2-solutions__card {
    background: #0e1632;
    border: 1px solid rgba(126, 160, 255, 0.10);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.abn-v2-solutions__card:hover {
    border-color: rgba(126, 160, 255, 0.45);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(7, 13, 31, 0.5);
}

.abn-v2-solutions__media {
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-bottom: 1px solid rgba(126, 160, 255, 0.10);
}
/* Dark gradient overlay removed per client request (2026-05-19) so the
   project photos pop. The .abn-v2-solutions__cat category pill keeps
   its own brand-blue backdrop so it stays readable on bright photos. */
.abn-v2-solutions__cat {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(37, 64, 143, 0.85);
    padding: 5px 10px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.abn-v2-solutions__body {
    padding: 1.6rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}
.abn-v2-solutions__name {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.012em;
    line-height: 1.3;
    margin: 0;
}
.abn-v2-solutions__copy {
    font-size: 0.93rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
}

.abn-v2-solutions__footer {
    text-align: center;
    margin-top: clamp(40px, 6vh, 56px);
}
.abn-v2-solutions__cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 15px 28px 15px 30px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    background: transparent;
    text-decoration: none;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: background 0.3s ease, border-color 0.3s ease;
}
.abn-v2-solutions__cta:hover {
    background: #25408f;
    border-color: #25408f;
    color: #ffffff;
}
.abn-v2-solutions__cta svg {
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.abn-v2-solutions__cta:hover svg {
    transform: translateX(5px);
}

/* ====================================================================
 * WAVE 2C · TEAM (bright contrast, founders + management)
 * ==================================================================== */
.abn-v2-team {
    background: linear-gradient(180deg, #f4f7ff 0%, #e1e8ff 100%);
    color: #070d1f;
    padding: clamp(80px, 12vh, 140px) 0;
}
.abn-v2-team__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.abn-v2-team__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(56px, 8vh, 80px);
}
.abn-v2-team__eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #25408f;
    font-weight: 600;
    margin-bottom: 16px;
}
.abn-v2-team__title {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(1.85rem, 3.6vw, 2.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.018em;
    color: #070d1f;
    margin: 0 0 1.25rem;
}
.abn-v2-team__lede {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: rgba(7, 13, 31, 0.62);
    margin: 0;
}

/* Founders row (2 large cards) */
.abn-v2-team__founders {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 280px));
    gap: 28px;
    justify-content: center;
    margin-bottom: clamp(48px, 7vh, 72px);
}
@media (max-width: 600px) {
    .abn-v2-team__founders { grid-template-columns: 1fr; max-width: 280px; margin-left: auto; margin-right: auto; }
}

/* Management row (4 smaller cards) */
.abn-v2-team__management {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 920px;
    margin: 0 auto;
}
@media (max-width: 900px) {
    .abn-v2-team__management { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .abn-v2-team__management { grid-template-columns: 1fr; }
}

/* Card shared */
.abn-v2-team__card {
    background: #ffffff;
    border: 1px solid rgba(37, 64, 143, 0.10);
    border-radius: 14px;
    padding: 24px 16px 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.abn-v2-team__card--founder {
    padding: 32px 20px 28px;
}
.abn-v2-team__card.abn-card-clickable:hover {
    border-color: rgba(37, 64, 143, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(7, 13, 31, 0.06);
}

.abn-v2-team__thumb {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(37, 64, 143, 0.08);
    position: relative;
    border: 2px solid rgba(37, 64, 143, 0.15);
}
.abn-v2-team__card--founder .abn-v2-team__thumb {
    width: 140px;
    height: 140px;
    border: 3px solid rgba(37, 64, 143, 0.18);
}
.abn-v2-team__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.abn-v2-team__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}
.abn-v2-team__name {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #070d1f;
    letter-spacing: -0.01em;
    margin: 0;
    line-height: 1.25;
}
.abn-v2-team__card--founder .abn-v2-team__name {
    font-size: 1.15rem;
}
.abn-v2-team__role {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #25408f;
    font-weight: 600;
    line-height: 1.4;
}
.abn-v2-team__card--founder .abn-v2-team__role {
    font-size: 10.5px;
}


/* ====================================================================
 * WAVE 3 · ABOUT STORY (intro with photo + achievement list)
 * ==================================================================== */
.abn-v2-about-story {
    background: #ffffff;
    padding: clamp(80px, 12vh, 140px) 0;
    color: var(--abn-ink);
}
.abn-v2-about-story__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}
@media (max-width: 980px) {
    .abn-v2-about-story__inner { grid-template-columns: 1fr; gap: 40px; }
}

.abn-v2-about-story__photo {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    min-height: 480px;
    box-shadow: 0 16px 40px rgba(7, 13, 31, 0.06);
}
.abn-v2-about-story__photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.abn-v2-about-story__badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(7, 13, 31, 0.85);
    color: #ffffff;
    padding: 16px 22px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: baseline;
    gap: 12px;
    border: 1px solid rgba(126, 160, 255, 0.20);
}
.abn-v2-about-story__badge-num {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    line-height: 1;
}
.abn-v2-about-story__badge-label {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
    max-width: 14ch;
}

.abn-v2-about-story__text {
    display: flex;
    flex-direction: column;
}
.abn-v2-about-story__eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #25408f;
    font-weight: 600;
    margin-bottom: 16px;
}
.abn-v2-about-story__title {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--abn-ink);
    margin: 0 0 1.5rem;
}
.abn-v2-about-story__para {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(7, 13, 31, 0.7);
    margin: 0 0 1rem;
}

.abn-v2-about-story__list {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.abn-v2-about-story__list li {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding-top: 18px;
    border-top: 1px solid rgba(37, 64, 143, 0.10);
}
.abn-v2-about-story__list li:first-child {
    border-top: none;
    padding-top: 0;
}
.abn-v2-about-story__list-mark {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(37, 64, 143, 0.08);
    color: #25408f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.abn-v2-about-story__list h4 {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--abn-ink);
    letter-spacing: -0.01em;
    margin: 0 0 4px;
    line-height: 1.3;
}
.abn-v2-about-story__list p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(7, 13, 31, 0.62);
    margin: 0;
}

.abn-v2-about-story__signed {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(37, 64, 143, 0.10);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.abn-v2-about-story__signed-name {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--abn-ink);
}
.abn-v2-about-story__signed-role {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #25408f;
    font-weight: 600;
}

/* ====================================================================
 * WAVE 3 · DIRECTOR PROFILES (2 large clickable cards, dark navy)
 * ==================================================================== */
.abn-v2-directors {
    background: #070d1f;
    color: #ffffff;
    padding: clamp(80px, 12vh, 140px) 0;
}
.abn-v2-directors__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.abn-v2-directors__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(48px, 7vh, 72px);
}
.abn-v2-directors__eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7ea0ff;
    font-weight: 600;
    margin-bottom: 16px;
}
.abn-v2-directors__title {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(1.85rem, 3.6vw, 2.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.018em;
    color: #ffffff;
    margin: 0 0 1.25rem;
}
.abn-v2-directors__lede {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
}

.abn-v2-directors__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}
@media (max-width: 900px) {
    .abn-v2-directors__grid { grid-template-columns: 1fr; }
}

.abn-v2-directors__card {
    background: #0e1632;
    border: 1px solid rgba(126, 160, 255, 0.12);
    border-radius: 18px;
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.abn-v2-directors__card.abn-card-clickable:hover {
    border-color: rgba(126, 160, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(7, 13, 31, 0.4);
}

.abn-v2-directors__photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(126, 160, 255, 0.08);
    border: 3px solid rgba(126, 160, 255, 0.18);
    align-self: center;
}
.abn-v2-directors__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.abn-v2-directors__body {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.abn-v2-directors__name {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.018em;
    color: #ffffff;
    margin: 0;
}
.abn-v2-directors__role {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7ea0ff;
    font-weight: 600;
}
.abn-v2-directors__bio {
    font-size: 0.93rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin: 12px 0 0;
    text-align: left;
}
.abn-v2-directors__bio strong {
    color: #ffffff;
    font-weight: 600;
}
.abn-v2-directors__more {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(126, 160, 255, 0.85);
    font-weight: 600;
    padding-top: 18px;
    margin-top: 8px;
    border-top: 1px solid rgba(126, 160, 255, 0.15);
    align-self: flex-start;
}
.abn-v2-directors__card.abn-card-clickable:hover .abn-v2-directors__more {
    color: #ffffff;
}


/* ====================================================================
 * WAVE 4 · CASE STUDIES (7 editorial alternating rows, dark navy)
 * ==================================================================== */
.abn-v2-cases {
    background: #070d1f;
    color: #ffffff;
    padding: clamp(80px, 12vh, 140px) 0 clamp(60px, 9vh, 100px);
}
.abn-v2-cases__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.abn-v2-cases__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(56px, 8vh, 80px);
}
.abn-v2-cases__eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7ea0ff;
    font-weight: 600;
    margin-bottom: 16px;
}
.abn-v2-cases__title {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(1.75rem, 3.4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.018em;
    color: #ffffff;
    margin: 0;
}

.abn-v2-case {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
    padding: clamp(36px, 5vh, 56px) 0;
    border-top: 1px solid rgba(126, 160, 255, 0.12);
    transition: border-color 0.3s ease;
}
.abn-v2-case:last-of-type {
    border-bottom: 1px solid rgba(126, 160, 255, 0.12);
}
.abn-v2-case.abn-card-clickable:hover {
    border-color: rgba(126, 160, 255, 0.35);
}
.abn-v2-case--reverse {
    direction: rtl;
}
.abn-v2-case--reverse > * {
    direction: ltr;
}
@media (max-width: 820px) {
    .abn-v2-case,
    .abn-v2-case--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 24px;
    }
}

.abn-v2-case__media {
    position: relative;
    aspect-ratio: 16 / 11;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(126, 160, 255, 0.10);
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.2, 1);
}
.abn-v2-case.abn-card-clickable:hover .abn-v2-case__media {
    transform: scale(1.015);
}
/* Dark gradient overlay removed per client request (2026-05-19) so the
   project photos pop. The .abn-v2-case__index pill keeps its own dark
   backdrop so it stays readable on bright photos. */
.abn-v2-case__index {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10.5px;
    letter-spacing: 0.22em;
    color: #ffffff;
    background: rgba(7, 13, 31, 0.7);
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid rgba(126, 160, 255, 0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.abn-v2-case__body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.abn-v2-case__cat {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7ea0ff;
    font-weight: 600;
}
.abn-v2-case__name {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.018em;
    color: #ffffff;
    margin: 0;
}
.abn-v2-case__copy {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
}
.abn-v2-case__licence {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(126, 160, 255, 0.9);
    padding: 8px 14px;
    border: 1px solid rgba(126, 160, 255, 0.25);
    border-radius: 999px;
    align-self: flex-start;
    background: rgba(126, 160, 255, 0.06);
}
.abn-v2-case__licence-mark {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #5a78de;
    box-shadow: 0 0 8px rgba(90, 120, 222, 0.7);
    animation: abn-v2-pulse 2.4s ease-in-out infinite;
}
@keyframes abn-v2-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.45; transform: scale(0.75); }
}
.abn-v2-case__more {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
    transition: color 0.3s ease;
}
.abn-v2-case.abn-card-clickable:hover .abn-v2-case__more {
    color: #7ea0ff;
}

/* ====================================================================
 * WAVE 4 · CLIENTS GRID (20 named clients, light section)
 * ==================================================================== */
.abn-v2-clients {
    background: linear-gradient(180deg, #f4f7ff 0%, #e8edff 100%);
    color: var(--abn-ink);
    padding: clamp(80px, 12vh, 140px) 0;
}
.abn-v2-clients__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.abn-v2-clients__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(48px, 7vh, 64px);
}
.abn-v2-clients__eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #25408f;
    font-weight: 600;
    margin-bottom: 16px;
}
.abn-v2-clients__title {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(1.85rem, 3.6vw, 2.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.018em;
    color: var(--abn-ink);
    margin: 0 0 1.25rem;
}
.abn-v2-clients__lede {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(7, 13, 31, 0.6);
    margin: 0;
}


/* ====================================================================
 * WAVE 5 · CONTACT (asymmetric form + offices aside)
 * ==================================================================== */
.abn-v2-contact {
    background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
    color: var(--abn-ink);
    padding: clamp(80px, 12vh, 140px) 0;
}
.abn-v2-contact__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}
@media (max-width: 900px) {
    .abn-v2-contact__inner { grid-template-columns: 1fr; gap: 48px; }
}

.abn-v2-contact__form-wrap {
    background: #ffffff;
    padding: clamp(28px, 4vw, 48px);
    border-radius: 16px;
    border: 1px solid rgba(37, 64, 143, 0.10);
    box-shadow: 0 20px 50px rgba(7, 13, 31, 0.04);
}
.abn-v2-contact__eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #25408f;
    font-weight: 600;
    margin-bottom: 14px;
}
.abn-v2-contact__title {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--abn-ink);
    margin: 0 0 1.75rem;
}

.abn-v2-contact__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.abn-v2-contact__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
@media (max-width: 600px) {
    .abn-v2-contact__row { grid-template-columns: 1fr; }
}
.abn-v2-contact__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.abn-v2-contact__field label {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(7, 13, 31, 0.55);
    font-weight: 600;
}
.abn-v2-contact__field input,
.abn-v2-contact__field textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(37, 64, 143, 0.18);
    background: #ffffff;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.95rem;
    color: var(--abn-ink);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.abn-v2-contact__field input::placeholder,
.abn-v2-contact__field textarea::placeholder {
    color: rgba(7, 13, 31, 0.4);
}
.abn-v2-contact__field input:focus,
.abn-v2-contact__field textarea:focus {
    outline: none;
    border-color: #25408f;
    box-shadow: 0 0 0 3px rgba(37, 64, 143, 0.12);
}
.abn-v2-contact__field textarea {
    min-height: 140px;
    resize: vertical;
    font-family: 'Inter', system-ui, sans-serif;
}

.abn-v2-contact__submit {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 28px 16px 32px;
    border-radius: 999px;
    background: #25408f;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    margin-top: 8px;
}
.abn-v2-contact__submit:hover {
    background: #1b3070;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(37, 64, 143, 0.25);
}
.abn-v2-contact__submit svg {
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.abn-v2-contact__submit:hover svg {
    transform: translateX(5px);
}

.abn-v2-contact__aside {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.abn-v2-contact__card {
    background: #ffffff;
    border: 1px solid rgba(37, 64, 143, 0.10);
    border-left: 3px solid #25408f;
    border-radius: 12px;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.abn-v2-contact__card--direct {
    border-left-color: #5a78de;
}
.abn-v2-contact__card--hours {
    border-left-color: rgba(37, 64, 143, 0.5);
}
.abn-v2-contact__card-label {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #25408f;
    font-weight: 600;
}
.abn-v2-contact__card-label em {
    font-style: normal;
    color: rgba(37, 64, 143, 0.6);
    font-weight: 400;
    margin-left: 6px;
    letter-spacing: 0.14em;
}
.abn-v2-contact__card-addr {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(7, 13, 31, 0.75);
    margin: 0;
}
.abn-v2-contact__card-note {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(7, 13, 31, 0.5);
    margin: 0;
    font-style: italic;
}
.abn-v2-contact__card-link {
    align-self: flex-start;
    color: var(--abn-ink);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(37, 64, 143, 0.3);
    padding-bottom: 1px;
    transition: color 0.25s ease, border-color 0.25s ease;
}
.abn-v2-contact__card-link:hover {
    color: #25408f;
    border-color: #25408f;
}
.abn-v2-contact__card-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.abn-v2-contact__card-list a {
    color: rgba(7, 13, 31, 0.75);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s ease;
}
.abn-v2-contact__card-list a:hover {
    color: #25408f;
}

/* ====================================================================
 * WAVE 5 · 404 PAGE
 * ==================================================================== */
.abn-v2-404 {
    background:
        radial-gradient(ellipse 60% 80% at 50% 30%, #122550 0%, transparent 70%),
        #070d1f;
    color: #ffffff;
    padding: clamp(96px, 14vh, 160px) 0 clamp(80px, 12vh, 120px);
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}
.abn-v2-404__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.abn-v2-404__code {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(96px, 18vw, 240px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.045em;
    color: #ffffff;
    background:
        linear-gradient(180deg, #ffffff 0%, rgba(126, 160, 255, 0.85) 70%, transparent 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
}
.abn-v2-404__title {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0;
}
.abn-v2-404__sub {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.62);
    max-width: 44ch;
    margin: 0;
}
.abn-v2-404__cta {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.abn-v2-404__cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 28px 16px 32px;
    border-radius: 999px;
    background: #ffffff;
    color: #070d1f;
    text-decoration: none;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.abn-v2-404__cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(126, 160, 255, 0.25);
    color: #070d1f;
}
.abn-v2-404__cta-primary svg {
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.abn-v2-404__cta-primary:hover svg {
    transform: translateX(5px);
}
.abn-v2-404__cta-ghost {
    display: inline-flex;
    align-items: center;
    padding: 16px 28px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.abn-v2-404__cta-ghost:hover {
    background: rgba(126, 160, 255, 0.1);
    border-color: rgba(126, 160, 255, 0.5);
    color: #ffffff;
}
.abn-v2-404__signature {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(126, 160, 255, 0.15);
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.abn-v2-404__signature-mark {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #5a78de;
    box-shadow: 0 0 8px rgba(90, 120, 222, 0.7);
}


/* ====================================================================
 * WAVE 5 · MAP SECTION (Google Maps embed, dark navy framing)
 * ==================================================================== */
.abn-v2-map {
    background: #070d1f;
    color: #ffffff;
    padding: clamp(72px, 10vh, 112px) 0;
}
.abn-v2-map__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.abn-v2-map__head {
    max-width: 720px;
    margin: 0 0 clamp(36px, 5vh, 52px);
}
.abn-v2-map__eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7ea0ff;
    font-weight: 600;
    margin-bottom: 14px;
}
.abn-v2-map__title {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.018em;
    color: #ffffff;
    margin: 0 0 0.75rem;
}
.abn-v2-map__sub {
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
}
.abn-v2-map__frame {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(126, 160, 255, 0.18);
    background: #0e1632;
    box-shadow: 0 20px 50px rgba(7, 13, 31, 0.5);
}
@media (max-width: 600px) {
    .abn-v2-map__frame { aspect-ratio: 4 / 5; }
}
.abn-v2-map__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: saturate(0.85) brightness(0.95);
}
.abn-v2-map__foot {
    margin-top: clamp(24px, 3vh, 32px);
    display: flex;
    justify-content: flex-end;
}
.abn-v2-map__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(126, 160, 255, 0.25);
    transition: color 0.3s ease, border-color 0.3s ease;
}
.abn-v2-map__link:hover {
    color: #ffffff;
    border-color: #7ea0ff;
}
.abn-v2-map__link svg {
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.abn-v2-map__link:hover svg {
    transform: translateX(4px);
}


/* ====================================================================
 * WAVE 5.5 · About-story compact chips (replaces full credentials list)
 * ==================================================================== */
.abn-v2-about-story__chips {
    list-style: none;
    margin: 28px 0 12px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.abn-v2-about-story__chips li {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #25408f;
    font-weight: 600;
    padding: 7px 12px;
    background: rgba(37, 64, 143, 0.08);
    border: 1px solid rgba(37, 64, 143, 0.15);
    border-radius: 999px;
}
.abn-v2-about-story__note {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(7, 13, 31, 0.5);
    margin: 4px 0 0;
}


/* ====================================================================
 * WAVE 5.5 · PRELOADER (ABN logo + scanning line, brand-aligned)
 * Sits inside #preloader (which the template's main.js fades out on load).
 * Override the template's #preloader background/animation by giving the
 * v2 preloader high specificity + full bleed.
 * ==================================================================== */
#preloader .abn-v2-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #070d1f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    /* Cover any inherited template styles */
    width: 100%;
    height: 100%;
}

.abn-v2-preloader__logo {
    height: clamp(40px, 5vw, 56px);
    width: auto;
    display: block;
    opacity: 0;
    animation: abn-v2-preloader-logo-in 0.6s ease-out 0.15s forwards;
}

@keyframes abn-v2-preloader-logo-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.abn-v2-preloader__line {
    width: clamp(80px, 12vw, 140px);
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.abn-v2-preloader__line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        #5a78de 30%,
        #c5d3ff 50%,
        #5a78de 70%,
        transparent 100%);
    transform: translateX(-100%);
    animation: abn-v2-preloader-scan 1.4s cubic-bezier(0.5, 0, 0.5, 1) infinite alternate;
    box-shadow: 0 0 12px rgba(90, 120, 222, 0.5);
}

@keyframes abn-v2-preloader-scan {
    from { transform: translateX(-50%); }
    to   { transform: translateX(200%); }
}

/* Make sure the template's old preloader internals stay hidden if they
   somehow render before main.js fades #preloader out. */
#preloader .animation-preloader,
#preloader .loader,
#preloader .spinner,
#preloader .preloader-logo {
    display: none !important;
}

@media (prefers-reduced-motion: reduce) {
    .abn-v2-preloader__logo {
        opacity: 1;
        animation: none;
    }
    .abn-v2-preloader__line::after {
        animation: none;
        transform: translateX(50%);
    }
}


/* ====================================================================
 * WAVE 5.6 · About-story facts block (4 compact key/value rows)
 * ==================================================================== */
.abn-v2-about-story__facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 28px;
    margin: 28px 0 24px;
    padding: 0;
}
.abn-v2-about-story__facts > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 0;
    border-top: 1px solid rgba(37, 64, 143, 0.12);
}
.abn-v2-about-story__facts dt {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #25408f;
    font-weight: 600;
    margin: 0;
}
.abn-v2-about-story__facts dd {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--abn-ink);
    margin: 0;
    line-height: 1.35;
}
@media (max-width: 480px) {
    .abn-v2-about-story__facts { grid-template-columns: 1fr; gap: 0; }
    .abn-v2-about-story__facts > div { padding: 12px 0; }
}


/* ====================================================================
 * WAVE 5.8 · TRUSTED BY (clients + vision/mission + 15+ years feature)
 * ==================================================================== */
.abn-v2-trusted {
    background: linear-gradient(180deg, #f4f7ff 0%, #e8edff 100%);
    color: var(--abn-ink);
    padding: clamp(80px, 12vh, 140px) 0;
}
.abn-v2-trusted__inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: clamp(40px, 5vw, 72px);
    align-items: center;
}
@media (max-width: 900px) { .abn-v2-trusted__inner { grid-template-columns: 1fr; gap: 40px; } }
.abn-v2-trusted__eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    color: #25408f; font-weight: 600; margin-bottom: 16px;
}
.abn-v2-trusted__title {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(1.75rem, 3.4vw, 2.5rem);
    font-weight: 800; line-height: 1.12; letter-spacing: -0.018em;
    color: var(--abn-ink); margin: 0 0 1.25rem;
}
.abn-v2-trusted__lede {
    font-size: 1rem; line-height: 1.65; color: rgba(7, 13, 31, 0.7);
    margin: 0 0 28px;
}
.abn-v2-trusted__quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
@media (max-width: 600px) { .abn-v2-trusted__quotes { grid-template-columns: 1fr; } }
.abn-v2-quote-card {
    background: #ffffff;
    border: 1px solid rgba(37, 64, 143, 0.10);
    border-left: 3px solid #25408f;
    border-radius: 10px;
    padding: 18px 20px;
    display: flex; flex-direction: column; gap: 8px;
}
.abn-v2-quote-card__label {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
    color: #25408f; font-weight: 600;
}
.abn-v2-quote-card__text {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.95rem; font-style: italic;
    color: var(--abn-ink); line-height: 1.5; margin: 0;
}
.abn-v2-trusted__cta {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 14px 24px 14px 26px;
    border-radius: 999px;
    border: 1px solid var(--abn-ink); color: var(--abn-ink);
    text-decoration: none;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.abn-v2-trusted__cta:hover { background: #25408f; color: #fff; border-color: #25408f; }
.abn-v2-trusted__cta svg { transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1); }
.abn-v2-trusted__cta:hover svg { transform: translateX(4px); }

.abn-v2-trusted__feature {
    background: #ffffff;
    border: 1px solid rgba(37, 64, 143, 0.12);
    border-radius: 16px;
    padding: clamp(28px, 4vw, 44px) clamp(24px, 3.5vw, 36px);
    text-align: center;
    box-shadow: 0 20px 50px rgba(7, 13, 31, 0.05);
}
.abn-v2-trusted__feature-label {
    display: block;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
    color: #25408f; font-weight: 600; margin-bottom: 18px;
}
.abn-v2-trusted__feature-num {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 800; letter-spacing: -0.035em; line-height: 1;
    color: var(--abn-ink); margin-bottom: 16px;
}
.abn-v2-trusted__feature-plus { color: #5a78de; font-size: 0.7em; }
.abn-v2-trusted__feature-note {
    font-size: 0.95rem; line-height: 1.5; color: rgba(7, 13, 31, 0.6);
    margin: 0; max-width: 22ch; margin-inline: auto;
}

/* ====================================================================
 * WAVE 5.8 · MD BENEFITS (brand-blue feature block)
 * ==================================================================== */
.abn-v2-md {
    background: #ffffff;
    padding: 0 0 clamp(64px, 9vh, 96px);
}
.abn-v2-md__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.abn-v2-md__block {
    background: linear-gradient(135deg, #25408f 0%, #1a2f6a 100%);
    color: #ffffff;
    border-radius: 18px;
    padding: clamp(36px, 5vw, 56px);
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: clamp(32px, 4vw, 56px);
    align-items: center;
    box-shadow: 0 24px 56px rgba(37, 64, 143, 0.22);
}
@media (max-width: 900px) { .abn-v2-md__block { grid-template-columns: 1fr; gap: 32px; } }
.abn-v2-md__tag {
    display: inline-block;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
    background: rgba(255, 255, 255, 0.18); color: #ffffff; font-weight: 600;
    padding: 7px 12px; border-radius: 999px; margin-bottom: 18px;
}
.abn-v2-md__title {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 800; line-height: 1.15; letter-spacing: -0.018em;
    color: #ffffff; margin: 0 0 14px;
}
.abn-v2-md__lede {
    font-size: 0.95rem; line-height: 1.6;
    color: rgba(255, 255, 255, 0.82); margin: 0;
}
.abn-v2-md__tiles {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
@media (max-width: 600px) { .abn-v2-md__tiles { grid-template-columns: 1fr; } }
.abn-v2-md-tile {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    padding: 16px 18px;
    transition: background 0.3s ease, border-color 0.3s ease;
}
.abn-v2-md-tile:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}
.abn-v2-md-tile__num {
    display: block;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 1.25rem; font-weight: 700; letter-spacing: -0.012em;
    color: #ffffff; margin-bottom: 6px; line-height: 1.15;
}
.abn-v2-md-tile__note {
    font-size: 0.85rem; line-height: 1.5;
    color: rgba(255, 255, 255, 0.82); margin: 0;
}

/* ====================================================================
 * WAVE 5.8 · PARTNERSHIPS (4 partner cards, light bg)
 * ==================================================================== */
.abn-v2-partners {
    background: linear-gradient(180deg, #f4f7ff 0%, #e8edff 100%);
    color: var(--abn-ink);
    padding: clamp(80px, 12vh, 140px) 0;
}
.abn-v2-partners__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.abn-v2-partners__head {
    text-align: center; max-width: 720px;
    margin: 0 auto clamp(48px, 7vh, 64px);
}
.abn-v2-partners__eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    color: #25408f; font-weight: 600; margin-bottom: 16px;
}
.abn-v2-partners__title {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(1.75rem, 3.4vw, 2.5rem);
    font-weight: 800; line-height: 1.12; letter-spacing: -0.018em;
    color: var(--abn-ink); margin: 0 0 1.25rem;
}
.abn-v2-partners__lede {
    font-size: 1rem; line-height: 1.6;
    color: rgba(7, 13, 31, 0.62); margin: 0;
}
.abn-v2-partners__grid {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 980px) { .abn-v2-partners__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .abn-v2-partners__grid { grid-template-columns: 1fr; } }
.abn-v2-partners__card {
    background: #ffffff;
    border: 1px solid rgba(37, 64, 143, 0.10);
    border-radius: 14px;
    padding: 24px 22px;
    display: flex; flex-direction: column; gap: 12px;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.abn-v2-partners__card:hover {
    border-color: rgba(37, 64, 143, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(7, 13, 31, 0.06);
}
.abn-v2-partners__icon {
    width: 48px; height: 48px;
    border-radius: 10px;
    background: rgba(37, 64, 143, 0.08);
    color: #25408f;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 20px;
}
.abn-v2-partners__name {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em;
    color: var(--abn-ink); margin: 4px 0 0;
}
.abn-v2-partners__copy {
    font-size: 0.88rem; line-height: 1.55;
    color: rgba(7, 13, 31, 0.62); margin: 0;
}

/* ====================================================================
 * WAVE 5.8 · CEO CREDENTIALS (aside + 6 categorized groups, dark navy)
 * ==================================================================== */
.abn-v2-ceo {
    background: #070d1f;
    color: #ffffff;
    padding: clamp(80px, 12vh, 140px) 0;
}
.abn-v2-ceo__inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: grid;
    grid-template-columns: 4fr 7fr;
    gap: clamp(40px, 5vw, 72px);
    align-items: start;
}
@media (max-width: 900px) { .abn-v2-ceo__inner { grid-template-columns: 1fr; gap: 36px; } }
.abn-v2-ceo__tag {
    display: inline-block;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
    background: rgba(126, 160, 255, 0.10);
    color: #7ea0ff; font-weight: 600;
    padding: 7px 12px; border-radius: 999px; margin-bottom: 18px;
}
.abn-v2-ceo__title {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 800; line-height: 1.15; letter-spacing: -0.018em;
    color: #ffffff; margin: 0 0 16px;
}
.abn-v2-ceo__lede {
    font-size: 0.95rem; line-height: 1.6;
    color: rgba(255, 255, 255, 0.65); margin: 0 0 12px;
}
.abn-v2-ceo__cert {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(126, 160, 255, 0.85); margin: 0;
}
.abn-v2-ceo__grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
}
@media (max-width: 600px) { .abn-v2-ceo__grid { grid-template-columns: 1fr; gap: 24px; } }
.abn-v2-ceo__group {
    display: flex; flex-direction: column; gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(126, 160, 255, 0.15);
}
.abn-v2-ceo__group-label {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
    color: #7ea0ff; font-weight: 600;
}
.abn-v2-ceo__list { list-style: none; padding: 0; margin: 0; }
.abn-v2-ceo__list li {
    padding: 6px 0; display: flex; flex-direction: column; gap: 2px;
}
.abn-v2-ceo__list-text {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem; line-height: 1.45;
}
.abn-v2-ceo__list-meta {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10px; letter-spacing: 0.12em;
    color: rgba(126, 160, 255, 0.6);
}


/* ====================================================================
 * WAVE 6 · CERTIFICATIONS CALLOUT (MOF + MD status, above-the-fold)
 * Bright section, large logo cards, prominent placement on home page.
 * ==================================================================== */
.abn-v2-certs {
    background: linear-gradient(180deg, #f4f7ff 0%, #e8edff 100%);
    color: var(--abn-ink);
    padding: clamp(72px, 10vh, 112px) 0;
    border-top: 1px solid rgba(37, 64, 143, 0.10);
    border-bottom: 1px solid rgba(37, 64, 143, 0.10);
}
.abn-v2-certs__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}
.abn-v2-certs__head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto clamp(40px, 6vh, 56px);
}
.abn-v2-certs__eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #25408f;
    font-weight: 600;
    margin-bottom: 14px;
}
.abn-v2-certs__title {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.018em;
    color: var(--abn-ink);
    margin: 0 0 14px;
}
.abn-v2-certs__lede {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(7, 13, 31, 0.65);
    margin: 0;
}

.abn-v2-certs__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}
@media (max-width: 760px) {
    .abn-v2-certs__grid { grid-template-columns: 1fr; }
}

.abn-v2-certs__card {
    background: #ffffff;
    border: 1px solid rgba(37, 64, 143, 0.10);
    border-left: 4px solid #25408f;
    border-radius: 14px;
    padding: clamp(28px, 4vw, 40px);
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: clamp(20px, 3vw, 32px);
    align-items: center;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 12px 32px rgba(7, 13, 31, 0.05);
}
.abn-v2-certs__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(37, 64, 143, 0.12);
    border-left-color: #1b3070;
}
@media (max-width: 560px) {
    .abn-v2-certs__card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 18px;
    }
}

.abn-v2-certs__logo {
    width: 160px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 64, 143, 0.04);
    border: 1px solid rgba(37, 64, 143, 0.08);
    border-radius: 12px;
}
@media (max-width: 560px) {
    .abn-v2-certs__logo { width: 100%; max-width: 220px; margin: 0 auto; }
}
.abn-v2-certs__logo img {
    max-width: 100%;
    max-height: 96px;
    width: auto;
    height: auto;
    display: block;
}

.abn-v2-certs__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.abn-v2-certs__label {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #25408f;
    font-weight: 600;
}
.abn-v2-certs__name {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 800;
    letter-spacing: -0.015em;
    color: var(--abn-ink);
    margin: 0;
    line-height: 1.2;
}
.abn-v2-certs__copy {
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(7, 13, 31, 0.65);
    margin: 6px 0 12px;
}
.abn-v2-certs__link {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--abn-ink);
    text-decoration: none;
    border-bottom: 1px solid rgba(37, 64, 143, 0.3);
    transition: color 0.25s ease, border-color 0.25s ease;
}
.abn-v2-certs__link:hover {
    color: #25408f;
    border-color: #25408f;
}
.abn-v2-certs__link svg {
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.abn-v2-certs__link:hover svg {
    transform: translateX(4px);
}
@media (max-width: 560px) {
    .abn-v2-certs__link { align-self: center; }
}


/* ====================================================================
 * WAVE 6.1 · Footer developer credit — folded into the legal row.
 * Credit span inherits the legal row's mono/uppercase/letter-spacing
 * so it blends. The link inside only gets a subtle hover state.
 * ==================================================================== */
.abn-v2-footer__legal a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}
.abn-v2-footer__legal a:hover {
    color: #7ea0ff;
    border-bottom-color: rgba(126, 160, 255, 0.4);
}
