/* =========================
   ABN Business Profile API Landing Page
========================= */

.abn-profile-hero,
.abn-profile-section,
.abn-profile-faq-section,
.abn-profile-cta-section {
    position: relative;
    overflow: hidden;
}

.abn-profile-hero {
    background:
        radial-gradient(circle at top right, rgba(213, 173, 40, 0.16), transparent 34%),
        linear-gradient(180deg, #071326 0%, #101827 100%);
}

.abn-profile-container {
    position: relative;
    z-index: 2;

    max-width: 1320px;
    margin: 0 auto;
    padding: 96px 32px;
}

.abn-profile-hero .abn-profile-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
    gap: 44px;
    align-items: center;
    min-height: 720px;
}

.abn-profile-eyebrow {
    width: fit-content;
    margin-bottom: 16px;
    padding: 7px 12px;

    border-radius: 999px;
    background: rgba(213, 173, 40, 0.14);
    border: 1px solid rgba(213, 173, 40, 0.24);

    color: var(--gold);
    font-size: 0.76rem;
    line-height: 1;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.abn-profile-hero h1,
.abn-profile-section h2,
.abn-profile-faq-section h2,
.abn-profile-cta-section h2 {
    color: var(--text-main);
    font-weight: 850;
    letter-spacing: -0.065em;
}

.abn-profile-hero h1 {
    max-width: 820px;
    color: #ffffff;
    font-size: clamp(2.8rem, 6vw, 6.1rem);
    line-height: 0.92;
}

.abn-profile-hero-text {
    max-width: 740px;
    margin-top: 24px;

    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(1.02rem, 1.5vw, 1.2rem);
    line-height: 1.75;
}

.abn-profile-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.abn-profile-primary-btn,
.abn-profile-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;

    font-size: 0.94rem;
    font-weight: 850;
    text-decoration: none;
}

.abn-profile-primary-btn {
    background: var(--gold);
    color: #071326;
    box-shadow: 0 16px 34px rgba(213, 173, 40, 0.24);
}

.abn-profile-secondary-btn {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.abn-profile-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.abn-profile-trust-row span {
    padding: 8px 11px;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.11);

    color: rgba(255, 255, 255, 0.68);
    font-size: 0.82rem;
    font-weight: 750;
}


/* Hero Card */

.abn-profile-hero-card {
    position: relative;
    overflow: hidden;

    padding: 28px;
    border-radius: 30px;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 82px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
}

.abn-profile-card-top {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
}

.abn-profile-card-top span,
.abn-profile-card-line span,
.abn-profile-card-grid span {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.74rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.abn-profile-card-top strong {
    color: #ffffff;
    font-size: clamp(1.5rem, 2.4vw, 2.25rem);
    line-height: 1.05;
    letter-spacing: -0.055em;
    font-weight: 850;
}

.abn-profile-card-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    padding: 14px 16px;
    margin-bottom: 14px;

    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.095);
}

.abn-profile-card-line strong {
    color: var(--gold);
    font-size: 0.96rem;
    font-weight: 850;
}

.abn-profile-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.abn-profile-card-grid div {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.abn-profile-card-grid span {
    display: block;
    margin-bottom: 7px;
}

.abn-profile-card-grid strong {
    display: block;
    color: #ffffff;
    font-size: 0.92rem;
    line-height: 1.25;
}

.abn-profile-hero-card pre {
    overflow-x: auto;
    margin: 0;
    padding: 18px;

    border-radius: 18px;
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.08);

    color: rgba(255, 255, 255, 0.8);
    font-size: 0.78rem;
    line-height: 1.65;
}

.abn-profile-hero-card code {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    white-space: pre;
}


/* Sections */

.abn-profile-section {
    background: #ffffff;
}

.abn-profile-muted {
    background: #f4f4f1;
}

.abn-profile-two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    gap: 34px;
    align-items: center;
}

.abn-profile-section h2,
.abn-profile-faq-section h2,
.abn-profile-cta-section h2 {
    max-width: 850px;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
}

.abn-profile-section p,
.abn-profile-faq-section p,
.abn-profile-cta-section p {
    max-width: 760px;
    margin-top: 18px;

    color: var(--text-muted);
    font-size: clamp(1rem, 1.3vw, 1.08rem);
    line-height: 1.75;
}

.abn-profile-section-header {
    max-width: 880px;
    margin-bottom: 42px;
}


/* Cards */

.abn-profile-points-card,
.abn-profile-dashboard-card,
.abn-profile-compare > div,
.abn-profile-step-grid article,
.abn-profile-use-case-grid article {
    border: 1px solid rgba(222, 222, 216, 0.9);
    box-shadow: 0 20px 54px rgba(31, 31, 31, 0.055);
}

.abn-profile-points-card,
.abn-profile-dashboard-card {
    padding: 30px;
    border-radius: 30px;
    background: #ffffff;
}

.abn-profile-points-card h3 {
    color: var(--text-main);
    font-size: 1.34rem;
    line-height: 1.2;
    letter-spacing: -0.04em;
    font-weight: 850;
    margin-bottom: 18px;
}

.abn-profile-points-card ul,
.abn-profile-compare ul {
    padding-left: 20px;
    margin: 0;
}

.abn-profile-points-card li,
.abn-profile-compare li {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 8px;
}


/* Steps */

.abn-profile-step-grid,
.abn-profile-use-case-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.abn-profile-step-grid article,
.abn-profile-use-case-grid article {
    position: relative;
    overflow: hidden;

    padding: 24px;
    border-radius: 24px;
    background: #ffffff;
}

.abn-profile-step-grid article span {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;
    background:
        radial-gradient(circle at top right, rgba(213, 173, 40, 0.42), transparent 42%),
        var(--navy);

    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 850;
}

.abn-profile-step-grid h3,
.abn-profile-use-case-grid h3,
.abn-profile-compare h3 {
    color: var(--text-main);
    font-size: 1.12rem;
    line-height: 1.25;
    letter-spacing: -0.035em;
    font-weight: 850;
    margin-bottom: 8px;
}

.abn-profile-step-grid p,
.abn-profile-use-case-grid p {
    margin-top: 0;
    font-size: 0.94rem;
    line-height: 1.65;
}


/* Use Cases */

.abn-profile-use-case-grid {
    grid-template-columns: repeat(3, 1fr);
}

.abn-profile-use-case-grid article {
    background: #f8f8f5;
}

.abn-profile-use-case-grid article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), rgba(213, 173, 40, 0.12));
}


/* Dashboard Card */

.abn-profile-dashboard-card {
    display: grid;
    gap: 12px;
}

.abn-profile-dashboard-card div {
    padding: 18px;
    border-radius: 20px;
    background: #f8f8f5;
    border: 1px solid rgba(222, 222, 216, 0.85);
}

.abn-profile-dashboard-card span {
    display: block;
    margin-bottom: 7px;

    color: var(--gold);
    font-size: 0.74rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.abn-profile-dashboard-card strong {
    display: block;
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.35;
}


/* Compare */

.abn-profile-compare {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.abn-profile-compare > div {
    padding: 28px;
    border-radius: 28px;
    background: #ffffff;
}


/* FAQ */

.abn-profile-faq-section {
    background: #f4f4f1;
}

.abn-profile-faq-list {
    display: grid;
    gap: 14px;
    max-width: 920px;
}

.abn-profile-faq-list details {
    padding: 20px 22px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(222, 222, 216, 0.9);
}

.abn-profile-faq-list summary {
    cursor: pointer;
    color: var(--text-main);
    font-size: 1.05rem;
    font-weight: 850;
    letter-spacing: -0.02em;
}

.abn-profile-faq-list p {
    margin-top: 12px;
    font-size: 0.96rem;
}


/* CTA */

.abn-profile-cta-section {
    background: #071326;
}

.abn-profile-cta-card {
    padding: clamp(30px, 5vw, 56px);
    border-radius: 34px;

    background:
        radial-gradient(circle at top right, rgba(213, 173, 40, 0.18), transparent 34%),
        linear-gradient(180deg, #101827 0%, #071326 100%);

    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 28px 82px rgba(0, 0, 0, 0.22);
}

.abn-profile-cta-card h2 {
    color: #ffffff;
}

.abn-profile-cta-card p {
    color: rgba(255, 255, 255, 0.72);
}


/* Responsive */

@media (max-width: 1120px) {
    .abn-profile-hero .abn-profile-container,
    .abn-profile-two-col {
        grid-template-columns: 1fr;
    }

    .abn-profile-hero .abn-profile-container {
        min-height: auto;
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .abn-profile-hero-card,
    .abn-profile-points-card,
    .abn-profile-dashboard-card {
        max-width: 900px;
    }

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

@media (max-width: 860px) {
    .abn-profile-use-case-grid,
    .abn-profile-compare {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .abn-profile-container {
        padding: 76px 22px;
    }

    .abn-profile-hero .abn-profile-container {
        padding-top: 82px;
        padding-bottom: 82px;
    }

    .abn-profile-hero h1,
    .abn-profile-section h2,
    .abn-profile-faq-section h2,
    .abn-profile-cta-section h2 {
        letter-spacing: -0.052em;
    }

    .abn-profile-step-grid {
        grid-template-columns: 1fr;
    }

    .abn-profile-card-grid {
        grid-template-columns: 1fr;
    }

    .abn-profile-hero-card,
    .abn-profile-points-card,
    .abn-profile-dashboard-card,
    .abn-profile-compare > div {
        padding: 24px;
        border-radius: 24px;
    }

    .abn-profile-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .abn-profile-primary-btn,
    .abn-profile-secondary-btn {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .abn-profile-container {
        padding: 64px 18px;
    }

    .abn-profile-hero-card pre {
        font-size: 0.68rem;
        line-height: 1.55;
    }
}

